By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
Oscillations and waves are fundamental concepts in physics that describe the periodic motion of objects and the propagation of energy through a medium. Understanding these concepts is crucial in various fields, including physics, engineering, and materials science.
Oscillations and waves play a significant role in many real-world applications, such as:
Imagine a mass-spring system, where a mass is attached to a spring. When the mass is displaced from its equilibrium position, it experiences a restoring force that pulls it back to the equilibrium position. As the mass oscillates, its acceleration is proportional to its displacement, resulting in SHM.
import numpy as np from scipy.integrate import odeint # Define the model def simple_harmonic_motion(y, t, omega, A): x, v = y dxdt = v dvdt = -omega2 * x return [dxdt, dvdt] # Initial conditions x0 = 1 v0 = 0 t = np.linspace(0, 10, 100) # Solve the ODE y = odeint(simple_harmonic_motion, [x0, v0], t, args=(np.sqrt(2), 1)) # Plot the results import matplotlib.pyplot as plt plt.plot(t, y[:, 0], label='x(t)') plt.plot(t, y[:, 1], label='v(t)') plt.legend() plt.show()
The code above solves the SHM equation using the odeint function from SciPy and plots the position and velocity of the mass as a function of time.
odeint
What is the restoring force in a simple harmonic motion?
A) Proportional to the velocity of the object B) Proportional to the displacement of the object from its equilibrium position C) Proportional to the acceleration of the object D) Constant
B) Proportional to the displacement of the object from its equilibrium position
The restoring force in a simple harmonic motion is proportional to the displacement of the object from its equilibrium position, as described by Hooke's law.
What is the Doppler effect?
A) The change in frequency or pitch of a wave as it moves relative to an observer B) The change in amplitude of a wave as it moves through a medium C) The change in wavelength of a wave as it moves through a medium D) The change in speed of a wave as it moves through a medium
A) The change in frequency or pitch of a wave as it moves relative to an observer
The Doppler effect is the change in frequency or pitch of a wave as it moves relative to an observer, resulting in a shift in the observed frequency.
What is the difference between damped and forced oscillations?
A) Damped oscillations have a constant frequency, while forced oscillations have a changing frequency B) Damped oscillations have a changing frequency, while forced oscillations have a constant frequency C) Damped oscillations have a constant amplitude, while forced oscillations have a changing amplitude D) Damped oscillations have a changing amplitude, while forced oscillations have a constant amplitude
B) Damped oscillations have a changing frequency, while forced oscillations have a constant frequency
Damped oscillations have a changing frequency due to the loss of energy, while forced oscillations have a constant frequency due to the external force.
To master oscillations and waves, follow this learning path:
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.