how do you graph an ellipse in y= form in parametric with a calculator
x= a cos[t] y= b sin[t]
but when you make a program it has to be in a y= form
not in parametrics but using an equation of parametrics
a program doesnt have to be in y=... format; you can simply define the point by parametrically
if your looking to do it on a ti83 perhps?
like i need to explain the program :for(z,0,180,360,5) :pt-on(sin(z)+32,Cos(z)+32) yes
since an ellipse is not a 'function' it has to be split into 2 parts; upper and lower
*for(z,0,360,5)
so cos is graphing the lower part and sin is graphing the upper part of the ellipse
y = +sqrt( a cos(t)^2 + b sin(t)^2) for the top part y = -sqrt( a cos(t)^2 + b sin(t)^2) for the bottom part, i think
hold on i'll try it
i got an argument error, but my teacher told me it was y=a sin(z)+C y=b cos(z)+D
but to explain the math of the equation like conversion from rectangular to parametric
parametrics simply define x and y in their own rights; and usually they are linked by time. To combine them, takes a good eye, but one strategy is to solve for t in terms of x and insert that into y
alright could you give me a conversion from rectangular to parametric of any equation just so i know how to do it though
rectangular and parametric play in the same ballpark; they arent like moving from polar to cartesian ... IF y can be defined as a function of x, the best way to do it is by knowing a few basics and testing; r^2 = x^2 + y^2 x = r cos(t) y = r sin(t) thats about it; the rest is seeing how to define 't' in terms of x so that you can sub it into the equation for y
alright thnx good answer
try this one out: y = a sin(cos-1(x/b)) y = -a sin(cos-1(x/b)) my ti83 makes an ellipse out of it
i got an argument error but i have to put mine in a program so it might be different well thats why i'm getting errors
I cant recall to much of my programming way back when; but I do alot of javascripting; and it would look like this: y = a*Math.sin(Math.acos(x/b)) not sure if thats helpful; but its the closest I can get :)
alright i'll try to change what i have to make it work but thnx for the conversion i might be able to work off that to figure it out
this is what I get :)
Join our real-time social learning platform and learn together with your friends!