Saturday, September 6, 2025
HomeLanguagessympy.stats.Rademacher() function in Python

sympy.stats.Rademacher() function in Python

The Rademacher distribution is distribution of discrete probability when a random variable has a half probability of being +1 and half probability of being -1. With the help of sympy.stats.Rademacher() method, we can create the random variable having randemacher distribution by using sympy.stats.Rademacher() method.

Syntax : sympy.stats.Rademacher(name)

Return : Return the rademacher distribution.

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




# Import sympy and Rademacher
from sympy.stats import Rademacher, density
  
  
# Using sympy.stats.Rademacher() method
X = Rademacher('X')
gfg = density(X).dict
  
print(gfg)


Output :

{1: 1/2, -1: 1/2}

Example #2 :




# Import sympy and Rademacher
from sympy.stats import Rademacher, density, P
  
  
# Using sympy.stats.Rademacher() method
X = Rademacher('X')
gfg = density(X).dict
  
print(P(gfg >= 0))


Output :

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

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS