πŸ¦– Bellaziraptor

Unit 1

Vectors & the Geometry of Space

Everything in this course happens in three dimensions, so the first job is to get comfortable living there: locating points, describing directions, writing down lines, planes and curved surfaces, and switching between the three coordinate systems engineers actually use. None of it is hard, but all of it has to be automatic before Unit 3, because a partial derivative you cannot picture is a formula you will misapply. Three of the sections below have interactive labs β€” drag the views around until the pictures in your head match the ones on screen.

1 Β· Coordinates in three dimensions

Add a third axis, \(z\), perpendicular to the familiar \(xy\)-plane. The three axes must form a right-handed system: curl the fingers of your right hand from the positive \(x\)-axis toward the positive \(y\)-axis and your thumb points along positive \(z\). This is not a convention you can ignore β€” the cross product in Section 4 and every magnetic-force calculation you will ever do depend on it.

y x z P(x, y, z) Q(x, y, 0) y x z Right-handed: x β†’ y curls into +z
To locate \(P(x,y,z)\): go \(x\) along the \(x\)-axis, \(y\) parallel to the \(y\)-axis, then \(z\) straight up. The foot \(Q(x,y,0)\) is the shadow of \(P\) on the floor β€” you will use that shadow constantly.

The three coordinate planes are \(z=0\) (the \(xy\)-plane, the “floor”), \(y=0\) (the \(xz\)-plane) and \(x=0\) (the \(yz\)-plane). They cut space into eight octants; the first octant is where all three coordinates are positive, and most textbook pictures live there.

\[ |P_1P_2| = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2 + (z_2-z_1)^2} \] Pythagoras applied twice: once on the floor to get the horizontal distance, once more with the vertical rise. Nothing new β€” one more square under the root.
\[ (x-a)^2 + (y-b)^2 + (z-c)^2 = r^2 \] The sphere of radius \(r\) centred at \((a,b,c)\): every point at distance \(r\) from the centre. Given \(x^2+y^2+z^2 + 2x - 4z = 4\), complete the square in each variable to read off centre and radius.
One equation, one dimension lost

In the plane, \(x = 2\) is a vertical line. In space, \(x = 2\) is a whole plane parallel to the \(yz\)-plane. Each equation you impose removes one degree of freedom: a single equation in three variables is a surface, two equations together are a curve, three are a point. Ask “how many variables are free?” before you sketch anything.

2 Β· Vectors

A vector is a quantity with magnitude and direction β€” a displacement, a velocity, a force, an electric field. It does not live anywhere in particular: the same arrow drawn from a different start point is the same vector. We write it by its components:

\[ \mathbf{a} = \langle a_1, a_2, a_3\rangle = a_1\mathbf{i} + a_2\mathbf{j} + a_3\mathbf{k} \qquad\quad |\mathbf{a}| = \sqrt{a_1^2 + a_2^2 + a_3^2} \] \(\mathbf{i}, \mathbf{j}, \mathbf{k}\) are the unit vectors along the three axes. The angle-bracket and \(\mathbf{ijk}\) notations are interchangeable; EE texts also write \(\hat{\mathbf{x}}, \hat{\mathbf{y}}, \hat{\mathbf{z}}\) or \(\mathbf{a}_x, \mathbf{a}_y, \mathbf{a}_z\). Same thing.

The vector from point \(A\) to point \(B\) is tip minus tail: \(\overrightarrow{AB} = \langle b_1 - a_1,\; b_2 - a_2,\; b_3 - a_3\rangle\). The position vector of a point is the vector from the origin to it, so a point and its position vector have the same three numbers β€” which is why we slide between them without comment.

OperationComponentsGeometry
Sum \(\mathbf{a}+\mathbf{b}\)\(\langle a_1+b_1,\ a_2+b_2,\ a_3+b_3\rangle\)Tip-to-tail; diagonal of the parallelogram
Difference \(\mathbf{a}-\mathbf{b}\)\(\langle a_1-b_1,\ a_2-b_2,\ a_3-b_3\rangle\)Arrow from the tip of \(\mathbf{b}\) to the tip of \(\mathbf{a}\)
Scalar multiple \(c\mathbf{a}\)\(\langle ca_1,\ ca_2,\ ca_3\rangle\)Same line; stretched by \(|c|\), reversed if \(c < 0\)
Unit vector \(\hat{\mathbf{a}}\)\(\mathbf{a}/|\mathbf{a}|\)Direction only; length exactly 1
Two vectors are parallel exactly when one is a scalar multiple of the other.
Magnitude is not a component sum

