Thursday, November 20, 2025
HomeLanguagessympy.stats.Poisson() in Python

sympy.stats.Poisson() in Python

With the help of sympy.stats.Poisson() method, we can get the random variable representing the poisson distribution.

Syntax : sympy.stats.Poisson(name, lambda)
Return : Return the random variable.

Example #1 :
In this example we can see that by using sympy.stats.Poisson() method, we are able to get the random variable representing poisson distribution by using this method.




# Import sympy and poisson
from sympy.stats import Poisson, density, E, variance
from sympy import Symbol, simplify
  
# Using sympy.stats.Poisson() method
rate = Symbol("lambda", positive = True)
X = Poisson("x", rate)
gfg = density(X)(4)
  
print(gfg)


Output :

lambda**4*exp(-lambda)/24

Example #2 :




# Import sympy and poisson
from sympy.stats import Poisson, density, E, variance
from sympy import Symbol, simplify
  
# Using sympy.stats.Poisson() method
rate = Symbol("lambda", positive = True)
X = Poisson("x", rate)
gfg = density(X)(6)
  
print(gfg)


Output :

lambda**6*exp(-lambda)/720

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32404 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6776 POSTS0 COMMENTS
Nicole Veronica
11925 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11994 POSTS0 COMMENTS
Shaida Kate Naidoo
6905 POSTS0 COMMENTS
Ted Musemwa
7160 POSTS0 COMMENTS
Thapelo Manthata
6861 POSTS0 COMMENTS
Umr Jansen
6846 POSTS0 COMMENTS