Coordinate Systems – Parametric Equations

A recurring property of coordinate systems is that in order to locate a point in an n-dimensional space, you need n numbers (or n independent pieces of information about that point). There is a way to “cheat” this using just one number (called a parameter) to locate an n-dimensional point.

This isn’t really cheating as you still have to initially provide the required information, but once done, one number will suffice to place a point.

An example of this is the equation of a circle of radius r:

\[x^2+y^2=r^2\]

This is the standard Cartesian equation but a parametric way of defining a circle, using a parameter t, is

\[x=r\,\text{cos}(t)\\y=r\,\text{sin}(t)\]

Defined in this way, any value of t will generate a point on the same circle. We can generate the Cartesian equation from these two parametric equations, but I will leave that as a topic for a future post.

Parametric equations can be a much more useful way to represent a curve, especially curves that model a physical process.

If a projectile is launched with an initial speed of 31.6267 m/s at an angle of 50.78Β° from the ground, it will follow a parabolic trajectory which can be represented by the equation

\[y=-0.01225(x-50)^2+30.625\]

where y is the height above the ground and x is the distance along the ground from the launch point. The trajectory of the projectile (the graph of the above equation) looks like

This graph is useful in that it tells us how high the projectile goes and how far. But it doesn’t tell us where the ball is at any time or how long it take to hit the ground.

The initial velocity can be broken up into a horizontal and a vertical component. These components can be treated separately:

If resistance due to the air is neglected, the horizontal distance at a given time t is x = 20t. The vertical distance cannot be treated as simply as the vertical velocity is constantly changing due to gravity. From physics and calculus, the vertical distance is y = -4.9t2 + 24.5t. These two equations are the parametric forms of the Cartesian trajectory equation. For any time t, a point on this trajectory, (20t, -4.9t2 + 24.5t), is located and represents where the projectile is at that time:

Notice how we get more information about what is going on with this way of representing a graph. We can now tell where the projectile is at any time t, that it takes 2.5 seconds to reach the top of the trajectory, and that it takes 5 seconds to return to the ground.

This is not a unique way to represent this trajectory parametrically, but this one conforms to the physics of the problem. In general, parametric equations make it possible to plot graphs that are difficult or even impossible to plot with a single Cartesian equation.

This can be extended to higher dimensions as well. There is a lot of mathematics around parametric equations and it adds to the wonder (and complexity) of maths.

Coordinate Systems – 3D, part 2

Once again, if you want to locate a point in 3-dimensional space, you need 3 numbers. In my last post, the 2-D Cartesian coordinate system (sometimes called the rectangular coordinate system) was extended to 3-D by adding another axis that is perpendicular to the other two axes. A point is then located using the coordinates (x, y, z), (1,βˆ’2,3) for example. Here are two more ways to locate a 3-D point that uses the rectangular system as a backdrop.

Spherical Coordinate System

If you remember in the 2-D scenario, polar coordinates used an angle (πœƒ) from the positive x-axis and a distance (r) from the origin to determine the location of a point. And equations to represent a plot of points that satisfied the relationship between these coordinates had r‘s and πœƒ’s in them. In 3-D, the spherical coordinate system extends this method.

There are different conventions here but they all use two angles and a distance. The mathematical convention is shown below:

Source: https://en.wikipedia.org/wiki/Spherical_coordinate_system#/media/File:3D_Spherical_2.svg

Here, a point is located by an angle from the positive x-axis, πœƒ, (like in polar coordinates), an angle from the positive z-axis, πœ‘, and a distance, r, from the origin. A point in this system has coordinates (r, πœƒ, πœ‘). As with polar coordinates, there are curves that are more easily expressed in spherical coordinates. For example, a sphere of radius 4 centred at the origin can be easily expressed in spherical coordinates as r = 4:

Or how about:

\[r=4\text{cos}(2\theta)\text{sin}^2(\varphi)\]

There are other conventions for spherical coordinates, one of which you are very familiar with. Locating a point on the earth is typically done with two numbers, longitude and latitude. Longitude is the angle a location is from the agreed reference meridian that runs through Greenwich England, and latitude is its angle from the equator. If the origin is at the earth’s centre with the x-axis going through the reference meridian (called the prime meridian) and the z-axis going through the north pole, longitude is our πœƒ, latitude is 90Β° βˆ’ πœ‘, and r is always the radius of the earth.

