A few questions: - 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: A few questions: (/thread-18191.html) |
A few questions: - LodSb - 03-29-2022 05:55 PM 1) How would I solve a system of equations to find the intersecting points of a circle and a line? If I use the solve app, it only gives me the points for one intersection, of the two that there are. Any idea how I would do this? 2) Is there a way I can covert back and fourth between decimal and scientific notation? I have seen multiple apps, but I'm not sure which one is the best, or most up to date. 3) Is there a way to analyze graphs to get stuff like the focal point or directrix of a parabola? 4) Is there a way to get the Fcn option that is available in the Function app to also show up in the Advanced Graphing app? 5) Is there a guide online or here somewhere for what all of the options do? I'm a pretty new user to this calculator and would like to learn more about it. RE: A few questions: - jte - 01-12-2023 10:12 PM (03-29-2022 05:55 PM)LodSb Wrote: 1) How would I solve a system of equations to find the intersecting points of a circle and a line? If I use the solve app, it only gives me the points for one intersection, of the two that there are. Any idea how I would do this? Two of the built-in apps come to mind. With the Advanced Graphing app, this could be done by
⋮ (breaking my reply in two as there seems to be a limit of 5 images per post) RE: A few questions: - jte - 01-12-2023 10:18 PM ⋮ With the Geometry app, this could be done by
The Symbolic view, after interacting with the Plot view: RE: A few questions: - Arno K - 01-13-2023 01:59 PM What about simply using solve in cas: solve([((x-2)^2+(y-2)^2) = 5,(2*x+y) = 4],[x,y]) which provides [x = ((1/5)*(sqrt(21)+6)),y = ((-2/5)*(sqrt(21)+6)+4)],[x = ((1/5)*(-sqrt(21)+6)),y = ((-2/5)*(-sqrt(21)+6)+4)] so both intersections. Arno |