feat: binomial distribution

This commit is contained in:
2025-11-18 01:52:08 +01:00
parent ac1ddfb98b
commit b1837e1c3b
2 changed files with 39 additions and 1 deletions

View File

@@ -3,11 +3,17 @@ from sympy import diff, limit, oo, symbols
from modules.math import (
test_math_module
)
from modules.probability import (
test_probability_module
)
from modules.strings import t_strings
if __name__=="__main__":
t_strings()
print(">> Math module")
test_math_module()
# test_math_module()
print(">>>>>>>>>>>>>>>>>>>>")
print(">> Probability module")
test_probability_module()
print(">>>>>>>>>>>>>>>>>>>>")