Skip to main content

Right hand side vs. Left hand side

eq = (x^2-1+y == a/b+c);

lhs = eq.left;

show lhs;

rhs = eq.right;

show rhs;

save as lhsrhs

Output

"lhs" → -1 + x^2 + y

"rhs" → a/b + c