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:     vavg=ΔrΔt=rfinalrinitialtfinaltinitial\vec{v}_{\text{avg}} = \frac{\Delta \vec{r}}{\Delta t} = \frac{\vec{r}_{\text{final}} - \vec{r}_{\text{initial}}}{t_{\text{final}} - t_{\text{initial}}}

  • 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 (Δt\Delta t) denote scalar durations (Δt=tfinaltinitial\Delta t = t_{\text{final}} - t_{\text{initial}}).

    • 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 (t1t2t_1 \rightarrow t_2) serves as the initial state of the second interval (t2t3t_2 \rightarrow t_3).

  • 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:         vavg=constant\vec{v}_{\text{avg}} = \text{constant}

    • Under the constant velocity assumption, the future position is predicted using the position update equation:         rfinal=rinitial+vavgΔt\vec{r}_{\text{final}} = \vec{r}_{\text{initial}} + \vec{v}_{\text{avg}} \Delta t

  • Position Prediction Calculation Example:

    • Interval 1: t=0st = 0\,\text{s} to t=2st = 2\,\text{s}.

    • Position at t=2st = 2\,\text{s}: rinitial=0.7,0.3,0.4m\vec{r}_{\text{initial}} = \langle -0.7, 0.3, 0.4 \rangle\,\text{m}.

    • Calculated average velocity: vavg=0.6,0.4,0.3m/s\vec{v}_{\text{avg}} = \langle -0.6, -0.4, 0.3 \rangle\,\text{m/s}.

    • Interval 2 Prediction: t=2st = 2\,\text{s} to t=4st = 4\,\text{s} (where Δt=4s2s=2s\Delta t = 4\,\text{s} - 2\,\text{s} = 2\,\text{s}).

    • Position at t=4st = 4\,\text{s}:         r(4s)=0.7,0.3,0.4m+0.6,0.4,0.3m/s×2s\vec{r}(4\,\text{s}) = \langle -0.7, 0.3, 0.4 \rangle\,\text{m} + \langle -0.6, -0.4, 0.3 \rangle\,\text{m/s} \times 2\,\text{s}         r(4s)=0.7,0.3,0.4m+1.2,0.8,0.6m=1.9,0.5,1.0m\vec{r}(4\,\text{s}) = \langle -0.7, 0.3, 0.4 \rangle\,\text{m} + \langle -1.2, -0.8, 0.6 \rangle\,\text{m} = \langle -1.9, -0.5, 1.0 \rangle\,\text{m}

  • Solution Validation Protocol:

    • Component Sign Analysis:

      • Negative $x$-velocity ($v_x < 0$) requires xfinalx_{\text{final}} to shift further left relative to xinitialx_{\text{initial}}.

      • Negative $y$-velocity ($v_y < 0$) requires yfinaly_{\text{final}} to shift downward relative to yinitialy_{\text{initial}}.

      • Positive $z$-velocity ($v_z > 0$) requires zfinalz_{\text{final}} to shift forward/positive relative to zinitialz_{\text{initial}}.

    • 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 (dt=0.03sdt = 0.03\,\text{s} or 0.02s0.02\,\text{s}).

    • 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:     slope=ΔyΔt=yfinalyinitialtfinaltinitial=vy\text{slope} = \frac{\Delta y}{\Delta t} = \frac{y_{\text{final}} - y_{\text{initial}}}{t_{\text{final}} - t_{\text{initial}}} = v_y

    • Sample Oil Measurement: y1=3.0cmy_1 = 3.0\,\text{cm} at t1=1.2st_1 = 1.2\,\text{s}, and y2=0.25cmy_2 = 0.25\,\text{cm} at t2=2.2st_2 = 2.2\,\text{s}:         vy=0.25cm3.0cm2.2s1.2s=2.75cm1.0s=2.75cm/sv_y = \frac{0.25\,\text{cm} - 3.0\,\text{cm}}{2.2\,\text{s} - 1.2\,\text{s}} = \frac{-2.75\,\text{cm}}{1.0\,\text{s}} = -2.75\,\text{cm/s}

  • 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 2D2\text{D} or 3D3\text{D}.

    • Region A (0s0\,\text{s} to 10s10\,\text{s}): Positive linear slope. vx=60m0m10s0s=+6m/sv_x = \frac{60\,\text{m} - 0\,\text{m}}{10\,\text{s} - 0\,\text{s}} = +6\,\text{m/s}.

    • Region B (10s10\,\text{s} to 30s30\,\text{s}): Horizontal line (zero slope). Quadcopter is at rest (vx=0m/sv_x = 0\,\text{m/s}).

    • Region C (30s30\,\text{s} to 45s45\,\text{s}): Negative slope. Quadcopter moves left (vx=20m15s=1.33m/sv_x = \frac{-20\,\text{m}}{15\,\text{s}} = -1.33\,\text{m/s}).

    • Region D (45s45\,\text{s} to 60s60\,\text{s}): Positive linear slope. vx=100m40m60s45s=60m15s=+4m/sv_x = \frac{100\,\text{m} - 40\,\text{m}}{60\,\text{s} - 45\,\text{s}} = \frac{60\,\text{m}}{15\,\text{s}} = +4\,\text{m/s}.

  • 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 (vavg=ΔrΔt\vec{v}_{\text{avg}} = \frac{\Delta \vec{r}}{\Delta t}) 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 (v\vec{v}) is the limit of average velocity as the time interval Δt\Delta t approaches zero:         v=limΔt0ΔrΔt\vec{v} = \lim_{\Delta t \rightarrow 0} \frac{\Delta \vec{r}}{\Delta t}

    • Standard notation convention: v\vec{v} without a subscript always denotes instantaneous velocity.

  • Directional Properties:

    • Average Velocity Direction: Points parallel to the total net displacement vector Δr=r<em>finalr</em>initial\Delta \vec{r} = \vec{r}<em>{\text{final}} - \vec{r}</em>{\text{initial}} 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:         v=vv = ||\vec{v}||

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 (p\vec{p}) is a fundamental conserved vector quantity defined as the product of mass ($m$) and velocity (v\vec{v}):         p=mv\vec{p} = m \vec{v}

  • Directional Characteristics of Momentum:

    • Because mass $m$ is a positive scalar, the momentum vector p\vec{p} points in the exact same direction as the instantaneous velocity vector v\vec{v}.

    • Since instantaneous velocity is tangent to the path of motion, the momentum vector p\vec{p} 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, xfinalx_{\text{final}} must be smaller (further left) than xinitialx_{\text{initial}}. If $v_y$ is negative, yfinaly_{\text{final}} must be lower than yinitialy_{\text{initial}}. If $v_z$ is positive, zfinalz_{\text{final}} must be larger than zinitialz_{\text{initial}}.

  • 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.