Algebra is the branch of mathematics concerning the study of the rules of operations and relations, and the constructions and concepts arising from them, including terms, polynomials, equations and algebraic structures.

learn more… | top users | synonyms

0
votes
1answer
22 views

matrix norm that is invariant through a change of basis

I am looking for matrix norms that would be invariant through a change of basis. I know only about the Frobenius norm, which satisfy this condition as it can be expressed as a function of the ...
0
votes
2answers
46 views

MATLAB Computing distance from a point to a set of points

Consider a matrix A: A = magic(5) 17 24 1 8 15 23 5 7 14 16 4 6 13 20 22 10 12 19 21 3 11 18 25 2 9 I have to compute the ...
1
vote
2answers
33 views

MATLAB sub2ind using vectors

Suppose I have a matrix A A = magic(5) 17 24 1 8 15 23 5 7 14 16 4 6 13 20 22 10 12 19 21 3 11 18 25 2 9 Now I select a block ...
0
votes
0answers
5 views

The context between Abstract Algebra and programming

I'm a computer science student among the things I'm learning Abstract Algebra, especially Group theory. I'm programming for about 5 years and I've never used such things as I learn in Abstract ...
-9
votes
0answers
93 views

Generate irreducible polynomial [closed]

For given integer N and integer P there is an irreducible polynomial over field F(P). Please share a program or pseudocode to generate suck polynomial for given N and P.
0
votes
2answers
63 views

Calculating the value of a mathematical function in Java

I have this function and I was trying to get a list of all the calculations. f(x) = (100)(1.1)^X How do I calculate this out in Java. I tried a for loop to get the value of x and the end result of ...
3
votes
3answers
74 views

algebraic expressions in python

I'm working with some relatively simple algebraic expressions in python and wondered if there's a better way of plotting algebraic expressions than what I'm currently doing: I have the equation of a ...
-1
votes
1answer
44 views

Domains and Ranges of sets in algebra

State whether the following functions are well-defined. If they are, then give the Domain, Co-domain and Range and state whether the functions are one-to-one and/or onto and give your reasoning. If ...
-2
votes
1answer
96 views

Rearranging/Solving Complex Equations [closed]

Hello I am wondering how you could write a program that will solve complex equations such as: log base 4 (7x) = 52 Although this equation may not be the best example the idea is a program that will ...
-3
votes
1answer
68 views

Can someone help me write this mathematical equation in common lisp or at least explain it to me [closed]

At this link http://www.ai-junkie.com/ann/evolved/nnt5.html is the equation - exactly half way down page. Its some thing like "Output = 1 over 1 + e to the negative a divided by p power"? am i ...
0
votes
0answers
69 views

How to convert this SQL to Relational algebra

I've got the following query which I'm trying to convert into relational algebra: SELECT B.staffID FROM Rooms R, RoomBookings B WHERE R.buildingName = ‘London' AND B.year = '2012' AND R.roomNumber = ...
0
votes
0answers
60 views

javascript algorithm for basic algebra?

Does anybody know of an algorithm that can be applied to javascript to solve basic algebra? For example: x + 5 = 11 Then return x, which would be 6.
0
votes
4answers
39 views

Issues with checking if a number goes into another in Python

I am currently trying to create a computer program which can factor trinomials. For part of my algorithm, I need to check if the smallest coefficient goes into the larger ones. Currently, I have been ...
2
votes
1answer
90 views

Velocity at an angle

I'm trying to find the velocity at an angle. To do this I'm trying to use a triangle, but I'm running into road blocks. This is the code that moves the object Velocity = new ...
0
votes
0answers
23 views

Conic equations: symbolic variables and plotting

I'm working with Matlab R2012a. I have 3 conic equations (Eq1, Eq2, Eq3) from the previous calculations: vpa(Eq1,3) ans = 3.71e-18*x^2 + 3.58e-17*x*y - 2.52e-15*x + 2.32e-17*y^2 - 2.19e-14*y + ...
-4
votes
2answers
230 views

Convert this python to algebraic terms? [closed]

def check_serial(serial): if len(serial) != 10: return False if ("%010d"%int(serial) != serial): print ("only numbers allowed") return False if ...
12
votes
2answers
358 views

Can I model a list of successes with short circuiting failure via the composition of applicative functors?

