We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Day 5: Poisson Distribution I
Day 5: Poisson Distribution I
Sort by
recency
|
104 Discussions
|
Please Login in order to post a comment
meanX = float(input()) value = int(input())
p = ((meanX**value)math.e*(-meanX))/factorial(value)
print("{:.3f}".format(p))
Python Code :
JS