Parametrization of a line
This is a very basic question, and its funny that I'm able to solve more advanced problems like this, but I was presented with a basic one and got stumped. I have the equation $$y=-\frac{3}{4}x+6.$$ In $\mathbb{R}^2$, this is a line. I want to find a parametrization of this line. I guess the problem here is I never really understood the concept of parametrization. I'm just a robot-I follow the steps the book tells me, but I really dont understand the intuition behind it. What is the point of parametrization (in laymen's terms, which is hard to find anywhere), and how would I do it for this equation?
Solution 1:
Think of a parametrization as describing the "trace" of the curve, with $t$ representing time. You want to write equations \begin{align*} x &= f(t),\\ y &= g(t) \end{align*} that describe someone tracing the line as $t$ varies.
How would you trace the graph of a function $y=g(x)$? Well, the points on the graph are all of the form $(x,g(x))$, so the simplest is to use a parametrization like \begin{align*} x &= t,\\ y &= g(t). \end{align*} If you think about what the points $(x(t),y(t))$ look like as $t$ ranges from $a$ to $b$, you'll see that you are giving the graph of $y=g(x)$ from $x=a$ to $x=b$.
That gives you one way to give the line.
Another is to pick a point on the line, and just say "go along this direction, backwards or forwards". A direction is given by a vector $(u,v)$. So if your line goes through the point $(a,b)$, and has direction $(u,v)$, then one possible parametrization just says: "start at $x=a$ and $y=b$, and then move $x$ and $y$ in the direction $(u,v)$: if you move in the $x$ direction by $ku$, then you need to move in the $y$ direction by $kv$." That is, \begin{align*} x &= a + tu\\ y &= b + tv. \end{align*} You can do that with the graph you have above by determining a point and a direction. For the direction: the slope of the line with direction $(u,v)$ is $\frac{v}{u}$, because $v$ is the rise and $u$ is the run.
Solution 2:
I may be misunderstanding your question, but you have a parametrization given by your equation:
$$ x\mapsto (x,-\frac 34 x+6) $$
or if you want something with integer coefficients:
$$ t\mapsto (4t, 6-3t).$$
The point of paramterization is that on one hand you reduce the number of variables you;re working with (in this case from two: $x,y$ to one $t$), but more importantly you make an implicit situation, that is, one defined by equations into an explicit one, that is, a way to generate the solutions.
In this case the point is perhaps not obvious because the equation is so simple, but imagine that if you have a very difficult equation then how much easier it is to work with the solutions when you are given a way to generate them (that is, by a parametrization) than when they are just given as the solutions of the equation.
Perhaps a better example to work with is the solutions to the equation $$ x^2+y^2=1.$$ A possible parametrization is $$t\mapsto (\cos t, \sin t).$$
The sad truth about parametrizations is that they actually rarely exist. I guess you could interpret this as saying that if you can find a parametrization, then you should be happy.
Addendum To answer the question in the comments: Imagine that you have to solve a system of equations in two variables. In other words you have two curves given by their equation on the plane and you have to find their intersection points. If you can parametrize one of them, then you can plug the parametrization into the other and solve an equation of a single variable. Here is an example:
Say you need to find the solution to the equation system $$ x^2+y^2=0 \qquad 2x^3y-2xy^3=1.$$ (this is a rather random choice)
If you just go head-to-the-wall approach, you might solve the first as a quadratic equation and plug that into the second an end up with a degree six equation. Good luck with that. (Actually it might be solvable in this case, I have no idea, but in general a degree six equation cannot be solved with a formula).
On the other hand, if you use the parametrization of the first equation given above, you end up with the equation $$ 2\cos^3t\sin t-2\cos t\sin^3 t=1.$$ This can easily be reduced to $$\sin 4t =\frac 12$$ which can be easily solved.
The point is that parametrization helped you solve a system of equations that would normally be very difficult or impossible to solve explicitly.