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.gatessucks Oct 25 '12 at 9:29a - 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 9:48