weibull_summary
Given Weibull two-parameter (β, η), return all the closed-form summary statistics: MTTF (η·Γ(1+1/β)), B10 / B50 / B90 life, characteristic life (just η, surfaced explicitly), and — if evaluateAtT supplied — R(t), F(t), and hazard h(t) at that time. Pure-math, fully deterministic. Use when the user has a fit and wants the numbers downstream tools normally compute (don't recompute these from training-data recall — call this tool). ANTI-FABRICATION: every number is an exact closed-form value. Quote verbatim.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| eta | Yes | Weibull characteristic life η, in your chosen time unit. | |
| beta | Yes | Weibull shape parameter β (dimensionless). | |
| evaluateAtT | No | Optional time t (same unit as η) at which to also return reliability R(t), failure F(t), and hazard h(t). |