\(|\langle 3, 4, 12\rangle|\) is \(\sqrt{9+16+144} = 13\), not \(3+4+12\). And \(|\mathbf{a}+\mathbf{b}| \ne |\mathbf{a}| + |\mathbf{b}|\) unless the vectors point the same way β€” a 3 V phasor plus a 4 V phasor at right angles is 5 V, not 7. That triangle inequality is the whole reason AC circuit analysis needs vectors in the first place.

3 Β· The dot product

\[ \mathbf{a}\cdot\mathbf{b} = a_1b_1 + a_2b_2 + a_3b_3 = |\mathbf{a}|\,|\mathbf{b}|\cos\theta \] Two definitions that always agree. The component one is how you compute it; the cosine one is what it means. Set them equal to find the angle between any two vectors.

The result is a scalar, which is the whole point: the dot product measures how much two vectors point the same way. It is positive for acute angles, zero at \(90^\circ\), negative for obtuse angles.

  • Orthogonality test: \(\mathbf{a}\perp\mathbf{b} \iff \mathbf{a}\cdot\mathbf{b} = 0\). This is the single most used fact in the course.
  • Length: \(\mathbf{a}\cdot\mathbf{a} = |\mathbf{a}|^2\).
  • Algebra: commutative, distributive, and \((c\mathbf{a})\cdot\mathbf{b} = c(\mathbf{a}\cdot\mathbf{b})\). It behaves like ordinary multiplication except that you cannot divide by a vector.

Projections

\[ \operatorname{comp}_{\mathbf{b}}\mathbf{a} = \frac{\mathbf{a}\cdot\mathbf{b}}{|\mathbf{b}|} \qquad\qquad \operatorname{proj}_{\mathbf{b}}\mathbf{a} = \frac{\mathbf{a}\cdot\mathbf{b}}{|\mathbf{b}|^2}\,\mathbf{b} = \left(\mathbf{a}\cdot\hat{\mathbf{b}}\right)\hat{\mathbf{b}} \] The scalar component is the signed length of the shadow of \(\mathbf{a}\) on the line of \(\mathbf{b}\). The vector projection is that shadow as a vector. Divide by \(|\mathbf{b}|\) once for the length and once more to make \(\mathbf{b}\) a unit direction β€” hence the square.

Work is the dot product's home application: a constant force \(\mathbf{F}\) moving an object through displacement \(\mathbf{d}\) does work \(W = \mathbf{F}\cdot\mathbf{d}\). Only the component of force along the motion counts. In Unit 5 this becomes \(\int\mathbf{F}\cdot d\mathbf{r}\), and voltage will turn out to be exactly that integral with \(\mathbf{E}\) in place of \(\mathbf{F}\).

Direction angles

The angles \(\alpha, \beta, \gamma\) a vector makes with the three positive axes satisfy \(\cos\alpha = a_1/|\mathbf{a}|\), etc., and \(\cos^2\alpha + \cos^2\beta + \cos^2\gamma = 1\). The three direction cosines are just the components of the unit vector \(\hat{\mathbf{a}}\). Antenna patterns are specified this way.

For a hands-on refresher, the 3D vectors lab lets you drag two vectors and watch the dot and cross products respond.

4 Β· The cross product

\[ \mathbf{a}\times\mathbf{b} = \begin{vmatrix}\mathbf{i} & \mathbf{j} & \mathbf{k}\\ a_1 & a_2 & a_3\\ b_1 & b_2 & b_3\end{vmatrix} = \langle a_2b_3 - a_3b_2,\;\; a_3b_1 - a_1b_3,\;\; a_1b_2 - a_2b_1\rangle \] Expand the determinant along the top row. The middle component carries a minus sign in the cofactor expansion, which is why it reads \(a_3b_1 - a_1b_3\) rather than \(a_1b_3 - a_3b_1\). Write the determinant every time; do not trust memory for the signs.

