LICENSE
README.md
pyproject.toml
mathematicskit.egg-info/PKG-INFO
mathematicskit.egg-info/SOURCES.txt
mathematicskit.egg-info/dependency_links.txt
mathematicskit.egg-info/requires.txt
mathematicskit.egg-info/top_level.txt
mathkit/__init__.py
mathkit/constants.py
mathkit/abstract_algebra/__init__.py
mathkit/abstract_algebra/core/base.py
mathkit/abstract_algebra/systems/__init__.py
mathkit/abstract_algebra/systems/finite_fields.py
mathkit/abstract_algebra/systems/groups.py
mathkit/abstract_algebra/systems/polynomial_ring.py
mathkit/abstract_algebra/systems/subgroups.py
mathkit/abstract_algebra/tests/__init__.py
mathkit/abstract_algebra/tests/test_finite_fields.py
mathkit/abstract_algebra/tests/test_groups.py
mathkit/abstract_algebra/tests/test_polynomial_ring.py
mathkit/abstract_algebra/tests/test_subgroups.py
mathkit/abstract_algebra/tests/test_visualizers.py
mathkit/abstract_algebra/utils/__init__.py
mathkit/abstract_algebra/utils/checks.py
mathkit/abstract_algebra/visualizers/__init__.py
mathkit/abstract_algebra/visualizers/plots.py
mathkit/calculus/__init__.py
mathkit/calculus/core/__init__.py
mathkit/calculus/core/base.py
mathkit/calculus/systems/__init__.py
mathkit/calculus/systems/autodiff.py
mathkit/calculus/systems/dual_numbers.py
mathkit/calculus/systems/finite_differences.py
mathkit/calculus/systems/quadrature.py
mathkit/calculus/systems/taylor_series.py
mathkit/calculus/tests/__init__.py
mathkit/calculus/tests/test_autodiff.py
mathkit/calculus/tests/test_dual_numbers.py
mathkit/calculus/tests/test_finite_differences.py
mathkit/calculus/tests/test_quadrature.py
mathkit/calculus/tests/test_taylor_series.py
mathkit/calculus/tests/test_visualizers.py
mathkit/calculus/utils/__init__.py
mathkit/calculus/utils/series_utils.py
mathkit/calculus/visualizers/__init__.py
mathkit/calculus/visualizers/plots.py
mathkit/combinatorics/__init__.py
mathkit/combinatorics/core/__init__.py
mathkit/combinatorics/core/base.py
mathkit/combinatorics/systems/__init__.py
mathkit/combinatorics/systems/counting.py
mathkit/combinatorics/systems/inclusion_exclusion.py
mathkit/combinatorics/systems/partitions.py
mathkit/combinatorics/systems/pascals_triangle.py
mathkit/combinatorics/systems/special_numbers.py
mathkit/combinatorics/tests/__init__.py
mathkit/combinatorics/tests/test_counting.py
mathkit/combinatorics/tests/test_inclusion_exclusion.py
mathkit/combinatorics/tests/test_partitions.py
mathkit/combinatorics/tests/test_pascals_triangle.py
mathkit/combinatorics/tests/test_special_numbers.py
mathkit/combinatorics/tests/test_visualizers.py
mathkit/combinatorics/utils/__init__.py
mathkit/combinatorics/utils/bell_number.py
mathkit/combinatorics/visualizers/__init__.py
mathkit/combinatorics/visualizers/plots.py
mathkit/fractals_chaos/__init__.py
mathkit/fractals_chaos/core/__init__.py
mathkit/fractals_chaos/core/base.py
mathkit/fractals_chaos/systems/__init__.py
mathkit/fractals_chaos/systems/box_counting.py
mathkit/fractals_chaos/systems/cellular_automata.py
mathkit/fractals_chaos/systems/ifs.py
mathkit/fractals_chaos/systems/lyapunov.py
mathkit/fractals_chaos/systems/mandelbrot_julia.py
mathkit/fractals_chaos/tests/__init__.py
mathkit/fractals_chaos/tests/test_box_counting.py
mathkit/fractals_chaos/tests/test_cellular_automata.py
mathkit/fractals_chaos/tests/test_ifs.py
mathkit/fractals_chaos/tests/test_lyapunov.py
mathkit/fractals_chaos/tests/test_mandelbrot_julia.py
mathkit/fractals_chaos/tests/test_visualizers.py
mathkit/fractals_chaos/utils/__init__.py
mathkit/fractals_chaos/utils/ifs_utils.py
mathkit/fractals_chaos/visualizers/__init__.py
mathkit/fractals_chaos/visualizers/plots.py
mathkit/geometry/__init__.py
mathkit/geometry/core/__init__.py
mathkit/geometry/core/base.py
mathkit/geometry/systems/__init__.py
mathkit/geometry/systems/convex_hull.py
mathkit/geometry/systems/curves.py
mathkit/geometry/systems/intersections.py
mathkit/geometry/systems/polygon.py
mathkit/geometry/systems/triangulation.py
mathkit/geometry/tests/__init__.py
mathkit/geometry/tests/test_convex_hull.py
mathkit/geometry/tests/test_curves.py
mathkit/geometry/tests/test_intersections.py
mathkit/geometry/tests/test_polygon.py
mathkit/geometry/tests/test_triangulation.py
mathkit/geometry/tests/test_visualizers.py
mathkit/geometry/utils/__init__.py
mathkit/geometry/utils/curves_library.py
mathkit/geometry/visualizers/__init__.py
mathkit/geometry/visualizers/plots.py
mathkit/graph_theory/__init__.py
mathkit/graph_theory/core/__init__.py
mathkit/graph_theory/core/base.py
mathkit/graph_theory/systems/__init__.py
mathkit/graph_theory/systems/coloring.py
mathkit/graph_theory/systems/max_flow.py
mathkit/graph_theory/systems/shortest_paths.py
mathkit/graph_theory/systems/spanning_tree.py
mathkit/graph_theory/systems/spectral.py
mathkit/graph_theory/tests/__init__.py
mathkit/graph_theory/tests/test_coloring.py
mathkit/graph_theory/tests/test_generators.py
mathkit/graph_theory/tests/test_graph.py
mathkit/graph_theory/tests/test_max_flow.py
mathkit/graph_theory/tests/test_shortest_paths.py
mathkit/graph_theory/tests/test_spanning_tree.py
mathkit/graph_theory/tests/test_spectral.py
mathkit/graph_theory/tests/test_visualizers.py
mathkit/graph_theory/utils/__init__.py
mathkit/graph_theory/utils/generators.py
mathkit/graph_theory/visualizers/__init__.py
mathkit/graph_theory/visualizers/plots.py
mathkit/integrators/__init__.py
mathkit/integrators/adaptive.py
mathkit/integrators/fixed_step.py
mathkit/integrators/tests/__init__.py
mathkit/integrators/tests/test_integrators.py
mathkit/linalg/__init__.py
mathkit/linalg/core/__init__.py
mathkit/linalg/core/base.py
mathkit/linalg/systems/__init__.py
mathkit/linalg/systems/cholesky.py
mathkit/linalg/systems/eigen.py
mathkit/linalg/systems/iterative.py
mathkit/linalg/systems/lu.py
mathkit/linalg/systems/qr.py
mathkit/linalg/systems/stability.py
mathkit/linalg/systems/svd.py
mathkit/linalg/tests/__init__.py
mathkit/linalg/tests/test_cholesky.py
mathkit/linalg/tests/test_eigen.py
mathkit/linalg/tests/test_iterative.py
mathkit/linalg/tests/test_lu.py
mathkit/linalg/tests/test_qr.py
mathkit/linalg/tests/test_stability.py
mathkit/linalg/tests/test_svd.py
mathkit/linalg/tests/test_visualizers.py
mathkit/linalg/utils/__init__.py
mathkit/linalg/utils/matrix_utils.py
mathkit/linalg/visualizers/__init__.py
mathkit/linalg/visualizers/plots.py
mathkit/number_theory/__init__.py
mathkit/number_theory/core/__init__.py
mathkit/number_theory/core/base.py
mathkit/number_theory/systems/__init__.py
mathkit/number_theory/systems/continued_fractions.py
mathkit/number_theory/systems/crt.py
mathkit/number_theory/systems/diophantine.py
mathkit/number_theory/systems/modular_arithmetic.py
mathkit/number_theory/systems/primality.py
mathkit/number_theory/systems/totient.py
mathkit/number_theory/tests/__init__.py
mathkit/number_theory/tests/test_continued_fractions.py
mathkit/number_theory/tests/test_crt.py
mathkit/number_theory/tests/test_diophantine.py
mathkit/number_theory/tests/test_gcd_lcm.py
mathkit/number_theory/tests/test_modular_arithmetic.py
mathkit/number_theory/tests/test_primality.py
mathkit/number_theory/tests/test_totient.py
mathkit/number_theory/tests/test_visualizers.py
mathkit/number_theory/utils/__init__.py
mathkit/number_theory/utils/gcd_lcm.py
mathkit/number_theory/visualizers/__init__.py
mathkit/number_theory/visualizers/plots.py
mathkit/numerical_analysis/__init__.py
mathkit/numerical_analysis/core/__init__.py
mathkit/numerical_analysis/core/base.py
mathkit/numerical_analysis/systems/__init__.py
mathkit/numerical_analysis/systems/chebyshev.py
mathkit/numerical_analysis/systems/interpolation.py
mathkit/numerical_analysis/systems/regression.py
mathkit/numerical_analysis/systems/root_finding.py
mathkit/numerical_analysis/systems/splines.py
mathkit/numerical_analysis/tests/__init__.py
mathkit/numerical_analysis/tests/test_chebyshev.py
mathkit/numerical_analysis/tests/test_error_analysis.py
mathkit/numerical_analysis/tests/test_interpolation.py
mathkit/numerical_analysis/tests/test_regression.py
mathkit/numerical_analysis/tests/test_root_finding.py
mathkit/numerical_analysis/tests/test_splines.py
mathkit/numerical_analysis/tests/test_visualizers.py
mathkit/numerical_analysis/utils/__init__.py
mathkit/numerical_analysis/utils/error_analysis.py
mathkit/numerical_analysis/visualizers/__init__.py
mathkit/numerical_analysis/visualizers/plots.py
mathkit/ode_dynamics/__init__.py
mathkit/ode_dynamics/core/__init__.py
mathkit/ode_dynamics/core/base.py
mathkit/ode_dynamics/systems/__init__.py
mathkit/ode_dynamics/systems/bifurcations.py
mathkit/ode_dynamics/systems/limit_cycles.py
mathkit/ode_dynamics/systems/logistic_map.py
mathkit/ode_dynamics/systems/phase_portrait.py
mathkit/ode_dynamics/systems/poincare.py
mathkit/ode_dynamics/systems/stability.py
mathkit/ode_dynamics/tests/__init__.py
mathkit/ode_dynamics/tests/test_bifurcations.py
mathkit/ode_dynamics/tests/test_limit_cycles.py
mathkit/ode_dynamics/tests/test_logistic_map.py
mathkit/ode_dynamics/tests/test_phase_portrait.py
mathkit/ode_dynamics/tests/test_poincare.py
mathkit/ode_dynamics/tests/test_stability.py
mathkit/ode_dynamics/tests/test_visualizers.py
mathkit/ode_dynamics/utils/__init__.py
mathkit/ode_dynamics/utils/period_estimation.py
mathkit/ode_dynamics/visualizers/__init__.py
mathkit/ode_dynamics/visualizers/plots.py
mathkit/optimization/__init__.py
mathkit/optimization/core/__init__.py
mathkit/optimization/core/base.py
mathkit/optimization/systems/__init__.py
mathkit/optimization/systems/conjugate_gradient.py
mathkit/optimization/systems/constrained.py
mathkit/optimization/systems/gradient_descent.py
mathkit/optimization/systems/linear_programming.py
mathkit/optimization/systems/newton_quasi_newton.py
mathkit/optimization/tests/__init__.py
mathkit/optimization/tests/test_comparison.py
mathkit/optimization/tests/test_conjugate_gradient.py
mathkit/optimization/tests/test_constrained.py
mathkit/optimization/tests/test_gradient_descent.py
mathkit/optimization/tests/test_linear_programming.py
mathkit/optimization/tests/test_newton_quasi_newton.py
mathkit/optimization/tests/test_visualizers.py
mathkit/optimization/utils/__init__.py
mathkit/optimization/utils/comparison.py
mathkit/optimization/utils/line_search.py
mathkit/optimization/utils/test_functions.py
mathkit/optimization/visualizers/__init__.py
mathkit/optimization/visualizers/plots.py
mathkit/probability/__init__.py
mathkit/probability/core/__init__.py
mathkit/probability/core/base.py
mathkit/probability/systems/__init__.py
mathkit/probability/systems/continuous.py
mathkit/probability/systems/discrete.py
mathkit/probability/systems/limit_theorems.py
mathkit/probability/systems/markov_chain.py
mathkit/probability/systems/monte_carlo.py
mathkit/probability/tests/__init__.py
mathkit/probability/tests/test_continuous.py
mathkit/probability/tests/test_discrete.py
mathkit/probability/tests/test_limit_theorems.py
mathkit/probability/tests/test_markov_chain.py
mathkit/probability/tests/test_monte_carlo.py
mathkit/probability/tests/test_visualizers.py
mathkit/probability/utils/__init__.py
mathkit/probability/utils/diagnostics.py
mathkit/probability/visualizers/__init__.py
mathkit/probability/visualizers/plots.py
mathkit/special_functions/__init__.py
mathkit/special_functions/core/__init__.py
mathkit/special_functions/core/base.py
mathkit/special_functions/systems/__init__.py
mathkit/special_functions/systems/bessel.py
mathkit/special_functions/systems/fourier_transform.py
mathkit/special_functions/systems/gamma_beta.py
mathkit/special_functions/systems/orthogonal_polynomials.py
mathkit/special_functions/tests/__init__.py
mathkit/special_functions/tests/test_bessel.py
mathkit/special_functions/tests/test_fourier_transform.py
mathkit/special_functions/tests/test_gamma_beta.py
mathkit/special_functions/tests/test_orthogonal_polynomials.py
mathkit/special_functions/tests/test_visualizers.py
mathkit/special_functions/utils/__init__.py
mathkit/special_functions/utils/orthogonality.py
mathkit/special_functions/visualizers/__init__.py
mathkit/special_functions/visualizers/plots.py
mathkit/statistics/__init__.py
mathkit/statistics/core/__init__.py
mathkit/statistics/core/base.py
mathkit/statistics/systems/__init__.py
mathkit/statistics/systems/bootstrap.py
mathkit/statistics/systems/confidence_intervals.py
mathkit/statistics/systems/descriptive.py
mathkit/statistics/systems/hypothesis_tests.py
mathkit/statistics/systems/regression.py
mathkit/statistics/tests/__init__.py
mathkit/statistics/tests/test_bootstrap.py
mathkit/statistics/tests/test_confidence_intervals.py
mathkit/statistics/tests/test_descriptive.py
mathkit/statistics/tests/test_effect_size.py
mathkit/statistics/tests/test_hypothesis_tests.py
mathkit/statistics/tests/test_regression.py
mathkit/statistics/tests/test_visualizers.py
mathkit/statistics/utils/__init__.py
mathkit/statistics/utils/effect_size.py
mathkit/statistics/visualizers/__init__.py
mathkit/statistics/visualizers/plots.py
mathkit/tests/__init__.py
mathkit/tests/test_package.py