Another convention is used to locate earth satellites using angles right ascension (similar to longitude) and declination (similar to latitude) from an agreed earth centred coordinate system where the axes are fixed and do not rotate with the earth.

There are other variations of this coordinate system; these are just a few.

Cylindrical Coordinate System

You can think of the cylindrical coordinate system as the 2D polar system with an added z coordinate:

Source: https://tutorial.math.lamar.edu/classes/calciii/CylindricalCoords.aspx

Different letters/Greek symbols can be used, but they all represent the same system. If you look at the xy plane above, you see that this is just the polar coordinate system that was explained in a previous post. To add the third dimension, just move up z units to the desired point (r, πœƒ, z).

Cylindrical coordinates are useful in putting objects that are symmetrical with respect to the z-axis. For example, a cylinder of radius 4 can be easily described with the equation r = 4:

r = 4

Another example is a cone: z = r:

z = r

Switching between rectangular, spherical, and cylindrical coordinates is a useful tool in calculus. An equation expressed in one of these systems may be unsolvable but solvable in a different system.

In my next post, I’ll describe a sneaky way to locate a point in 2 or 3-D with one number: parametric equations.

Coordinate Systems – 3D, part 1

Since we live in a 3 dimensional world, many problems we encounter in fields such as science and engineering, as well as others, are modelled mathematically using 3 variables, hence, 3D.

The first coordinate system introduced to students to handle 3 variables is an extension of the 2D Cartesian coordinate system. If another number line is added to the 2D system that is 90Β° t0 the previous 2 axes, with the origin coinciding with the other two origins, you have the 3D system. The third axis is called the z-axis. So a point now needs 3 numbers to place it in 3D space: (x,y,z). Frequently, to draw a 3D grid on a 2D surface, the y and z axes are drawn in he plane of the surface and the x axis is drawn in perspective to show that it is perpendicular to the surface. So placing a point in a 3D Cartesian frame is an artistic challenge for me but drawing dashed lines parallel to the axes helps:

There are other orientations of the 3 axes when showing them in 2D, but this is a very common one.

As with the 2D Cartesian coordinate system, equations relating the variables x, y, and z can be plotted, showing all the values of x, y, and z that make the equation true.

In 2D, a general equation of a line is ax + by = c, where the a, b, and c are specific numbers. For example, the set of points that satisfy the equation 2x -3y = 7, plot as a straight line. By extension, in 3D, the general linear equation is ax + by + cz = d. Though this is called a linear equation, it plots as a plane in 3D:

The 3D version of a circle in 2D is a sphere. The generic equation of a sphere of radius r centred at the origin is x2 + y2+ x2 = r2:

Very interesting shapes can be made using 3D graphs. Here are a few:

\[z=5e^{-0.2(x^2+y^2)}\text{cos}(x^2+y^2)\]
\[z = \pm \sqrt{0.4^2-\left(2-\sqrt{x^2+y^2}\right)^2}\]
\[z=4 e^{-\frac{1}{4} y^2} \sin (2 x)\]

As with 2D, there are other ways of locating points in 3D. I will present some of these in my next post.

Coordinate Systems – 2D, part 2

In my last post, I talked about the Cartesian coordinate system where a point or a set of points can be located using the two numbers (x, y). There is another popular coordinate system that also locates a point in 2D space.

In the graph below, I have plotted the point (5, 3) in the Cartesian coordinate system we now know very well. I have added a line from the origin to that point and noted that the line makes an angle πœƒ with the x-axis and that the length of the line is r. I’ve also added perpendicular lines from the point to the x and y axes to show that similar right triangles are formed:

From this graph, you can see that the right triangles have sides of lengths 5 and 3 units. From the Pythagorean Theorem,

\[r=\sqrt{3^2+5^2}\approx5.83\]

And from trigonometry:

\[\text{tan}(\theta)=\frac{3}{5}\Rightarrow\theta\approx30.96\text{Β°}\]

Why did I do this? Another way to locate that same point is to 1) define a line (also called a ray) from the origin that is 30.96Β° from the x-axis then, 2) go along that line 5.83 units and stop. That is your point. Welcome to polar coordinates.

This system of locating a point in 2D is called “polar” because the origin is a “pole” from which all the rays that you can define radiate from. In the polar coordinate system, you also need two numbers to locate a point: r and πœƒ. Conventionally, a point in polar coordinates is given in the order (r, πœƒ).

