|
Size: 827
Comment: Initial commit
|
Size: 1348
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 19: | Line 19: |
| This has the side effect of associating a direction with movement along the line. At ''t=0'', the solution is (-1,1). At ''t=1'', the solution is (0,2). | This has the side effect of associating a direction with movement along the line. At ''t=0'', the solution is (0,0). At ''t=1'', the solution is (-1,1). Especially with multiple variables, parametric equations are sometimes re-expressed in several ways: * This triplet... * x = 1+2t * y = 3-t * z = 5t * ...is equivalent to this symmetric equation... * (x-1)/2 = (y-3)/-1 = z/5 * ...and is also equivalent to this vector form... * ''[1, 3, 0] + t[2, -1, 5] = [1, 3, 0] + [2t, -t, 5t] = [1+2t, 3-t, 5t]'' * ...and can therefore be expressed as a '''vector-valued function'''... * ''r(t) = f(t)i + g(t)j + h(t)k = (1+2t)i + (3-t)j + (5t)k'' |
Parametric Equation
A parametric equation is a reformulation of an equations in terms of time, such that there is now a direction associated with movement along the equation.
Contents
Description
A line can often be described with a single equation. This below line, however, requires two equation to be expressed: y=√(x+1)+1 and y=-√(x+1)+1.
This can be addressed by reformulating the equation in terms of time t: y=f(t) and x=g(t). In this specific example, the parametric equations are y=t and x=(t-1)2-1.
This has the side effect of associating a direction with movement along the line. At t=0, the solution is (0,0). At t=1, the solution is (-1,1).
Especially with multiple variables, parametric equations are sometimes re-expressed in several ways:
- This triplet...
- x = 1+2t
- y = 3-t
- z = 5t
- ...is equivalent to this symmetric equation...
- (x-1)/2 = (y-3)/-1 = z/5
- ...and is also equivalent to this vector form...
[1, 3, 0] + t[2, -1, 5] = [1, 3, 0] + [2t, -t, 5t] = [1+2t, 3-t, 5t]
...and can therefore be expressed as a vector-valued function...
r(t) = f(t)i + g(t)j + h(t)k = (1+2t)i + (3-t)j + (5t)k
