[BASIC HELP] Equations on HP Prime - 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: [BASIC HELP] Equations on HP Prime (/thread-12564.html) |
[BASIC HELP] Equations on HP Prime - fpicoral - 03-05-2019 04:03 PM Hello there! First, I would like to apologize for such a noob question. I don't know if this is possible - probably it's but I'm to stupid to find it myself: how can I """de-siplify""" (I really don't know how to properly call this) an equation? Let's say I have (a+b)^2, where can I put it to see a^2+2ab+b^2? I know about the Solve app but if I'm right I need to give a value to the variables to solve one of them, e.g set b=3 in (a+b)^2. Thanks in advance for the help. If this question still confusing, I can try to explain it better in the comments. RE: [BASIC HELP] Equations on HP Prime - StephenG1CMZ - 03-05-2019 05:08 PM In CAS, "simplify((a+b) squared)" gives "a squared + 2ab + b squared" Where squared = tap the x squared key (Unless a and b have been given numerical values) And factor() or collect() takes you back. RE: [BASIC HELP] Equations on HP Prime - DrD - 03-05-2019 05:42 PM If you have purged a, and b so that they are purely symbolic then: [CAS] (a+b)^2 == > (a+b)^2 expand((a+b)^2) ==> 2*a*b+a^2+b^2 collect(2*a*b+a^2+b^2) ==> (a+b)^2 -Dale- RE: [BASIC HELP] Equations on HP Prime - Aries - 03-05-2019 06:41 PM (03-05-2019 04:03 PM)fpicoral Wrote: Hello there! Expand(expr) Best, Aries |