The variable r is a point’s distance from the origin. πœƒ is the angle measured from the postive x-axis: anti-clockwise is + and clockwise is βˆ’. Because angles repeat every 360Β° or 2πœ‹ radians, a particular (r, πœƒ) for a point is not unique. For example, (2, 25Β°) locates the same point as (2, 385Β°).

Graphing relations is usually done by plotting r as a function of πœƒ. Just as in Cartesian coordinates, the polar graph of an equation between r and πœƒ is a picture of all the points whose (r, πœƒ) coordinates satisfy the equation. For example, the graph below are all points that satisfy r = 2cos(2πœƒ):

Notice how a grid of concentric circles (possible r values) and rays (possible πœƒ values) is super-imposed on the x and y axes. This is a polar graph grid.

There are Cartesian graphs that are more easily expressed and plotted in polar coordinates (and vice-versa). One glaring example is a circle. In the Cartesian frame, the equation of a circle, centred at the origin, is

\[x^2+y^2=r^2\]

where r is the radius. For a circle of radius 2, the above equation would have 4 on the right side and the graph would be a circle of radius 2 centred at the origin. In polar coordinates, the same graph would be r = 2. This is a picture of all points that are 2 units away from the origin:

In orbital dynamics, polar plots are most useful plotting a 2-body orbit. What is meant by “2-body” will be the subject of another post. The path of most orbits of satellites around the earth, are approximated by the ellipse. In Cartesian coordinates, the equation of an ellipse is:

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

The parameters a and b determine the size and orientation (long side vertical or horizontal) of the ellipse. For example,

The problem with this plot is that the geometric centre of the ellipse is at the origin. The path of an earth satellite is not the path followed in this plot if the earth is at the origin. The earth is at one of two special points associated with an ellipse called foci (singular focus). It is more useful in orbital dynamics if the ellipse were plotted in polar coordinates. The polar equation of an ellipse (actually any conic shape which includes circles, parabolas, and hyperbolas) is

\[r=\frac{p}{1+e\text{cos}(\theta)}\]

where p and e are parameters that determine the size and the shape (circle, ellipse, parabola, or hyperbola) of the orbit. The parameter p is the y-intercept on a superimposed Cartesian frame and we will limit e to be strictly between 0 and 1 which makes the equation plot as an ellipse. This equation, by the way, is called the orbit equation because it accurately describes the shape of any orbit between two point masses without being perturbed by other masses. An example of an elliptical orbit around the earth with a satellite at a particular position is:

This polar plot is more useful to describe orbits because the earth is at the origin and it shows three of the parameters commonly used to describe a satellite’s position and orbit: p (called the semi-latus rectum), e (called the eccentricity), and πœƒ (called the true anomaly).

Polar plots can generate shapes that would be unwieldy to generate in the Cartesian frame:

There are other less popular 2D coordinate systems like the parabolic coordinate system. Here is what parabolic graph paper looks like:

I personally do not want to go there.

Coordinate Systems – 2D, part 1

How do you locate a point on a two-dimensional (2D) surface. Since we are now in two dimensions, it will take a minimum of 2 numbers to locate a point. As in the case for 1D, the 2D surface used can be flat (which this post talks about) or curved: for example the surface of the Earth where the most common system to locate a point is the Geographic Coordinate System using latitude and longitude (again, two numbers to locate a point).

Cartesian Coordinate System

The coordinate system most used by students of mathematics is the Cartesian Coordinate System. This was invented (and named after) RenΓ© Descartes in the 17th century. This system is used in 3D as well as higher dimensions, but this post is limited to 2D. As most people best learn and retain mathematical concepts visually, this system of plotting was, and still is, indispensable in algebra, calculus, geometry, trigonometry, and many more subjects. So what is the Cartesian Coordinate System?

If you take two 1D number lines, one horizontal and the other vertical so that they are at 90Β° to one another and that their origins intersect, voilΓ , you have a Cartesian Coordinate System:

The system above also has a superimposed grid so that we can more easily located a point.

Conventionally, the horizontal line is called the x-axis, and the vertical one the y-axis. Note the negative numbers are to the left and down. A point on a plane which has this system of location, is said to have coordinates (x, y). Note that x is always first. So a general point (x, y) will have a position such that it is x units left or right of the y-axis and y units above or below the x-axis. Here are some examples:

Analysing points and shapes plotted on a Cartesian coordinate system is called Coordinate Geometry. The lengths and midpoints of plotted lines with defined endpoints can be calculated. But the much more interesting use of a 2D coordinate system is plotting all the points that satisfy a relation between x and y values. This is called plotting an equation.

Suppose you have a relationship (equation) x2 + y2 = 4. What are the values of x and y that satisfy this equation? There are an infinite number of (x, y) pairs that will solve this equation. For example, (0, 2) solves this equation because 02 + 22 = 4. Even though there are infinite solutions, we can draw a picture of all the points that do solve the equation:

As you can see, the set of all points that solve this equation plots as a circle of radius 2. Plots of other equation can look quite strange:

But it is important to remember that the (x, y) coordinates of any point on the graph of a relation, makes the equation true when you substitute those values into it.

The Cartesian coordinate system is not the only way to locate a point in 2D. I will talk about another popular 2D coordinate sytstem in my next post.

Coordinate Systems – 1D

Many of the posts I have written, had plots of functions or relations between two variables, usually x and y. Most of teaching algebra and calculus relies on graphs to illustrate concepts. These graphs are plots of all the points that satisfy an algebraic relation between the two (or more) variables. Behind these plots is the coordinate system used. This series of posts explores the different coordinate systems commonly used in maths. Let’s first look at a one dimension (1D) coordinate system.

1D means that one number is needed to locate a point. The most used 1D coordinate system is the number line:

Number lines can be vertical or even curvy, for example, to show distance along a path. Usually though, the number line is a straight horizontal line. But they all have some things on common. First, they have to have a reference point: a point from which all other points obtain their position. This point here and in all coordinate systems is called the origin. And second, there is a scale: the distance between the tick marks that allow us to place a point. In the example above, the scale is 1 unit between tick marks. For example, if we want to plot the variable x = 5, the plot would be

There are an infinite number of points on this line: an infinite number of tick marks and an infinite number of points between each tick mark. What are the kinds of numbers that can be plotted?

Any number on the number line is called a real number. This is an actual mathematical term to distinguish these from other types of numbers used in maths such as imaginary numbers (despite the name, imaginary numbers have a real meaning in science and engineering). The set of real numbers is represented by the symbol ℝ. There are several subsets of real numbers.

The first set of numbers you learned as a child were the natural numbers. These are the counting numbers 1, 2, 3, … but do not include 0. This set of numbers is given the symbol β„•.

Then you learned about 0 and negative integers. Integers are whole numbers (no decimals or fraction parts) and include the natural numbers, 0, and the negative integers. This set of numbers is given the symbol β„€. Why not 𝕀? Because 𝕀 is the symbol for imaginary numbers which are not real numbers and 𝕀 is also sometimes used to refer to irrational numbers which I will talk about soon. Notice that β„• is a subset of β„€ which is a subset of ℝ.

The next type of real numbers is the set of rational numbers. These are numbers that can be put into the form p/q where p and q are integers. Any integer is a rational number like 2 since 2 can be written as 2/1. Any decimal number with a repeating pattern of decimals (even if that is a repeating 0) is a rational number. As ℝ is already used for real numbers, this set of numbers is given the symbol β„š. This stands for quotient as p/q is a quotient (a maths term for division). All of the previous sets of numbers are subsets of ℝ.

That leaves the set of irrational numbers: the numbers that cannot be put into the form p/q. Numbers like πœ‹ or √2 are irrational and symbols like these are the only way to represent the exact values. They cannot be exactly represented as a decimal number as their decimal parts never repeat. There is no common symbol for these but β„™ or 𝕀 are sometimes used. There are few occasions where only irrational numbers are required, but a more common notation would be ℝ\β„š which means “all real numbers except rational numbers”. Here is a nice picture of how all these types of real numbers are related:

It’s the irrational and some of the rational numbers that lie between the tick marks. So πœ‹ would be approximately

Plotting single points on the number line is rather boring. But it can also be used to indicate intervals of numbers like all the numbers between βˆ’6 and 2. This is shown as βˆ’6 < x < 2 where the endpoints are not included or βˆ’6 ≀ x ≀ 2 if both endpoints are included or a combination. When plotting these, an open circle means that the endpoint is not included and a filled in circle means that it is included. So βˆ’6 < x ≀ 2 would plotted

There’s not much else we can do when using the 1D number line, but we have a lot more options when expanding to 2D: to be continued.