Physlib.ClassicalMechanics.FreeParticle.Basic
The Free Particle
i. Overview
The free particle is one of the simplest systems in classical mechanics: a particle of mass `m` moving with no external forces acting on it. Physically, this means the particle just keeps moving at constant velocity.
In this file, we work in a simple 1D coordinate system where position and velocity are functions of time with values in `ℝ`. This keeps things easy to reason about. A more complete treatment would use manifolds and tangent bundles.
ii. Key results
The main things we show about the free particle are:
In the `Basic` module: - `FreeParticle` stores the mass of the particle. - `NewtonsSecondLaw` encodes the equation `m * q'' = 0`. - `accel_zero` shows that this implies `q'' = 0`. - `velocity_const_of_zero_acc` shows that zero acceleration means velocity is constant. - `energy_conservation_of_equationOfMotion` shows that kinetic energy stays constant over time.
So overall, we formalise the usual chain: Newton’s law → zero acceleration → constant velocity → constant energy.
iii. Table of contents
- A. The setup - B. Equation of motion - B.1. Newton's second law - B.2. Zero acceleration - C. What zero acceleration implies - C.1. Constant velocity - D. Energy - D.1. Kinetic energy - D.2. Energy conservation
iv. References
10 declarations
Trajectory of a particle
A trajectory is a function that maps a time to the position of a particle in one spatial dimension.
Velocity of a trajectory
For a free particle and its trajectory , the velocity at time is defined as the time derivative of the position function at that time, denoted by or .
Linear momentum of a free particle
For a free particle with mass and a trajectory , the linear momentum at time is defined as the product of the particle's mass and its velocity :
Kinetic energy of a free particle
For a free particle with mass and a trajectory , the kinetic energy at time is defined as , where is the velocity of the particle at that time.
Newton's second law for a free particle
Given a free particle with mass , a trajectory , and a specific time , Newton's second law for the free particle is the proposition that the product of the mass and the second time derivative of the trajectory at is zero, expressed as .
Newton's Second Law Implies Zero Acceleration for a Free Particle
Given a free particle with mass and a trajectory , if Newton's second law holds for all time (i.e., for all ), then the acceleration of the particle is zero for all time , such that .
Zero Acceleration Implies Constant Velocity
For any twice continuously differentiable trajectory , if the second derivative for all , then there exists a constant such that the velocity for all .
Constant velocity implies constant linear momentum
For a free particle with mass and a trajectory , if there exists a constant such that the velocity for all , then there exists a constant such that the linear momentum for all .
Conservation of Linear Momentum for a Free Particle
Consider a free particle with mass and a trajectory that is twice continuously differentiable (). If the particle satisfies Newton's second law for all times , then its linear momentum is conserved. That is, there exists a constant value such that for all .
Newton's Second Law implies Kinetic Energy Conservation for a Free Particle
Consider a free particle with mass and a trajectory that is twice continuously differentiable (). If satisfies Newton's second law for all times , such that , then there exists a constant value such that for all , the kinetic energy of the particle, , is equal to .
