Academic Problem Bank

Interactive Physics Assignments & Labs

Curated problem sets designed for undergraduate and postgraduate physics students. Formulate numerical solutions, execute code directly in your browser, and verify physical outcomes.

Lab 01 • mechanics

Projectile Motion with Quadratic Air Drag

Model aerodynamic deceleration using coupled ODEs

Model the trajectory of a spherical projectile under the influence of gravity and non-linear aerodynamic air resistance.

Governing Equations & Formulation

$$\frac{dx}{dt} = v_x, \quad \frac{dv_x}{dt} = -\frac{c}{m} v_x \sqrt{v_x^2 + v_y^2}$$\n$$\frac{dy}{dt} = v_y, \quad \frac{dv_y}{dt} = -g -\frac{c}{m} v_y \sqrt{v_x^2 + v_y^2}$$

Parameters: Mass $m = 0.145\text{ kg}$, initial speed $v_0 = 45\text{ m/s}$, launch angle $\theta = 45^\circ$, drag constant $c = 0.0015\text{ kg/m}$, $g = 9.81\text{ m/s}^2$.

Starter Solution Ready

                        
Lab 02 • electrodynamics

Electric Field & Equipotential Contours of an Electric Quadrupole

2D electrostatic field line integration and potential mesh computation

Calculate and visualize the 2D electrostatic potential field $\Phi(x, y)$ and field vector gradient $\vec{E} = -\nabla \Phi$ for an arrangement of four point charges in a planar quadrupole configuration.

Governing Equations & Formulation

$$\Phi(\vec{r}) = \frac{1}{4\pi \varepsilon_0} \sum_{i=1}^{N} \frac{q_i}{|\vec{r} - \vec{r}_i|}, \quad \vec{E} = -\nabla \Phi = -\left( \frac{\partial \Phi}{\partial x} \hat{i} + \frac{\partial \Phi}{\partial y} \hat{j} \right)$$

Parameters: Charges $q = \pm 1\text{ nC}$ placed at $(1, 1), (-1, 1), (-1, -1), (1, -1)$. Mesh resolution $200 \times 200$.

Starter Solution Ready

                        
Lab 03 • quantum

Finite Square Well: Bound State Energies via Transcendental Bisection

Numerical root finding for symmetric and antisymmetric quantum wavefunctions

Determine the bound-state energy eigenvalues for a particle of mass $m$ trapped inside a finite 1D square potential well of width $2a$ and depth $V_0$.

Governing Equations & Formulation

$$\xi \tan \xi = \sqrt{\xi_0^2 - \xi^2} \quad \text{(Even Parity)}, \quad -\xi \cot \xi = \sqrt{\xi_0^2 - \xi^2} \quad \text{(Odd Parity)}$$\n$$\text{where } \xi = \frac{a}{\hbar}\sqrt{2m(E + V_0)}, \quad \xi_0 = \frac{a}{\hbar}\sqrt{2m V_0}$$

Parameters: Well half-width $a = 1.0\text{ nm}$, Well depth $V_0 = 10.0\text{ eV}$, electron mass $m_e$.

Starter Solution Ready

                        
Lab 04 • thermo

2D Ising Model Monte Carlo via Metropolis Algorithm

Spontaneous symmetry breaking, magnetization, and phase transition simulation

Simulate the magnetic phase transition in a 2D ferromagnetic square lattice using the Metropolis Monte Carlo algorithm.

Governing Equations & Formulation

$$\mathcal{H} = -J \sum_{\langle i, j \rangle} s_i s_j, \quad \Delta E = 2 J s_i \sum_{\text{neighbors}} s_j$$\n$$P(\text{flip}) = \min\left(1, e^{-\Delta E / k_B T}\right)$$

Parameters: Lattice size $L = 32 \times 32$, Coupling $J = 1.0$, $T_c \approx 2.269$.

Starter Solution Ready