About The Project
Algorithms
How to Install
How to update to latest version
How to Import
school_algorithms is a Python module for secondary school maths and physics equations. It aims to provide a simple way for secondary school students to learn and calculate equations that they often use.
- A function that calculates power from energy and time
- A function that calculates energy from power and time
- A function that calculates time from power and energy
- A function that calculates Elastic Potential energy from the spring constant and extension
- A function that calculates Kinetic Energy from spead and mass
- A function that uses Pythagorean theorem to calculate the hypotenuse of a right-angled triangle
- A function that uses Pythagorean theorem to calculate a leg of a right-angled triangle
- A function that calculates the area of a triangle
- A function that calculates the area of a trapezium
- A function that calculates the volume of a right rectangle pyramid
- A function that calculates the area of a circle
- A function that calculates the circumference of a circle
- A function that calculates the circumference of a circle using diameter
- A function that calculates the area of a sector in a circle
- A function that calculates the volume of a square based pyramid
- A function that calculates the Lowest Common Multiple from 2 numbers
- A function that calculates the Lowest Common Multiple from 3 numbers
- A function that calculates the Lowest Common Multiple from 4 numbers
- A function that calculates the Lowest Common Multiple from 5 numbers
>>> python3 -m pip install school_algorithms
>>> python3 -m pip --upgrade school_algorithms
>>> import school_algorithms
>>> import school_algorithms
>>> x = 42
>>> x = x + 1
>>> help(school_algorithms.power_calc)