The result is a vector β€” perpendicular to both \(\mathbf{a}\) and \(\mathbf{b}\), in the direction given by the right-hand rule (fingers from \(\mathbf{a}\) to \(\mathbf{b}\), thumb gives \(\mathbf{a}\times\mathbf{b}\)), with magnitude

\[ |\mathbf{a}\times\mathbf{b}| = |\mathbf{a}|\,|\mathbf{b}|\sin\theta = \text{area of the parallelogram spanned by } \mathbf{a}, \mathbf{b} \] Parallel vectors give the zero vector β€” no parallelogram, no perpendicular direction. \(\mathbf{a}\times\mathbf{a} = \mathbf{0}\) always.
a b a Γ— b area = |a Γ— b| ΞΈ i j k i Γ— j = k, j Γ— k = i, k Γ— i = j backwards β†’ minus sign
Left: \(\mathbf{a}\times\mathbf{b}\) stands perpendicular to the parallelogram whose area it measures. Right: the unit vectors multiply cyclically. Going forward around the circle gives a plus; going backward gives a minus, e.g. \(\mathbf{j}\times\mathbf{i} = -\mathbf{k}\).
Order matters

\(\mathbf{b}\times\mathbf{a} = -(\mathbf{a}\times\mathbf{b})\). The cross product is anticommutative. Swapping the factors flips the direction β€” and in physics that flip is the difference between a force pushing a wire up and pushing it down. Also, it is not associative: \((\mathbf{a}\times\mathbf{b})\times\mathbf{c} \ne \mathbf{a}\times(\mathbf{b}\times\mathbf{c})\) in general.

Where EE meets the cross product

QuantityFormulaWhat the cross product does
Lorentz force on a charge\(\mathbf{F} = q\,\mathbf{v}\times\mathbf{B}\)Force is perpendicular to both velocity and field β€” so a magnetic field can steer a charge but never speed it up.
Force on a current-carrying wire\(\mathbf{F} = I\,\boldsymbol{\ell}\times\mathbf{B}\)Motors. Reverse the current, reverse the force.
Torque\(\boldsymbol{\tau} = \mathbf{r}\times\mathbf{F}\)Only the perpendicular part of the force turns the shaft.
Poynting vector\(\mathbf{S} = \mathbf{E}\times\mathbf{H}\)Direction and density of electromagnetic power flow. A wave with \(\mathbf{E}\) along \(\mathbf{i}\) and \(\mathbf{H}\) along \(\mathbf{j}\) travels along \(\mathbf{k}\).
Angular momentum\(\mathbf{L} = \mathbf{r}\times\mathbf{p}\)Gyroscopes, spinning electrons, magnetic moments.

The scalar triple product

\[ \mathbf{a}\cdot(\mathbf{b}\times\mathbf{c}) = \begin{vmatrix} a_1 & a_2 & a_3\\ b_1 & b_2 & b_3\\ c_1 & c_2 & c_3\end{vmatrix} = \pm\,\text{volume of the parallelepiped spanned by } \mathbf{a}, \mathbf{b}, \mathbf{c} \] Base area \(|\mathbf{b}\times\mathbf{c}|\) times the height of \(\mathbf{a}\) above that base. It is zero exactly when the three vectors are coplanar β€” a fast test you will use for planes in Section 6.

5 Β· Lines in space

A line in the plane has a slope. A line in space does not β€” there is no single number that captures a direction in 3D. Instead a line is pinned down by a point on it and a direction vector along it:

\[ \mathbf{r}(t) = \mathbf{r}_0 + t\,\mathbf{v} \qquad\Longleftrightarrow\qquad x = x_0 + at,\quad y = y_0 + bt,\quad z = z_0 + ct \] Start at \(P_0(x_0,y_0,z_0)\), walk \(t\) copies of \(\mathbf{v} = \langle a,b,c\rangle\). Every value of \(t\) is one point on the line; \(t\in\mathbb{R}\) sweeps the whole line, \(0\le t\le 1\) sweeps just the segment from \(\mathbf{r}_0\) to \(\mathbf{r}_0+\mathbf{v}\).

