Exponential Distribution

Description

The exponential distribution is for all $x>0$

(1)
\begin{align} P(x)= \lambda e^{-\lambda x}. \end{align}

The Sage cell plots the exponential distribution for $\lambda = 4$.

Sage Cell

Code

l= 4
D  =  l * exp( -l* x)
p1 = D.plot ( xmin = 0 )
p1

Options

None

Tags

Primary Tags: Probability

Secondary Tags: Continuous Distributions: Exponential

Related Cells

None

Attribute

Permalink: http://doc.sagemath.org/pdf/en/reference/probability/probability.pdf

Author: Sage Development Team

Date: 09 Oct 2018 09:29

Submitted by: James A Phillips

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License