The user 'singpolyma' asked on reddit if there was some general structure underlying: data FailList a e = Done | Next a (FailList a e) | Fail e A free monad was suggested, but I wondered if this ...
1
vote
0answers
21 views

relational algebra find the top 2 values

Given the following relations, where a, b, c are integer attributes R(a, b), S(b, c). Write relational algebra expression for the following queries: Find the top 2 values of a present in R how do I ...
0
votes
2answers
42 views

Relational algebra for one-to-many relations

Suppose I have the following relations: Academic(academicID(PK), forename, surname, room) Contact (contactID(PK), forename, surname, phone, academicNO(FK)) This is not a homework, I just want to ...
-1
votes
1answer
53 views

algebraic stack [closed]

I am using python 3.3 if that matters. I have to make a "stack" for algebra expression: ((a+b)*(c-d*k)+2.5)/(pi*(1-e)). From that I need to get to these: S1 := a+b S2 := c-d*k S3 := S1*S2+2.5 S4 ...
0
votes
2answers
121 views

permutations with repetition of length different from input vector in Octave

How can I solve the problem of showing all possible combinations of vector x ="abcdefghijklmnopqrstuvwxyz" in which I would multiply it by itself. I want a solution like this ...
0
votes
0answers
61 views

Why is the Trivial Ring not a field? [closed]

The Trivial Ring is a mathematical structure that has a single element, {o}, and two operations + and *, where o + o = o and o * o = o. Clearly these operations are commutative, associative, and ...
0
votes
2answers
144 views

Solving two algebraic equations in java

I have two equations that need to be evaluated in java y=(x+1)*2-3 y=5 These equations are dynamic in nature y= x*8x6-5*5 y= 3 y is known in these equations, I need to determine the value of x ...
-1
votes
4answers
157 views

Mathematical background for graphics programming/research [closed]

I am a masters student, and I am intrigued by computer graphics to a great extent. However, on most occasions, I feel let down by my poor background in math which makes me feel slow and incompetent. ...
0
votes
1answer
34 views

Matrix derivation

I wonder how to solve this matrix differentiation. y and x are column vectors and A is a matrix. d/dA [transpose(y)*transpose(A)*A*x] I have searched for a long time on tutorials for matrix ...
1
vote
1answer
45 views

Optimize Blas-like operation - A`*B*A

Given two matrices, A and B, where B is symetric (and positive semi-definite), What is the best (fastest) way to calculate A`*B*A? Currently, using BLAS, I first compute C=B*A using dsymm ...
-1
votes
2answers
86 views

Relational Algebra and SQL Oracle

I need to output data from one table but only if that customers name has shown up in another table and I'm not quite sure how get this to work. Thanks
0
votes
2answers
116 views

C# aggregation function for a non-linear series

I'm given two arrays, one representing a price, the other representing a number of units: e.g. decimal[] price = new decimal[] {1.65, 1.6, 1.55, 1.4, 1.3}; long[] quantity = new long[] {5000, ...
3
votes
0answers
114 views

Convert To BCNF

I'm given the following relation: R(A,B,C,D,E) and the following Functional Dependencies: F1 - AC -> D F2 - D -> E F3 - E -> A I am attempting to convert this to BCNF form. The first ...
1
vote
1answer
84 views

What does a identity element mean in boolean algebra?

I'm reading The Art of Assembly Programming by Randa Hyde (http://www.ic.unicamp.br/~pannain/mc404/aulas/pdfs/Art%20Of%20Intel%20x86%20Assembly.pdf) and I've reached the following statement in the ...
1
vote
2answers
73 views

Javascript - Find the base of an exponential equation

I was wondering if anyone knew how to find the base of an exponential equation in Javascript. I couldn't find any function that allows this to be done (e.g. using the Math functions). For example, ...
1
vote
1answer
149 views

How to understand ADT (abstract data type algebra)?

I'm taking a CS course but frankly I've no idea what the lecturer is talking about in regards to abstract data type algebra. It's not something I've readily been able to find a solution for on the web ...
1
vote
0answers
235 views

what is twitter's interest in abstract algebra? [closed]

Why would a company like Twitter be interest in algebraic concepts like groups, monoids and rings. https://github.com/twitter/algebird All I could find is: Implementations of Monoids for ...
2
votes
2answers
116 views

