rewrite an equation in terms of a variable - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: rewrite an equation in terms of a variable (/thread-3057.html) |
rewrite an equation in terms of a variable - jacklondon - 02-10-2015 08:36 PM Hi, Is there a way to get the calculator to rewrite an equation in terms of a variable. if I have x/(4*Y)=5, can it write y = x/20. I'm trying to rewrite an equation with lots of variables to solve for 1 and on paper i keep missing a step. RE: rewrite an equation in terms of a variable - Han - 02-10-2015 08:41 PM (02-10-2015 08:36 PM)jacklondon Wrote: Hi, Is there a way to get the calculator to rewrite an equation in terms of a variable. In the CAS view, simply use the solve() command. For example, solve(x^2+2*y=3,y) You may possibly need to delete the x and y variables: purge(x,y) RE: rewrite an equation in terms of a variable - jacklondon - 02-10-2015 09:59 PM that works perfect thx! |