Compute probabilities and expectations from life tables
A life table fragment is given and you must compute t-year survival probability, deferred mortality probability, or expected curtate life.
Read the l_x values directly: t_p_x = l_{x+t} / l_x and t_q_x = 1 - t_p_x. For deferred probability t|u_q_x = t_p_x · u_q_{x+t}. For curtate expectation e_x = Σ_{k=1}^{∞} k_p_x. Use the table's native age progression and don't interpolate unless you must.
t_p_x = l_{x+t} / l_x; e_x = Σ_{k≥1} k_p_x.