Comprehensive Study Notes on Kinematics, Graphical Analysis, and Momentum
Kinematic Position Prediction and Vector Update Rules
Primary Objective: Predict the future position vector of an object based on its initial kinematics and defined time intervals.
Mathematical Definition of Average Velocity:
Vector Direction Equality Rule:
In any vector equation, the vector expression on the left side and the vector expression on the right side must point in the exact same direction.
Multiplying or dividing a vector by a scalar changes the magnitude of the vector, but leaves its direction unchanged (provided the scalar is positive).
Contextual Definition of Initial and Final Labels:
Clock readings ($t$) denote specific instantaneous times.
Time intervals () denote scalar durations ().
The terms "initial" and "final" simply designate the beginning and end of a specific observation time interval.
When transitioning across consecutive time intervals, the final state of the first interval () serves as the initial state of the second interval ().
Physical Modeling & Constant Velocity Assumption:
If intermediate details (such as acceleration, deceleration, or curvature) are unknown, a fundamental kinematic model assuming constant velocity is employed:
Under the constant velocity assumption, the future position is predicted using the position update equation:
Position Prediction Calculation Example:
Interval 1: to .
Position at : .
Calculated average velocity: .
Interval 2 Prediction: to (where ).
Position at :
Solution Validation Protocol:
Component Sign Analysis:
Negative $x$-velocity ($v_x < 0$) requires to shift further left relative to .
Negative $y$-velocity ($v_y < 0$) requires to shift downward relative to .
Positive $z$-velocity ($v_z > 0$) requires to shift forward/positive relative to .
Spatial Diagram Alignment: Verify that calculated coordinate positions logically align with physical spatial boundaries relative to the origin.
Computational Modeling with VPython / GPython:
Vector variables are defined symbolically using the
vector()constructor:r_init = vector(28, -12, 0)v = vector(di, -4, 6)
Time intervals are computed as scalar differences:
dt = 12.21 - 12.18( or ).Position updates are expressed symbolically in standard kinematic syntax:
r_final = r_init + v * dt.Symbolic scripting ensures code readability, clean debugging, and effortless recalculation without manual scalar arithmetic.
Graphical Analysis of Position and Velocity Components
Fundamental Component Graphing Rule:
A full multidimensional vector cannot be plotted on a single 2D Cartesian graph.
Only individual scalar components ($x$, $y$, or $z$) can be plotted against time $t$.
A $y$ vs. $t$ graph yields information solely regarding $y$-velocity ($v_y$) and reveals zero information regarding $x$-axis or $z$-axis motion.
Constant Velocity and Linear Plots:
Equal spatial spacing over equal time intervals on a motion map indicates constant velocity (e.g., a steel ball falling through viscous oil).
A graph of position component versus time for constant velocity produces a straight line.
Data Points vs. Line of Best Fit:
Do not use raw experimental data points to calculate slope due to inherent experimental uncertainty (random measurement scatter).
Slopes must always be calculated using two chosen points lying directly on the line of best fit.
Slope Calculation for Velocity Components:
Sample Oil Measurement: at , and at :
1D Kinematic Graphing (Quadcopter Motion along $x$-axis):
An $x$ vs. $t$ graph represents position component changes over time, not a physical spatial flight path in or .
Region A ( to ): Positive linear slope. .
Region B ( to ): Horizontal line (zero slope). Quadcopter is at rest ().
Region C ( to ): Negative slope. Quadcopter moves left ().
Region D ( to ): Positive linear slope. .
Constructing $v_x$ vs. $t$ Step Functions:
Plotting $v_x$ vs. $t$ converts linear slopes into horizontal constant-value segments across each time block.
Instantaneous vertical jumps between velocity values represent step-function discontinuities.
Discontinuities are mathematical idealizations implying infinite acceleration in zero time, whereas physical systems feature smooth, rounded transitions.
Distinction Between Average and Instantaneous Velocity
Limitations of Average Velocity:
Average velocity () calculated across large time intervals averages out intermediate details such as acceleration, deceleration, or path oscillation.
Example: A complex three-body gravitational system (two stars orbiting each other while a third star oscillates continuously through them) appears as simple net displacement if only sparse endpoint data is evaluated.
Mathematical Definition of Instantaneous Velocity:
Instantaneous velocity () is the limit of average velocity as the time interval approaches zero:
Standard notation convention: without a subscript always denotes instantaneous velocity.
Directional Properties:
Average Velocity Direction: Points parallel to the total net displacement vector between two widely separated points.
Instantaneous Velocity Direction: Always tangent to the trajectory path at any given point in space and time.
Definition of Speed:
Speed ($v$) is the scalar magnitude of instantaneous velocity:
Fundamentals of Momentum and Conserved Quantities
Conserved Quantities in the Universe:
Observations establish that exactly five fundamental physical quantities are conserved throughout the entire universe.
Three of these five fundamental conserved quantities are analyzed in introductory mechanics.
Definition of Momentum:
Momentum () is a fundamental conserved vector quantity defined as the product of mass ($m$) and velocity ():
Directional Characteristics of Momentum:
Because mass $m$ is a positive scalar, the momentum vector points in the exact same direction as the instantaneous velocity vector .
Since instantaneous velocity is tangent to the path of motion, the momentum vector is also always tangent to the path.
Physical Significance:
Momentum is a more fundamental physical quantity than velocity because momentum is conserved universally across closed systems.
Momentum depends directly on mass: an object with large mass (e.g., a heavy truck) possesses far greater momentum than an object with small mass (e.g., a bicycle) traveling at the exact same velocity.
Questions & Discussion
Question: How can sign validation be used to catch vector calculation errors when updating positions?
Response: Compare individual component directions of velocity against spatial shifts. If $v_x$ is negative, must be smaller (further left) than . If $v_y$ is negative, must be lower than . If $v_z$ is positive, must be larger than .
Question: Why should best-fit lines be used instead of experimental data points when calculating slope on position-time graphs?
Response: Experimental data points contain inherent measurement scatter and uncertainty. Calculating slope using points on the best-fit line smooths out scatter and provides an accurate measure of the underlying physical velocity.
Question: On an $x$ vs. $t$ position graph, which region indicates that an object is moving to the left?
Response: Movement to the left corresponds to a negative $x$-velocity ($v_x < 0$), which is represented visually by any region with a negative slope.
Question: What is the key geometric difference between average velocity and instantaneous velocity vectors on a curved path?
Response: Average velocity points along the linear displacement vector connecting two separated points. Instantaneous velocity points strictly tangent to the continuous trajectory path at a specific instant.