How can I use modulo to do REVERSE (backwards) wrap-around (overflow)?

Can the expression ((x-1) % k + k) % k be simplified futher? This is slightly more of a math question than is is a programming question, but it shows up very frequently in coding. Suppose we iterate ...
1
vote
2answers
93 views

Algebra Library for C++

I need a C++ algebra library in order to use in my project. At the beginning I thought I can write one, but then I realized I was unsuccessfully trying to reinvent the wheel and wasting my precious ...
2
votes
1answer
120 views

Solving simple linear algebra equations using symbolic objects with MATLAB

This is probably very simple but I'm having trouble setting up matrices to solve two linear equations using symbolic objects. The equations are on the form: (1) a11*x1 + a12*x2 + b1 = 0 (2) a21*x1 + ...
0
votes
0answers
83 views

More about the Math - Difficult Pong AI

I made a little pong game with different difficulty-levels. The hard AI precalculates the position of the ball. I used the answer from Ghost from another question: Math - Difficult Pong AI But sadly ...
0
votes
2answers
63 views

How to find the range for a given number, interval and start value?

Provided the below values start value = 1 End Value = 20 Interval = 5 I have been provided a number 6. I have to find the range of numbers in which the number 6 falls say now the answer is 6-10. ...
-1
votes
2answers
123 views

Is boolean algebra REALLY necessary for assembly programming? [closed]

I need to know because I find the whole thing confusing. I'm in a college algebra class right now though some of the boolean algebra seems quite basic (commutativity, associative properties, etc. ie. ...
0
votes
0answers
269 views

solving of overdetermined system of linear equation in R [closed]

I have to solve overdetermined system of linear equation in R: Ax=b, where A is 72x5 matrix, x is 5 element vector and b is 72 element vector. I tried to use least-squares with pseudo-inverse ...
2
votes
1answer
96 views

Cyclic group generator

I'm trinying to implement an algorithm to search a generator of a cyclic group G: n is the order of the group G , and Pi is the decomposition of n to prime numbers like n = P1^e1 x P2^e2 ....x Pk^ek ...
1
vote
1answer
77 views

Object orientation from normal

In my project I give an orientation to an object by applying the normal to the model matrix. My model matrix is the product of the scaling, rotation and translation matrices. p22.Normal.Normalize(); ...
-1
votes
3answers
143 views

Boolean algebra simplifcation [closed]

I'm doing a past paper for my exam on Thursday, and I'm struggling with boolean algebra a bit. One question asked me to simplify: [(X + Y).(X + 'Y)] I can simplify most of it. I got it down to ...
0
votes
0answers
108 views

Relational algebra subquery/count

I have a scenario where i need to: The registration of cars that have had no faults found and im not entirely sure how to write that in relational algebra terms.. do i use some relation and count ...
1
vote
2answers
69 views

finding a specific formula to sort an array in PHP

I was wondering if there were any mathematicians who could help me solve the following problem: I am trying to turn the sequence of numbers 012345678 into 036147258. The purpose is to sort the ...
0
votes
2answers
118 views

Does anyone know of an Open source Computer Algebra Library that can solve for the kinematic equations? [closed]

I have been looking for an open source Computer Algebra library for a while that can solve for a system of equations such as the kinimatic equations. So I would somehow be able to input 3 of the 5 ...
-1
votes
2answers
139 views

Numerical Solve in Java [closed]

I'm looking to incorporate some sort of implementation of numerical solving for linear algebraic solutions in Java, like this: 5x + 4 = 2x + 3 Ideally, I would prefer to parse as little as possible, ...
1
vote
1answer
113 views

Displaying (nicely) an algebraic expression in PyQt

In my python program is a hierarchy of mathematical objects I've created, that represent mathematical formulae. For example, there's Collection, which is a series of Equations, which is a container of ...
1
vote
1answer
75 views

Get joint direction vector

everyone. I'm trying to record the movement from a person, frame to frame using the Microsoft Kinect API. For that i'm saving all the joint's position, and besides i would like to get the direction ...
-2
votes
1answer
39 views

If more of one thing is good but less of another is good too [closed]

Here's a seemingly simple pondering. If one item is more valuable the higher it is (i.e., a=5 is worth more than a=2) and another item is more valuable the lower it is (i.e., b=2 is worth more than ...

1 2 3 4 5