Homework Assignments#

Expectations#

All homework assignments will be completed using Jupyter notebooks, where you will submit your source file (*.ipynb) and a compiled file (*.pdf). The filename for each submission will be in the following format “ASTR3220_Chpt#_LastName”, where the “#” character is replaced the appropriate chapter number. Jupyter notebooks allow you to create code cells in Python and non-code cells in Markdown. There are short guides in the Preamble that will help you.

A complete homework problem contains a detailed explanation that describes the process by which you arrived at the solution. You will not receive full credit for simply reporting the final answer. To describe the process, you will use the math mode in \(\LaTeX\) to display equations, numbers in scientific notation, and variables. A guide to the various commands can be found here.

Homework Style#

The homework assignments should match the following style:

  1. The homework title is the top level section (#).

  2. Each homework problem is the next level section(##)

  3. The text following the homework problem is a verbatim copy of the text from the respective problem in bold.

  4. Your detailed explanation is written in normal text, where in-line math mode (single $) or display math mode (double $) is used appropriately.

  5. The final result is displayed in bold.

  6. Code cells that recreate your solution are encouraged (but not required) and are placed just after your detailed explanation.

The next section provides a template to help you see the described style.

Chapter 2#

Problem 1#

Show that the form of Newton’s second law is invariant under the Galilean transformation.

Newton’s second law describes the force \(\vec{F}\) applied on a object with a mass \(m\). The force accelerates the object, which means that the velocity \(\vec{v}\) changes with time. This can be represented mathematically as

\[ \vec{F} = m\frac{d\vec{v}}{dt} = m\frac{d^2\vec{x}}{dt^2}. \]

A Galilean transformation represents a translation between reference frames, and for simplicity, we limit this to one dimension (i.e., \(\vec{x}\rightarrow x\)). Suppose there are two reference frames: a fixed frame \(K\) and a moving frame \(K^\prime\) that slides along the \(x\)-axis at a constant velocity \(v\). Then the Galilean transformation between the frames is

\[x^\prime = x - vt, \]

where the position in the \(K^\prime\) frame is given by \(x^\prime\) after a time \(t\). Newton’s second law in the \(K\) frame is

\[ F = m \frac{d^2x}{dt^2}, \]

and we can find an equivalent expression in the \(K^\prime\) frame through the substitution \(x = x^\prime + vt\) to get

\[ F^\prime = m \frac{d^2}{dt^2}\left(x^\prime + vt\right). \]

First, we evaluate the right hand side to get

\[ \frac{d^2}{dt^2}\left(x^\prime + vt\right) = \frac{d^2x^\prime}{dt^2} + \frac{d^2}{dt^2}\left(vt\right). \]

Since the \(K^\prime\) frame is moving with a constant velocity, then the second derivative of \(vt\) is equal to zero, or

\[ \frac{d^2}{dt^2}\left(vt\right) = \frac{dv}{dt} = 0, \]

because the derivative of a constant is zero. This leaves our transformed version of Newton’s second law as

\[ F^\prime = m\frac{d^2x^\prime}{dt^2}, \]

which is an equivalent form of Newton’s second law in the \(K\) frame. Therefore, Newton’s second law is invariant under the Galilean transformation \((F=F^\prime)\).