Scientific notebook/maple help

  • Thread starter Thread starter ninadg2@yahoo
  • Start date Start date
  • Tags Tags
    Scientific
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
ninadg2@yahoo
Messages
1
Reaction score
0
Hi, I'm meant to use the scientific notebook to answer equations but I'm stuck on one of the equations. I want to solve for x and y in: (x-13)^2+(y-31)^2+16=441. I used the solve + exact function in Maple because I need to find two variables, but the x and y values in the answers were decimals. When I solve for the x, it comes up with a complicated solution in terms of y, and when I try to sub that back into the equation, it won't solve. How am I meant to get numerical values for x and y?
 
Physics news on Phys.org
ninadg2@yahoo said:
Hi, I'm meant to use the scientific notebook to answer equations but I'm stuck on one of the equations. I want to solve for x and y in: (x-13)^2+(y-31)^2+16=441. I used the solve + exact function in Maple because I need to find two variables, but the x and y values in the answers were decimals. When I solve for the x, it comes up with a complicated solution in terms of y, and when I try to sub that back into the equation, it won't solve. How am I meant to get numerical values for x and y?

U mean u want to get value x=? and y=?
But its not possible ... u realize that u can change to equation to (x-13)²+(y-31)²=425
and that equation is non other than circle with centre at (13,31) ...
U need to input x to get y value or vice versa ...
(x,y) = (√(425)cosθ+13,√(425)sinθ+31)

θ=tan⁻¹(((y-31)/(x-13)))
 
Last edited:
Adding to what Icystrike said, since your circle has radius 5*sqrt(17) you could parameterize it:

x = 13 + 5*sqrt(17) cos(θ)
y = 31 + 5*sqrt(17) sin(θ).

Then let θ range from 0 to 2pi using as small steps as you like to print out lots of (x,y) pairs.