User Portlet
Discussions |
---|
Given a list of inequalities, I would like to check to see if a point is satisfied by said list of inequalities. Example: {x >= 0, y >= 0, z >= 0, 2 x >= y, 2 z >= y, 2 x + y |
Given a list of equations (or inequalities) I wish to find all the variables in said list. Example: {x >= 0, y >= 0, z >= 0, 2 x >= y, 2 z >= y, 2 x + y = 0, x2 >= 0, x3 >= 0, 2 x1 >= x2, 2 x3 >= x2, 2 x1 + x2 |
Given a list of equations, I need a function that solves the equations to generate tuples. Examples: eq={x1=0,x2=0,x3=0} Will generate the point {0,0,0}. Similarly: {2 x3 == x2, 2 x1 + x2 == 4, x2 + 2 x3 == 4} Will generate the point... |