I'm slightly confused after reading the problem posed here: Points of intersection of two parametric curves
Why is it that the "t" result at the intersection point of the two curves is not the same? I.e. the solution involves the answer "t1" for the first curve and "t2" for the second curve, but if the two curves are being made equal, why is t1 != t2?
Also, is there any way we can "manufacture" two different curves (say two parametric straight lines) that, at a specific t value for BOTH curves, yield the SAME point in space? How would you go about doing that? (given, for example, 3 points in space)
Maybe a simple example helps to see what's going on. Let's say you have two curves $$c_1:I \rightarrow \mathbb{R}^2, t \mapsto (\sin(t), \cos(t))$$ $$c_2:I \rightarrow \mathbb{R}^2, t \mapsto (\cos(t), \sin(t)),$$ where $I = [0, 2\pi]$.
Both these curves are the unit circle around the origin. So if you ask, where do these two curves intersect, the answer should basically be 'everywhere'. So that means that for any point $p$ on the unit circle, you can find $t_1$ and $t_2$ such that $c_1(t_1) = c_2(t_2) = p$. But only rarely, if ever, will you find a value $t$ such that $c_1(t) = c_2(t) = p$, that's just too much to ask. So in the exercise you link, the first question asks for $t_1$ and $t_2$, where the second one asks for a single $t$.
Hope this helps.