Problem 1

Physics Lab Report

Problem 1: Measuring Earth's Gravitational Acceleration with a Pendulum


Objective

The aim is to estimate Earth's gravitational acceleration \( g \) using a simple pendulum and analyze how uncertainties in measurement affect the final result. This classic physics experiment demonstrates the relationship between pendulum period and gravitational pull using the formula:

\[ g = \frac{4\pi^2 L}{T^2} \]

Where: - \( L \) is the length of the pendulum - \( T \) is the time period of one complete oscillation


🧪 Materials & Setup

  • String Length: ~1.00 m
  • Pendulum Mass: Any small weight (e.g., keys, washers)
  • Timer: Stopwatch or phone timer
  • Length Measurement Tool: Ruler or tape (±0.5 cm typical resolution)
  • The pendulum is released at a small angle (<15°) and swings freely.

📏 Measurements

We perform 10 independent trials, each recording the time for 10 oscillations. This reduces the error caused by human timing.

# Measurement Data: 10 trials of 10 oscillations each
T_10_trials = np.array([20.0, 20.1, 19.9, 20.0, 20.2, 20.0, 19.8, 20.1, 20.0, 19.9])

From this data: - Compute mean \( \bar{T}_{10} \) - Find period \( T = \bar{T}_{10} / 10 \) - Compute standard deviation to estimate uncertainty


Analysis of Range

1. Measuring Period from 10 Oscillations:

Take 10 measurements of the time for 10 full oscillations:

\[ \overline{T}_{10} = \frac{1}{n} \sum_{i=1}^{n} T_{10,i} \]

Convert to a single oscillation:

\[ T = \frac{\overline{T}_{10}}{10} \]

2. Uncertainty in Time:

Calculate standard deviation:

\[ \sigma_T = \sqrt{ \frac{1}{n-1} \sum_{i=1}^{n} (T_{10,i} - \overline{T}_{10})^2 } \]

Uncertainty in the average time:

\[ \Delta T_{10} = \frac{\sigma_T}{\sqrt{n}} \]

Uncertainty in period:

\[ \Delta T = \frac{\Delta T_{10}}{10} \]

3. Uncertainty in Length:

If ruler resolution is 1 mm:

\[ \Delta L = \frac{0.001}{2} = 0.0005 \, \text{m} \]

4. Propagated Uncertainty in \(\(g\)\):

\[ \Delta g = g \sqrt{ \left( \frac{\Delta L}{L} \right)^2 + \left( 2 \cdot \frac{\Delta T}{T} \right)^2 } \]

Practical Applications

  • Engineering: Accurate value of \(\(g\)\) is needed for structure analysis and load design.
  • Geophysics: Differences in \(\(g\)\) can reveal subsurface features.
  • Planetary Science: Similar pendulum experiments can be used on other planets.

Additional Formulas:

For other planets:

\[ g_{planet} = \frac{4\pi^2 L}{T_{planet}^2} \]

To design a pendulum of a specific period:

\[ L = \frac{g T^2}{4\pi^2} \]

Implementation with Python Simulation

alt text

Here’s a Python code that simulates data collection, uncertainty propagation, and generates plots for the error convergence in the calculation

alt text

alt text

alt text

alt text Explanation: This plot shows the direct relationship between pendulum length and period. As length increases, the period increases following the square-root function.

alt text Explanation: This simulates the angular displacement of the pendulum bob over time assuming small angle approximation. It shows classic simple harmonic motion.

Conclusion

In this experiment, we used the periodic motion of a simple pendulum to measure the gravitational acceleration \(\(g\)\) near the Earth's surface. By timing 10 full oscillations and averaging across multiple trials, we minimized random errors and applied uncertainty propagation techniques to estimate the reliability of our results.