@override double pdf(double x) { if (x < 0) { return 0.0; } return math.exp(-1 * x / lambda) / lambda; }