Week 1 - Notes: Introduction to Classical Mechanics#
How do we formulate Classical Mechanics?#
In the past, you have learned about Newton’s Laws of Motion. These laws are the foundation of classical mechanics. They are used to describe the motion of objects in the universe. In this course, we will use these laws to describe the motion of particles and rigid bodies. As we progress, we will learn other formulations of classical mechanics, such as the Lagrangian and Hamiltonian reformulations.
Newton’s Laws of Motion are a vector formulation of classical mechanics. The laws are as follows:
First Law: An object at rest will remain at rest, and an object in motion will remain in motion at a constant velocity unless acted upon by an external force.
Second Law: The acceleration of an object is directly proportional to the net force acting on it and inversely proportional to its mass. The direction of the acceleration is in the direction of the net force.
Third Law: For every action, there is an equal and opposite reaction.
These are the classic laws of motion that you have learned in other courses. How we formulate these laws mathematically is the subject of this course.
Newton’s Second Law#
Newton’s Second Law provides the mathematical foundation for classical mechanics. It provides a vector relationship between the net force acting on an object and its acceleration. The law is given by the equation:
where \(\vec{F}_{net}\) is the net force acting on the object, \(m\) is the mass of the object, and \(\vec{a}\) is the acceleration of the object. This equation is a vector equation, meaning that it must be satisfied in each direction.
Each push in a Cartesian direction results in a proportional response – an acceleration in the same direction of the net push. Let’s go through a common example to illustrate this relationship.
Example: A Block on an Inclined Ramp#
Consider the box (mass, \(m\)) above on an inclined ramp (angle, \(\theta\)). The box is at rest subject to static friction, \(\mu_s\). What angle of inclination will cause the box to start sliding down the ramp?
We start by drawing the Free Body Diagram (FBD) of the box.
The FBD is a diagram that shows all the forces acting on the object. In this case, the forces acting on the box are:
The force of gravity, \(mg\), acting downwards.
The force due to the ramp, which is both perpendicular to the ramp surface (normal) and parallel to it (friction).
We tilt our coordinate system to align with the ramp. This makes the normal force, \(N\), act in the \(y\)-direction and the frictional force, \(f\), act in the \(x\)-direction. The force of gravity is split into two components: \(mg\sin(\theta)\) and \(mg\cos(\theta)\).
The net force acting on the box is the sum of the forces acting on it, and is zero up to the point where the box starts sliding. At this point, the frictional force is at its maximum value, \(\mu_s N\). Taking the sum of the forces acting on the box in each direction we have:
Thus,
At the point where the box starts sliding, the frictional force is at its maximum value, \(\mu_s N\). Thus, the box starts sliding when:
Substituting the expressions for \(f\) and \(N\) into the equation above, we have:
Solving for \(\theta\):
Thus, the box starts sliding when the angle of inclination is equal to the arctangent of the coefficient of static friction.
Check
We can check this with some numbers. Steel as a static friction coefficient of about 0.16, and rubber is closer to 0.8. Thus, the angle of inclinations for steel and rubber are:
It seems quite reasonable that rubber would have a higher angle of inclination before sliding than steel.
Tip
A few things to note about this problem:
This was a static problem, such that \(\vec{F}_{net} = 0\).
We rotated our coordinate system to align with the ramp. This is a common technique in classical mechanics to simplify the problem.
We still used Cartesian coordinates to solve the problem. This is because the forces could be easily decomposed in the titled coordinate system.
Let’s work an example that is dynamic, where the net force is not zero.
Example: Falling Object in One Dimension#
Consider an object of mass \(m\) falling, but it is subject to air resistance. The free body diagram of the object shows that the forces acting on the object are:
The force of gravity/weight, \(W=mg\), acting downwards.
The force due to air resistance, \(F_{air}\), acting upwards.
Source: ibphysicsguide.weebly.com
Here we have chosen positive \(y\) to be the downward direction. We want to predict the motion (\(a\), \(v\), \(y\)) of the object as a function of time. This is a very common problem for classical mechanics.
Air Drag?#
First, we notice that we do not know the force due to air resistance. We do know that the force is related to the velocity of the object. So let’s start by writing the air resistance force as a function of velocity:
where \(F(v)\) is some function of velocity.
Taylor Series Expansion#
Because we know that the objects move slowly in classical mechanics, we can assume that the function can be expanded using a Taylor Series. In general, the Taylor Series of a function \(f(x)\) about a point \(a\) is given by:
where \(f^{(n)}(a)\) is the \(n\)-th derivative of \(f(x)\) evaluated at \(x=a\). We can write the first few terms out,
Because we know that the object is moving slowly, we can expand the function \(F(v)\) about \(v=0\):
We can assume that the first term is zero, \(F(0)=0\), because there is no air resistance when the object is at rest. Thus, the force due to air resistance is approximately:
We call the first term the linear drag term and the second term the quadratic drag term. The linear drag term is proportional to the velocity of the object, and the quadratic drag term is proportional to the square of the velocity of the object. We also typically replace the evaluated derivatives with constants, \(b\) and \(c\) – because they are constants that depend on the object and the fluid it is moving through. And thus,
Back to Newton’s Second Law#
In the \(y\)-direction, the net force acting on the object is:
And thus, the acceleration of the object is:
This differential equation can be written in a variety of ways. One common way is to write the equation as a second-order differential equation.
Note that this is a nonlinear differential equation (i.e., there’s a \((d^ny/dt^n)^m\) term where \(m > 1\)), which are notoriously difficult to solve in general. We can write it using the dot notation for derivatives (i.e., \(\dot{y} = dy/dt\), \(\ddot{y} = d^2y/dt^2\)):
We can also use the velocity as the independent variable, \(v = \dot{y}\). Both equations below are equivalent:
Tip
A few things to note:
This is a dynamic one-dimensional problem, such that \(\vec{F}_{net} \neq 0\).
This is a nonlinear problem, such that the acceleration is a function of the velocity of the object.
We are stuck with a differential equation that we need to solve, and don’t have a simple algebraic solution (e.g., a simple antiderivative).
How do we solve this equation to find the motion of the object as a function of time? We will come back to this, but solving differential equations is the primary tool of classical mechanics. We will learn how to solve these equations analytically and numerically in this course.