Les guides pour les nuls

Index

Trigonometry

Probably the most basic concepts covered on this website just fyi.

Triangles

The following two laws apply for ANY triangle with side lengths and associated opposite angles arbitrarily defined like so.

Perpendicular bisectors and circumcenter for reference

Law of Cosines

\[c^2 = a^2 + b^2 - 2ab\cos(C)\]

A few quick thoughts and intuitions:

Law of Sines

\[\frac{a}{\sin(A)} = \frac{b}{\sin(B)} = \frac{c}{\sin(C)}\]

A few quick intuitions.

sin, cos, tan, csc, sec, cot

I will assume strong familiarity with the definitions for these operators and how they are related to each other. Keep in mind, these are all related to the unit circle. Here I only present rapid-fire properties and plots that escape my memory. No derivations.

Plots

All 6 classic trig functions plotted over $x \in [-2\pi, 2\pi]$

Notes:

Pythagorean Identities

\[\begin{aligned} \sin^2\theta + \cos^2\theta &= 1 \\ 1 + \tan^2\theta &= \sec^2\theta \\ 1 + \cot^2\theta &= \csc^2\theta \end{aligned}\]

Angle-Arithmetic Identities

\[\begin{aligned} \sin(\alpha \pm \beta) &= \sin\alpha\cos\beta \pm \cos\alpha\sin\beta \\ \cos(\alpha \pm \beta) &= \cos\alpha\cos\beta \mp \sin\alpha\sin\beta \\ \tan(\alpha \pm \beta) &= \frac{\tan\alpha \pm \tan\beta}{1 \mp \tan\alpha\tan\beta} \end{aligned}\]

Double Angle Identities

Here for reference, but sorta redundant when angle-arithmetic identities are already presented.

\[\begin{aligned} \sin(2\theta) &= 2\sin\theta\cos\theta \\ \cos(2\theta) &= \cos^2\theta-\sin^2\theta \\ \cos(2\theta) &= 2\cos^2\theta-1 \\ \cos(2\theta) &= 1-2\sin^2\theta \\ \tan(2\theta) &= \frac{2\tan\theta}{1-\tan^2\theta} \end{aligned}\]

Power Reduction Identities

\[\begin{aligned} \sin^2\theta &= \frac{1-\cos(2\theta)}{2} \\ \cos^2\theta &= \frac{1+\cos(2\theta)}{2} \\ \tan^2\theta &= \frac{1-\cos(2\theta)}{1+\cos(2\theta)} \end{aligned}\]

arcsin, arccos, arctan, arcsec, arccsc, arccot

Hyperbolic Trig

Hyperbolic trig is an entirely different beast. I’m willing to believe most people either forget, or are entirely unaware, that these exist. So we start basic this time.

3D World

Coordinate Systems

Cartesian

Polar

Spherical

Operations

Dot Products

Cross Products

Outer Products

Vectors and Planes

Equation of plane

Distances cheatsheet

Conic Sections

The most intuitive way to understand conic sections is they are the 2-D functions that arise from slicing a circular cone with a plane.

conic slices

First let’s motivate why we care about how we slice we cones - where do we see conic sections in life (just to name a few)?

In general, you will see that the form of conic sections are fundamental, quadratic, and likely to appear as a byproduct in a lot of mathematical modeling. Thus, a strong intuition is useful. It’s also kind of fun to do an arch-easter-egg hunt.

General Form

First, we must define what a circular cone is.

\[x^2 + y^2 = z^2\tan^2(\theta)\]

where $\theta$ is the half-angle subtended by the cone.

Now, we must define the plane which slices the cone. There is no need to explicitly write out the equation of the plane because only one property of the plane really matters in order to determine which conic section is formed: its angle with the z-axis $\beta$. Note that by definition of an angle between a plane and a vector, $\beta \in [0, \pi/2]$.

conic slice planes visualized

Finding the intersection between a cone and a general plane of varying $\beta$ is tedious algbebra and yields the general form of conic sections.

\[Ax^2 + Bxy + Cy^2 + Dx + Ey + F = 0\]

Classically, we like to analyze conics as origin-centered ($D, E = 0$) and un-rotated ($B = 0$). Yielding the more comforting general form of a regular conic

\[\boxed{Ax^2 + Cy^2 + F = 0}\]

And its sister polar general form

\[\boxed{r = \frac{p}{1+e\cos(\nu)}}\]

The transformation between polar and cartesian general forms is arduous geometry, so just trust this form works. The polar form introduces to us the following recurring concepts in all conic sections : $(p, e, \nu)$. From these, we can define a full set of useful concepts for conics.

Ellipse ( $0<e<1$ )

The general cartesian form of an origin-centered ellipse (2D) is

\[\frac{x^2}{a^2} + \frac{y^2}{b^2} = 1\]

And its polar form

\[r = \frac{p}{1 + e\cos(\nu)} \quad | \quad 0<e<1\]
ellipse and important intrinsic relations

Notes

Parabola ($e=1$)

The general form of an origin-vertexed parabola (2D) is

\[y^2 = 4ax\]

And its polar form

\[r = \frac{p}{1 + \cos(\nu)}\]
parabola and important intrinsic relations

Notes:

Hyperbola ($e>1$)

Finally, the general forms of an origin-centered hyperbola (2D) is

\[\frac{x^2}{a^2} - \frac{y^2}{b^2} = 1 \quad ; \quad xy = c^2\]

And its polar form

\[r = \frac{p}{1 + e\cos(\nu)} \quad | \quad e>1\]
hyperbola and important intrinsic relations

Notes

As a parting note on conic sections, here is visual on how a conic section evolves as $e: 0\rightarrow\infty$.

how conic sections evolve with e

Quadratic Hypergeometries