One source, every artifact — proved, simulated, and (where it exists) measured.
Saturating clamp (output bounded to [-1, 1])
examples/clamp_bounded.eml · sha256 602c87f60a2a9b9b
crustpythonleanproof ✓ cleansim ✓ holds

The same claim, two ways. The theorem clamp_in_unit_interval proves clamp_unit(x) is always within [-1, 1] for every input x; the sim shows 1.0 ≤ 1.0 (clamp band [-1.0, 1.0]).
PID controller (output clamped to actuator range)
examples/pid_controller.eml · sha256 4d51cd9248714388
crustpythonleanproof ✓ cleansim ✓ holdshardware replay

The same claim, three ways. The theorem pid_output_clamped proves the control output is always within the actuator band [OUT_MIN, OUT_MAX] = [-1, 1]; the sim shows 1.0 ≤ 1.0 (actuator band [-1.0, 1.0]); and the same behavior was measured on real hardware.
RC low-pass filter (τ = R·C, step response)
examples/rc_filter.eml · sha256 ed5acb7a4025d3f1
crustpythonleanproof ✓ cleansim ✓ holdshardware replay

The same claim, three ways. The theorem rc_time_constant_def proves the filter time constant is exactly τ = R·C; the sim shows 0.0068 ≤ 0.01 (settles to Vin within 5τ); and the same behavior was measured on real hardware.
Bounded sine oscillator (|output| ≤ amplitude)
examples/sine_oscillator.eml · sha256 73837d61bea80a15
crustpythonleanproof ✓ cleansim ✓ holds

The same claim, two ways. The theorem sine_oscillator_amplitude_bound proves |A·sin(ωt)| ≤ A for A ∈ [0,1], ω ∈ [0, 1e4], t ≥ 0; the sim shows 0.8 ≤ 0.8 (amplitude bound |·| ≤ 0.8).