Susceptible
Students without the means to independently fund higher education.
Computational research · Mathematical modeling
An interactive implementation of an SEIR-inspired system that reframes debt as a progression through four population states—from financial vulnerability to repayment.
The model
The research adapts the structure of an epidemiological SEIR model to represent stages in a student borrower's financial journey.
Students without the means to independently fund higher education.
Borrowers who have entered the student-loan system.
Borrowers experiencing a financially burdensome level of debt.
Borrowers who have completed repayment and exited the debt system.
Interactive experiment
Change a transition rate, run the simulation, and compare how the timing and scale of debt burden respond.
Proportion of the modeled population over time
The chart library could not load. Check your connection and refresh the page.
Under the hood
One-stage differential system
dS/dt = −βSI
dE/dt = βSI − σE
dI/dt = σE − γI
dR/dt = γI
The implementation evaluates these coupled equations with a fourth-order Runge–Kutta solver while preserving a normalized population.
Convert the mathematical state transitions into testable JavaScript functions.
Advance the system in small time steps and capture every population trajectory.
Turn model output into an interactive chart and decision-friendly summary metrics.
Research context
The broader research extends this one-stage demonstration into multi-stage exposure models, reproduction-number analysis, vital dynamics, parameter estimation, and potential work with real-world data.