Thursday, February 5, 2026
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
32488 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6861 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12071 POSTS0 COMMENTS
Shaida Kate Naidoo
6994 POSTS0 COMMENTS
Ted Musemwa
7234 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6928 POSTS0 COMMENTS