Solve each parametric equation for \(t\) and equate to get the symmetric equations:

\[ \frac{x-x_0}{a} = \frac{y-y_0}{b} = \frac{z-z_0}{c} \] If one of \(a,b,c\) is zero, that coordinate is simply constant β€” write \(x = x_0\) alongside the other two ratios rather than dividing by zero.
  • Line through two points \(P\) and \(Q\): use \(\mathbf{v} = \overrightarrow{PQ}\) and either point as \(\mathbf{r}_0\).
  • Parallel lines have parallel direction vectors. Perpendicular: \(\mathbf{v}_1\cdot\mathbf{v}_2 = 0\).
  • Skew lines are not parallel and do not intersect β€” a possibility that does not exist in the plane. To test for intersection, set the two parametrisations equal (using different parameters \(t\) and \(s\)!), solve two of the three equations, and check the third.
\[ d = \frac{|\overrightarrow{P_0Q}\times\mathbf{v}|}{|\mathbf{v}|} \] Distance from a point \(Q\) to the line through \(P_0\) with direction \(\mathbf{v}\). The cross product's magnitude is the parallelogram area; dividing by the base length leaves the height, which is the perpendicular distance.
Two lines, two parameters

When checking whether two lines meet, they are traversed independently, so \(\mathbf{r}_1(t) = \mathbf{r}_2(s)\) β€” never \(\mathbf{r}_1(t) = \mathbf{r}_2(t)\). Using the same letter forces both to be at the same “time” and will tell you two intersecting lines miss each other.

6 Β· Planes

A plane is pinned down by a point on it and a vector perpendicular to it β€” the normal \(\mathbf{n} = \langle a,b,c\rangle\). Any point \(P\) is on the plane exactly when the vector from \(P_0\) to \(P\) is perpendicular to \(\mathbf{n}\):

\[ \mathbf{n}\cdot(\mathbf{r} - \mathbf{r}_0) = 0 \quad\Longrightarrow\quad a(x-x_0) + b(y-y_0) + c(z-z_0) = 0 \quad\Longrightarrow\quad ax + by + cz = d \] Read a plane's equation and the normal vector is sitting in front of you: the coefficients. \(3x - 2y + z = 7\) has normal \(\langle 3,-2,1\rangle\). This is why the “general form” is so useful β€” it wears its geometry on its sleeve.
  • Plane through three points \(P, Q, R\): \(\mathbf{n} = \overrightarrow{PQ}\times\overrightarrow{PR}\), then use any of the three points.
  • Angle between planes = angle between their normals. Planes are parallel if the normals are parallel; perpendicular if \(\mathbf{n}_1\cdot\mathbf{n}_2 = 0\).
  • Line of intersection of two planes has direction \(\mathbf{n}_1\times\mathbf{n}_2\) β€” it must lie in both planes, so it is perpendicular to both normals. Find one common point by setting \(z = 0\) (or any coordinate) and solving the remaining \(2\times2\) system.
  • Intercepts: set two variables to zero. The plane \(ax+by+cz = d\) crosses the \(x\)-axis at \(d/a\).
\[ D = \frac{|a x_1 + b y_1 + c z_1 - d|}{\sqrt{a^2+b^2+c^2}} \] Distance from the point \((x_1,y_1,z_1)\) to the plane \(ax+by+cz = d\): plug the point into the plane equation, take the absolute value of the mismatch, and divide by \(|\mathbf{n}|\). It is the scalar projection of \(\overrightarrow{P_0P_1}\) onto \(\hat{\mathbf{n}}\). The lab below draws that perpendicular for you.
Interactive lab

Plane explorer

The sliders set \(a, b, c, d\) in \(ax + by + cz = d\). The orange arrow is the normal \(\mathbf{n} = \langle a,b,c\rangle\), the dots on the axes are the intercepts, and the dashed segment drops from the free point \(Q\) perpendicularly onto the plane β€” its length is the distance formula. Drag the view to orbit. Try making \(c = 0\) and watch the plane stand up vertically, parallel to the \(z\)-axis.

Presets

Drag to orbit. Orange arrow: normal \(\mathbf{n}\). Blue dot: \(Q\). Dashed: perpendicular from \(Q\) to the plane.

View

Plane \(ax + by + cz = d\)

a1.0
b1.0
c1.0
d2.0

Free point \(Q\)

Qx2.0
Qy2.0
Qz2.0
Equationβ€”
|n|β€”
Distance from originβ€”
Distance from Qβ€”
Intercepts x, y, zβ€”
Distance from Q, live

7 Β· Quadric surfaces

A quadric is the graph of a second-degree equation in \(x, y, z\) β€” the three-dimensional cousins of the conic sections. There are six you must recognise on sight, plus the cylinders. The technique for identifying any of them is the same: take traces. Set \(z = k\) and see what curve you get in that horizontal slice; then \(x = k\) and \(y = k\). The pattern of traces names the surface.

SurfaceStandard equationHorizontal traces \(z=k\)Vertical tracesTell-tale
Ellipsoid\(\dfrac{x^2}{a^2}+\dfrac{y^2}{b^2}+\dfrac{z^2}{c^2} = 1\)ellipsesellipsesAll plus signs, \(=1\). A sphere if \(a=b=c\).
Elliptic paraboloid\(\dfrac{z}{c} = \dfrac{x^2}{a^2}+\dfrac{y^2}{b^2}\)ellipses (\(k > 0\) only)parabolasOne variable appears to the first power. A bowl. Opens along that axis.
Hyperbolic paraboloid\(\dfrac{z}{c} = \dfrac{x^2}{a^2}-\dfrac{y^2}{b^2}\)hyperbolasparabolas, opposite waysFirst power in one variable, mixed signs in the others. A saddle.
Cone\(\dfrac{z^2}{c^2} = \dfrac{x^2}{a^2}+\dfrac{y^2}{b^2}\)ellipses; a point at \(k=0\)hyperbolas; two lines through the originAll squares, \(=0\). Two nappes, tip to tip.
Hyperboloid of one sheet\(\dfrac{x^2}{a^2}+\dfrac{y^2}{b^2}-\dfrac{z^2}{c^2} = 1\)ellipseshyperbolasOne minus, \(=1\). A cooling tower; connected. The minus sign names the axis it wraps around.
Hyperboloid of two sheets\(-\dfrac{x^2}{a^2}-\dfrac{y^2}{b^2}+\dfrac{z^2}{c^2} = 1\)ellipses for \(|k| > c\); none for \(|k| < c\)hyperbolasTwo minuses, \(=1\). Two separate bowls facing away from each other along the plus axis.
Cylinderany equation missing a variable, e.g. \(x^2+y^2 = 4\) or \(z = x^2\)the plane curve, extruded along the missing axisA variable is absent. Not necessarily round β€” \(z = x^2\) is a parabolic cylinder.
Count the minus signs on the \(=1\) forms: zero β†’ ellipsoid, one β†’ one sheet, two β†’ two sheets. Squares equal to zero β†’ cone. A first-power variable β†’ paraboloid (bowl if the squares agree in sign, saddle if they disagree).
How to sketch one in thirty seconds
  1. Identify the type from the table.
  2. Find the axis: the variable that is different (first power, or opposite sign) is the axis the surface is built around.
  3. Draw two or three traces perpendicular to that axis, then connect them.

Do not try to draw the whole thing free-hand. Draw the traces; the surface appears.

Interactive lab

Quadric surface viewer

Pick a surface, adjust \(a, b, c\), then slide the trace plane through it. The highlighted curve is the trace in that plane, and the readout names it β€” exactly the identification you would do by hand on an exam. Notice how the hyperboloids are the cone with the tip pulled apart (one sheet) or pinched open (two sheets).

Drag to orbit. The translucent sheet is the trace plane; the orange curve is the trace.

Trace plane
k0.50

Shape parameters

a1.00
b1.00
c1.00
Show
Surfaceβ€”
Traceβ€”
Equation with your a, b, c

8 Β· Cylindrical and spherical coordinates

Cartesian coordinates describe boxes well and nothing else well. A coaxial cable, a point charge, a rotating machine β€” each of these has a symmetry that its natural coordinate system makes trivial and Cartesian makes miserable. Learn both systems now; Unit 4 will make you integrate in them.

Cylindrical \((r, \theta, z)\) β€” polar coordinates with height

\[ x = r\cos\theta,\qquad y = r\sin\theta,\qquad z = z \qquad\qquad r^2 = x^2 + y^2,\qquad \tan\theta = \frac{y}{x} \] \(r\) is the distance from the \(z\)-axis (not from the origin), \(\theta\) is the angle in the floor plane measured from the positive \(x\)-axis, and \(z\) is untouched. Find \(\theta\) from the signs of \(x\) and \(y\) β€” the arctangent alone cannot tell quadrant II from quadrant IV.
EquationSurface
\(r = 2\)Cylinder of radius 2 around the \(z\)-axis
\(\theta = \pi/4\)Vertical half-plane through the \(z\)-axis
\(z = r\)Cone (opening upward from the origin)
\(z = r^2\)Circular paraboloid
\(r^2 + z^2 = 9\)Sphere of radius 3

Spherical \((\rho, \theta, \phi)\) β€” distance and two angles

\[ x = \rho\sin\phi\cos\theta,\qquad y = \rho\sin\phi\sin\theta,\qquad z = \rho\cos\phi \qquad\qquad \rho^2 = x^2+y^2+z^2 \] \(\rho\) is the distance from the origin. \(\phi\) is the angle down from the positive \(z\)-axis, \(0\le\phi\le\pi\) β€” the north pole is \(\phi=0\), the equator \(\phi=\pi/2\), the south pole \(\phi=\pi\). \(\theta\) is the same longitude angle as in cylindrical. The bridge between the two systems is \(r = \rho\sin\phi\) and \(z = \rho\cos\phi\): drop the point to the floor and you get a right triangle with hypotenuse \(\rho\).
EquationSurface
\(\rho = 3\)Sphere of radius 3, centred at the origin
\(\phi = \pi/6\)Cone with half-angle \(30^\circ\) opening upward
\(\phi = \pi/2\)The \(xy\)-plane
\(\theta = \pi/3\)Vertical half-plane, same as in cylindrical
\(\rho = 2\cos\phi\)Sphere of radius 1 centred at \((0,0,1)\) β€” multiply through by \(\rho\) to see \(x^2+y^2+z^2 = 2z\)
The \(\theta\)/\(\phi\) swap

Mathematics texts (and this course) use \(\theta\) for longitude and \(\phi\) for the polar angle. Most physics and EE texts do the opposite: \(\theta\) is the polar angle from \(z\) and \(\phi\) is longitude. The conversion formulas are identical once you swap the letters, but an antenna pattern labelled \(E(\theta)\) in an EE book means the angle from the axis. Check the definition before you trust the symbol.

Interactive lab

Locate a point three ways

One point, three descriptions. Choose which system you want to drive with the chips, move the sliders, and watch the same point being located by a different construction: three perpendicular steps (Cartesian), a radius and a turn in the floor plus a rise (cylindrical), or a distance and two angles (spherical). The conversions are worked live below the readouts with your numbers in them.

Drive with

Drag to orbit. Dashed lines are the Cartesian steps; the foot on the floor is the point's shadow.

x1.50
y2.00
z1.50
Show
View
Cartesian (x, y, z)β€”
Cylindrical (r, ΞΈ, z)β€”
Spherical (ρ, ΞΈ, Ο†)β€”
|OP|β€”
Conversions with your numbers

9 Β· Worked examples

1. Angle between two vectors, and the projection

Let \(\mathbf{a} = \langle 2, -1, 2\rangle\) and \(\mathbf{b} = \langle 1, 2, 2\rangle\). Find the angle between them and \(\operatorname{proj}_{\mathbf{b}}\mathbf{a}\).

\[ \mathbf{a}\cdot\mathbf{b} = 2 - 2 + 4 = 4,\qquad |\mathbf{a}| = \sqrt{4+1+4} = 3,\qquad |\mathbf{b}| = \sqrt{1+4+4} = 3 \] \[ \cos\theta = \frac{4}{3\cdot 3} = \frac49 \quad\Longrightarrow\quad \theta = \arccos\tfrac49 \approx 63.6^\circ \]
\[ \operatorname{proj}_{\mathbf{b}}\mathbf{a} = \frac{\mathbf{a}\cdot\mathbf{b}}{|\mathbf{b}|^2}\,\mathbf{b} = \frac{4}{9}\langle 1,2,2\rangle = \left\langle \tfrac49, \tfrac89, \tfrac89\right\rangle \]

Sanity check: the projection has length \(\tfrac49\cdot 3 = \tfrac43\), and \(\operatorname{comp}_{\mathbf{b}}\mathbf{a} = 4/3\) directly. βœ“ It is shorter than \(|\mathbf{a}| = 3\), as a shadow must be.

2. Force on a moving charge

An electron (\(q = -1.6\times10^{-19}\) C) moves with velocity \(\mathbf{v} = \langle 2\times10^6, 0, 1\times10^6\rangle\) m/s through \(\mathbf{B} = \langle 0, 0.5, 0\rangle\) T. Find the force.

\[ \mathbf{v}\times\mathbf{B} = \begin{vmatrix}\mathbf{i}&\mathbf{j}&\mathbf{k}\\ 2\times10^6 & 0 & 1\times10^6\\ 0 & 0.5 & 0\end{vmatrix} = \mathbf{i}(0 - 0.5\times10^6) - \mathbf{j}(0 - 0) + \mathbf{k}(1\times10^6 - 0) \] \[ = \langle -5\times10^5,\ 0,\ 1\times10^6\rangle \]
\[ \mathbf{F} = q\,\mathbf{v}\times\mathbf{B} = (-1.6\times10^{-19})\langle -5\times10^5, 0, 10^6\rangle = \langle 8\times10^{-14},\ 0,\ -1.6\times10^{-13}\rangle\ \text{N} \]

Check perpendicularity: \(\mathbf{F}\cdot\mathbf{v} = 8\times10^{-14}\cdot 2\times10^6 + 0 - 1.6\times10^{-13}\cdot10^6 = 1.6\times10^{-7} - 1.6\times10^{-7} = 0\). βœ“ The force is perpendicular to the velocity β€” it changes direction, never speed. Note that the negative charge reversed the direction of \(\mathbf{v}\times\mathbf{B}\).

3. Plane through three points

Find the plane through \(P(1,0,0)\), \(Q(0,2,0)\), \(R(0,0,3)\).

Two vectors in the plane: \(\overrightarrow{PQ} = \langle -1, 2, 0\rangle\), \(\overrightarrow{PR} = \langle -1, 0, 3\rangle\).

\[ \mathbf{n} = \overrightarrow{PQ}\times\overrightarrow{PR} = \begin{vmatrix}\mathbf{i}&\mathbf{j}&\mathbf{k}\\ -1&2&0\\ -1&0&3\end{vmatrix} = \mathbf{i}(6-0) - \mathbf{j}(-3-0) + \mathbf{k}(0+2) = \langle 6, 3, 2\rangle \]

Through \(P\): \(6(x-1) + 3y + 2z = 0\), i.e.

\[ 6x + 3y + 2z = 6 \qquad\Longleftrightarrow\qquad \frac{x}{1} + \frac{y}{2} + \frac{z}{3} = 1 \]

Check all three points: \(Q\): \(0 + 6 + 0 = 6\) βœ“; \(R\): \(0+0+6 = 6\) βœ“. The intercept form on the right is worth knowing β€” a plane with intercepts \(p, q, r\) is always \(x/p + y/q + z/r = 1\).

4. Line of intersection of two planes

Find parametric equations for the line where \(x + y + z = 1\) and \(x - 2y + 3z = 1\) meet.

Direction: perpendicular to both normals.

\[ \mathbf{v} = \langle 1,1,1\rangle\times\langle 1,-2,3\rangle = \begin{vmatrix}\mathbf{i}&\mathbf{j}&\mathbf{k}\\ 1&1&1\\ 1&-2&3\end{vmatrix} = \langle 3+2,\ -(3-1),\ -2-1\rangle = \langle 5, -2, -3\rangle \]

A point: set \(z = 0\). Then \(x + y = 1\) and \(x - 2y = 1\); subtracting, \(3y = 0\), so \(y = 0\), \(x = 1\). Point \((1, 0, 0)\).

\[ x = 1 + 5t,\qquad y = -2t,\qquad z = -3t \]

Verify with \(t = 1\): \((6, -2, -3)\). First plane: \(6-2-3 = 1\) βœ“. Second: \(6 + 4 - 9 = 1\) βœ“. Always check a second point β€” the direction could be right and the base point wrong.

5. Identify a quadric

Identify and sketch \(4x^2 - y^2 + z^2 = 4\).

Divide by 4: \(x^2 - \dfrac{y^2}{4} + \dfrac{z^2}{4} = 1\). All squares, \(=1\), one minus sign β†’ hyperboloid of one sheet. The minus sign is on \(y\), so the surface wraps around the \(y\)-axis.

Traces:

  • \(y = k\): \(x^2 + z^2/4 = 1 + k^2/4\) β€” ellipses, growing with \(|k|\). Smallest at \(y = 0\) (the “waist”).
  • \(x = 0\): \(z^2/4 - y^2/4 = 1\) β€” hyperbola opening along \(z\).
  • \(z = 0\): \(x^2 - y^2/4 = 1\) β€” hyperbola opening along \(x\).

Sketch: a cooling-tower shape lying along the \(y\)-axis, with elliptical cross-sections whose semi-axes are 1 (in \(x\)) and 2 (in \(z\)) at the waist. Set the lab above to Hyperboloid, 1 sheet and look at it from the side to see the shape β€” then remember to rotate the axis.

6. Convert between coordinate systems

(a) Convert the point \((-1, \sqrt3, 2)\) to cylindrical and spherical. (b) Write the cone \(z = \sqrt{x^2+y^2}\) in both systems.

(a) Cylindrical. \(r = \sqrt{1 + 3} = 2\). \(\tan\theta = \sqrt3/(-1)\), and the point is in quadrant II (\(x<0, y>0\)), so \(\theta = 2\pi/3\), not \(-\pi/3\). \(z = 2\). Cylindrical: \((2, 2\pi/3, 2)\).

Spherical. \(\rho = \sqrt{1+3+4} = 2\sqrt2\). \(\cos\phi = z/\rho = 2/(2\sqrt2) = 1/\sqrt2\), so \(\phi = \pi/4\). \(\theta\) is unchanged. Spherical: \((2\sqrt2, 2\pi/3, \pi/4)\).

Check: \(r = \rho\sin\phi = 2\sqrt2\cdot\tfrac{1}{\sqrt2} = 2\). βœ“

(b) Cylindrical: \(\sqrt{x^2+y^2} = r\), so the cone is simply \(z = r\). Spherical: \(\rho\cos\phi = \rho\sin\phi\), so \(\tan\phi = 1\), \(\phi = \pi/4\). A cone is a single coordinate held constant in spherical coordinates β€” the sign that spherical is the right system for it.

Checklist

  • I can locate a point in 3D and find distances and sphere equations by completing the square.
  • I compute dot products by components and interpret them by \(|\mathbf{a}||\mathbf{b}|\cos\theta\); zero means perpendicular.
  • I set up the cross product as a determinant every time and know it is anticommutative.
  • I can read the normal vector straight off a plane equation, and the direction vector straight off a line.
  • I use two different parameters when intersecting two lines.
  • I identify a quadric by counting signs and taking traces, and know which variable is the axis.
  • I can convert points and surfaces between Cartesian, cylindrical and spherical β€” with \(\theta\) placed in the correct quadrant.
  • I know \(\phi\) is measured from the \(z\)-axis and that EE books often swap \(\theta\) and \(\phi\).