Skip to content

Add surface area class #2183

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jul 6, 2020
Merged
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 31 additions & 2 deletions maths/area.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,34 @@
"""
Find the area of various geometric shapes
"""
from math import pi
from typing import Union

import math

def surface_area_cube(side_length: Union[int, float]) -> float:
"""
Calculate the Surface Area of a Cube.

>>> surface_area_cube(1)
6.0
>>> surface_area_cube(3)
54.0
"""
return 6 * pow(side_length, 2)


def surface_area_sphere(radius: float) -> float:
"""
Calculate the Surface Area of a Sphere.
Wikipedia reference: https://en.wikipedia.org/wiki/Sphere
:return 4 * pi * r^2

>>> vol_sphere(5)
314.1592653589793
>>> vol_sphere(1)
12.566370614359172
"""
return 4 * pi * pow(radius, 2)


def area_rectangle(base, height):
Expand Down Expand Up @@ -62,7 +88,7 @@ def area_circle(radius):
>> area_circle(20)
1256.6370614359173
"""
return math.pi * radius * radius
return pi * radius * radius


def main():
Expand All @@ -73,6 +99,9 @@ def main():
print(f"Parallelogram: {area_parallelogram(10, 20)=}")
print(f"Trapezium: {area_trapezium(10, 20, 30)=}")
print(f"Circle: {area_circle(20)=}")
print("Surface Areas of various geometric shapes: \n")
print(f"Cube: {surface_area_cube(20)=}")
print(f"Sphere: {surface_area_sphere(20)=}")


if __name__ == "__main__":
Expand Down