Physlib

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

abbrev

Trajectory q(t)q(t) of a particle

A trajectory qq is a function q:TimeRq: \text{Time} \to \mathbb{R} that maps a time tt to the position of a particle in one spatial dimension.

definition

Velocity v(t)=q˙(t)v(t) = \dot{q}(t) of a trajectory

For a free particle ss and its trajectory q:TimeRq: \text{Time} \to \mathbb{R}, the velocity at time tt is defined as the time derivative of the position function qq at that time, denoted by q˙(t)\dot{q}(t) or dqdt(t)\frac{dq}{dt}(t).

definition

Linear momentum p(t)=mv(t)p(t) = m v(t) of a free particle

For a free particle ss with mass mm and a trajectory q:TimeRq: \text{Time} \to \mathbb{R}, the linear momentum p(t)p(t) at time tt is defined as the product of the particle's mass mm and its velocity v(t)=q˙(t)v(t) = \dot{q}(t): p(t)=mv(t) p(t) = m \cdot v(t)

definition

Kinetic energy E=12mv2E = \frac{1}{2} m v^2 of a free particle

For a free particle ss with mass mm and a trajectory q:TimeRq: \text{Time} \to \mathbb{R}, the kinetic energy at time tt is defined as E=12mv(t)2E = \frac{1}{2} m v(t)^2, where v(t)=q˙(t)v(t) = \dot{q}(t) is the velocity of the particle at that time.

definition

Newton's second law for a free particle mq¨(t)=0m \ddot{q}(t) = 0

Given a free particle ss with mass mm, a trajectory q:TimeRq: \text{Time} \to \mathbb{R}, and a specific time tt, 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 tt is zero, expressed as mq¨(t)=0m \cdot \ddot{q}(t) = 0.

theorem

Newton's Second Law Implies Zero Acceleration for a Free Particle

Given a free particle ss with mass mm and a trajectory q:TimeRq: \text{Time} \to \mathbb{R}, if Newton's second law holds for all time tt (i.e., mq¨(t)=0m \cdot \ddot{q}(t) = 0 for all tt), then the acceleration of the particle is zero for all time tt, such that q¨(t)=0\ddot{q}(t) = 0.

theorem

Zero Acceleration Implies Constant Velocity

For any twice continuously differentiable trajectory q:TimeRq : \text{Time} \to \mathbb{R}, if the second derivative d2qdt2(t)=0\frac{d^2q}{dt^2}(t) = 0 for all tTimet \in \text{Time}, then there exists a constant v0Rv_0 \in \mathbb{R} such that the velocity dqdt(t)=v0\frac{dq}{dt}(t) = v_0 for all tTimet \in \text{Time}.

theorem

Constant velocity implies constant linear momentum

For a free particle ss with mass mm and a trajectory q:TimeRq: \text{Time} \to \mathbb{R}, if there exists a constant v0v_0 such that the velocity v(t)=q˙(t)=v0v(t) = \dot{q}(t) = v_0 for all tt, then there exists a constant pp such that the linear momentum p(t)=mv(t)=pp(t) = m \cdot v(t) = p for all tt.

theorem

Conservation of Linear Momentum for a Free Particle

Consider a free particle ss with mass mm and a trajectory q:TimeRq: \text{Time} \to \mathbb{R} that is twice continuously differentiable (C2C^2). If the particle satisfies Newton's second law mq¨(t)=0m \ddot{q}(t) = 0 for all times tTimet \in \text{Time}, then its linear momentum p(t)=mq˙(t)p(t) = m \dot{q}(t) is conserved. That is, there exists a constant value pRp \in \mathbb{R} such that p(t)=pp(t) = p for all tt.

theorem

Newton's Second Law implies Kinetic Energy Conservation for a Free Particle

Consider a free particle ss with mass mm and a trajectory q:TimeRq: \text{Time} \to \mathbb{R} that is twice continuously differentiable (C2C^2). If qq satisfies Newton's second law for all times tt, such that mq¨(t)=0m \ddot{q}(t) = 0, then there exists a constant value EE such that for all tt, the kinetic energy of the particle, K(t)=12mq˙(t)2K(t) = \frac{1}{2} m \dot{q}(t)^2, is equal to EE.