Basically I want to reduce something like:
Subscript[P, 4] - Subscript[P, 5] == Subscript[R, 4, 5]* Subscript[i, 4, 5]
when only one of them is known (Subscript[R, 4, 5] == 1), so that Mathematica expresses the simplified form as:
Subscript[i, 4, 5] + Subscript[P, 5] - Subscript[P, 4] == 0
Reduce. – b.gates.you.know.what Oct 25 '12 at 09:29Basically I want all unknown on one side. And all that's known (defined) on the other side..
– TehHO Oct 25 '12 at 09:39a - b == c * dand your only known variable isc. Then, according to your last comment, the output should be:(a - b)/d == c. That is what you are looking for? – István Zachar Oct 25 '12 at 09:48a - b == c * dc = 1,
therefore, by simplifying mathematica outputs:
a = d + b
Can i output that as
0 = (d+b)/a ?
All known on one side, all unkown on the other side...
– TehHO Oct 25 '12 at 09:58Head[#][Subtract @@ #, 0] &@(a - b == c*d)– Dr. belisarius Oct 25 '12 at 12:01The thing is.. have all these equations ´where a-b==c*d´ and I'm trying to build a matrix, therefore i need to have knowns on one side, and unknowns on the other side.
see this: http://i.imgur.com/jgzo7.png
– TehHO Oct 25 '12 at 15:27