HP Forums

Full Version: functions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My HP 48G/GX has a function to solve for a variable in symbolic, for example: C=2*Pi*r*h, solving for "r". The HP 48G/GX returns the formula for r=C/2*Pi*h. I realize that this is a simple formula to solve for the variable r or h, but in complicated formulas the solve for a variable function in
symbolic would be appreciated.
Does the HP Prime Graphing Calculator has a function like that? I went through the "Catalog" menu, the app menus, but could not find one.
Have you tried: solve('C = (2*π*r*h)',r) ?
[CAS] MODE (Symbolic operation)
solve( C = 2*π*r*h, r, '=' ) [enter] r = C/(2*h*π)

HOME MOD (Numerical operation)
solve(C = (2*π*r*h),r,'=') [enter] error
(01-07-2019 11:36 PM)compsystems Wrote: [ -> ]...
HOME MOD (Numerical operation)
solve(C = (2*π*r*h),r,'=') [enter] error

With the use of double quotes, here are two ways to reach the CAS solve() command:

[HOME]
CAS.solve("'C = (2*π*r*h)',r");
CAS("solve('C = (2*π*r*h)',r)");
Hi!, rolfjg8 :
Per example, if you needed calculate, the surface area of cylinder, as ...
C=2*pi*R*(H+R) =~ 6.28319*R*(H+R)
Assuming = Base radius "R" and height "H"
Then in the HP PRIME, you can in CAS MODE and Apps Solve ...
Write in Solve Symbolic View ...
C=6.28319*R*(H+R)
Press button Num and see ...
C:
R:
H:
Example ...
R= 5
H=25
Put the bar in C, and press Solve.
The result, is ... 942.4785
If needed find the radius "R", the formulae, is ...
R=C/6.28319*(H+R)
(01-08-2019 09:33 AM)DrD Wrote: [ -> ]
(01-07-2019 11:36 PM)compsystems Wrote: [ -> ]...
HOME MOD (Numerical operation)
solve(C = (2*π*r*h),r,'=') [enter] error

With the use of double quotes, here are two ways to reach the CAS solve() command:

[HOME]
CAS.solve("'C = (2*π*r*h)',r");
CAS("solve('C = (2*π*r*h)',r)");

I tried the second one and got a syntax error...
[Image: aAMsVdL]
If you want to do symbolic manipulations, press the CAS key!
Reference URL's