scurty said:
I might have been too unclear, sorry about that.
Ray Vickson suggested starting with ##t_1 < t_2## (since you are looking for a point at two different times). Well, that means there is some real number ##z## such that ##t_2 = t_1+z##.
As Dick said, starting with the y equation is easier. What I meant by solving for ##t_1## was plugging in ##t_2 = t_1+z## into the y equations: ##t_1^2=(t_1+z)^2##. Likewise your second equation will be ##t_1^5-4t_1^3 = (t_1+z)^5-4(t_1+z)^3##.
Solving this system for ##t_1## would involve solving for ##z## in one equation and subbing it into the other equation.
First Attempt:
\sqrt{t_{1}^{2}} = \sqrt{t_{1}+z}^{2}
t_{1}=t_{1} +z
z = 0 (doesn't seem to make sense because that would mean t_{1} = t_{2}, which it shouldn't.
And subbing z = 0 into the other equation results in 0 = 0.
Which is a true statement but does not result in a value for t_{1}.Second Attempt:
t_{1}^{2} = (t_{1} + z)^{2}
t_{1}^{2} = (t_{1} + z)(t_{1} +z)
t_{1}^{2} = (t_{1}^{2} + 2(t_{1})z +z^{2})
0 = 2(t_{1})z +z^{2})
\frac{-2(t_{1})z}{z} = \frac{z^{2}}{z}
-2t_{1}=z
Now subbing into the other equation:
t_{1}^{5}-4t_{1}^{3} = (t_{1} - 2t_{1})^{5} - 4(t_{1}-2t_{1})^{3}
t_{1}^{5}-4t_{1}^{3} = -t_{1}^{5} + 4t_{1}^{3}
2t_{1}^{5}=4t_{1}^{3} + 4t_{1}^{3}
\frac{t_{1}^{5}}{t_{1}^{3}}= \frac{4t_{1}^{3}}{t_{1}^{3}}t_{1}^{2}=4
t_{1} = +2, -2
This looks like its on the right track, but one time can't produce two values.
Now I have to look at how to find t_{2}
perhaps t_{2}=t_{1} + z
t_{2} = t_{1} + (-2t_{1})
t_{2} = t_{1} - 2t_{1})
t_{2} = t_{1}(1-2) ) and since we know t_{1} = 2, -1
t_{2} = (+/-2)(-1) =
t_{2} = 2, -2
Which is also confusing because t_{2} represents a single value (a given time for example). How can a single point in time contain two different values? In other words, if the t values represent the horizontal axis on a coordinate plane, how can one t variable carry two different values? t_{1} can only be one point on the horizontal axis and t_{2} can only be one value on the horizontal axis. Why did I get 2 numbers when finding each value of t?
Anyhow, not that I have
t_{1} = 2, -2
t_{2} = 2, -2
I can plug them into the parametric equations
x = t^5 - 4t^3
x = (+/-)2^5 - 4((+/-)2)^3
x=0
y =t^2
y= (+/-)2^2
y = 4
So the point of intersection is (0,4)
Thanks.
My question is, it would make more sense intuitively if t_{1} = -2 and t_{2} = 2
Since having multiple values for each does not satisfy the original assumption: t_{2} = t_{1} + z
Overall I think I was on the right track, but the additional +/- values have me questioning the approach I took to solving this system.