HP Prime: cant simplify answer output
|
08-25-2023, 04:26 PM
Post: #6
|
|||
|
|||
RE: HP Prime: cant simplify answer output
This CAS program will be able to display the answer in a more straightforward readable format.
I hope this will help. [code] // Part fraction in simpler display // Run the program in CAS home // Corruptissima #cas //Enter equation partfracn(f):= BEGIN local a,b,c,t; // Perform partfrac t:=partfrac(f); // Store left most part of the equation a:=left(t); // Store the rightmost part of the equation c:=right(t); // Obtain the middle part of the equation // If exist b:=t-a-c; //Simplify to readable form a:=factor(a); b;=factor(b); c:=factor(c); // Complete the final equation t:=factor(a)+factor(b)+factor(c); // Output the answer RETURN(t); END; #end |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
HP Prime: cant simplify answer output - hpprimed - 08-25-2023, 12:31 AM
RE: HP Prime: cant simplify answer output - Alchemisst - 08-25-2023, 01:20 AM
RE: HP Prime: cant simplify answer output - hpprimed - 08-25-2023, 02:07 AM
RE: HP Prime: cant simplify answer output - Quadratica - 08-25-2023, 03:31 PM
RE: HP Prime: cant simplify answer output - parisse - 08-25-2023, 03:33 PM
RE: HP Prime: cant simplify answer output - Corruptissima - 08-25-2023 04:26 PM
RE: HP Prime: cant simplify answer output - EnigmaticMF - 10-02-2023, 02:09 AM
|
User(s) browsing this thread: 2 Guest(s)