Further Maths - Vectors

2021-01-11
4 min read

See also:

What is the formula for the distance to a three dimensional point $(a,b,c)$??

$$ \sqrt{a^2 + b^2 + c^2} $$

$$ \left(\begin{matrix} a \ b \ c \end{matrix}\right) $$ What is the formula for the length of the vector??

$$ \sqrt{a^2 + b^2 + c^2} $$

$$\pmb{a} = \left(\begin{matrix} a_1 \ a_2 \ a_3 \end{matrix}\right) \ \pmb{b} = \left(\begin{matrix} b_1 \ b_2 \ b_3 \end{matrix}\right) $$ What is the formula for the distance between the two vectors??

$$ \sqrt{(b_1 - a_1)^2 + (b_2 - a_2)^2 + (b_3 - a_3)^2} $$

What is the vector parallel to the $x$-axis??

$$ \left(\begin{matrix} 1 \\ 0 \\ 0 \end{matrix}\right) $$

What is the vector parallel to the $y$-axis??

$$ \left(\begin{matrix} 0 \\ 1 \\ 0 \end{matrix}\right) $$

What is the vector parallel to the $z$-axis??

$$ \left(\begin{matrix} 0 \\ 0 \\ 1 \end{matrix}\right) $$

2021-01-20

$$ \left(\begin{matrix} x \ y \ z \end{matrix}\right) $$ If this is a direction vector, how could you eliminate one of the unknowns??

$$ \left(\begin{matrix} 1 \\ y \\ z \end{matrix}\right) $$

$$ \left(\begin{matrix} x \ y \ z \end{matrix}\right) \to \left(\begin{matrix} 1 \\ y \\ z \end{matrix}\right) $$ When does this trick not work??

When the value of $x$ is actually $0$.

If you have two vectors $\pmb{a}$ and $\pmb{b}$ and you wish to find a vector $\pmb{c}$ that is perpindicular to both, what must be true??

$$ \pmb{a} \cdot \pmb{c} = 0 \\ \pmb{b} \cdot \pmb{c} = 0 $$

$$x + y + z = 0\5x - 2y + 3z = 4$$ Why can’t you solve these two equations??

Because there are 3 unknowns but only 2 equations.

$$ \left(\begin{matrix} 2 \ 1 \ 3 \end{matrix}\right) $$ How could you write this vector for $x$ equal to $1$??

$$ \left(\begin{matrix} 1 \\ \frac{1}{2} \\ \frac{3}{2} \end{matrix}\right) $$

What is the technique for finding a vector perpindicular vector to two other vectors??

Use the fact the dot product must be equal to zero to find and solve two simulatenous equations.

2021-05-17

What does $\pmb{\hat{X}}$ mean??

Unit/normalised vector; in the same direction as $\pmb{X}$ but has magnitude $1$.

What is the formula for $\pmb{\hat{X}}$??

$$ \pmb{\hat{X}} = \frac{X}{|X|} $$

2021-09-20

Suppose you have $$Ax + By + Cz = D \ \alpha x + \beta y + \gamma z = \delta$$ These planes intersect at a sheaf. What’s the general formula for a new plane that also passes through this sheaf??

$$ (Ax + By + Cz - D) + t(\alpha x + \beta y + \gamma z - \delta) = 0 $$

Suppose you have $$Ax + By + Cz = D \ \alpha x + \beta y + \gamma z = \delta$$ These planes intersect at a sheaf. What is the first step in finding the equation of the sheaf??

Making the substitution $z = \lambda$.

Suppose you have $$Ax + By + Cz = D \ \alpha x + \beta y + \gamma z = \delta$$ and you have made the substitution $z = \lambda$ to get $$Ax + By = D - C\lambda \ \alpha x + \beta y = \delta - \gamma \lambda$$ What is the next step??

Solving these equations in general to come up with

$$

$$

Explain the general process for finding the equation of a sheaf??

$$ \left(\begin{matrix} x \\ y \\ z \end{matrix}\right) = … $$

If you’ve made the substitution $z = \lambda$ in order to find the equation of a sheaf, what will always be the value of $z$ in the final vector for the parametric form of the line??

$$ \lambda $$

2022-01-19

Why must you be careful using the $$\frac{|a\alpha + b\beta + c\gamma - d|}{\sqrt{a^2 + b^2 + c^2}}$$ formula??

Because you subtract $d$ which can be confusing if $d$ is negative.

Why must you be careful using the “let $z = \lambda$” approach to finding the line of intersection between two planes??

Because it’s very easy to write the final vector in the wrong order.

What’s the thought process for finding the reflection of a point in a plane??

Find a line that passes through the point and has the normal vector of the plane, and double the parameter for the point of intersection with the plane.

What’s the thought process for finding the reflection of a line in a plane??

Create a new line out of the point of intersection with the plane and the reflection of one point in the line.


Metadata
date: 2021-01-11 10:31
tags:
- '@?further-maths'
- '@?vectors'
- '@?latex-block-alt'
- '@?public'
title: Further Maths - Vectors