6.2 - Eqx of lines in R3 Flashcards
Theory: Parametrize the line ax + by = c
a != 0
parameter is y = t (can also be x =t)
ax = c - by
x = c/a - b/a(t)
(x, y) = (c/a, 0) + t(-b/a, 1)
Def: What is a line
All variables can be expressed using 1 parameter, so dimensionally the equations is 1.
Def: parametric eqx of line
x = c/a - b/a(t)
y = t
Theory: Vector parallel to line ax + by = c if
1) Equation is given
2) A known point and equation are given.
Eqx of line is y = a/b(x) + c\
slope is a/b
Therefore is v = k(b,a) if both do not equal 0 or k != 0.
Use known point and line to get second random point. Find vector between them
PQ = kv
kv is the scalar multiple of line PQ as is therefore parallel.
Def: Direction vector of line L.
v // L
v = (a b c)
Def: Parametric eqx in R3.
x = xnot + at
y = ynot + bt
z = znot + ct
Def: Symmetric form
t = t = t
x - xnot / a = y - ynot / b = z - znot / c
Theory: What are the two things needed to find para eqx of line?
- A point on the line
- Vector parallel to the line
Def: Distance btw line and point
D = norm(PQ x proj-v-PQ) = norm(PQ x v) / norm(v)
where v is a direction vector
Q is the point and P is another points on the line.