MENU

Fun & Interesting

Circular Madness.

Flammable Maths 19,087 3 years ago
Video Not Working? Fix It Now

Check out the newest video over on @RockHardWoodDaddy of the Series "Mathematics for Woodworkers" for full context! :) https://youtu.be/YLW7vmat5Og 6.9% off all Handcrafted products, puzzles and more! :0 https://stemerch.eu/collections/handmade-by-stemerch-eu 10-15% off ALL my Merch using the code SINEP at checkout! :D https://papaflammy.myteespring.co/ New Advent Calendar Deals Every Day over on https://stemerch.com/ :3 Advent Calendar 2021 Playlist: https://www.youtube.com/watch?v=AXlJZs9m2zA&list=PLN2B6ZNu6xmcP-L92Mj9bHREU3Eppang2 Python Code for the Real Life application: https://trinket.io/python/972253cc9e Today we deal with a problem from my channel @RockHardWoodDaddy where we need to approximate a circle in the most efficient way using boards of wood, aka. rectangles. All of the generalization will lead us to spicy Riemann sums and an Integral in disguise. Enjoy! =D Python Code: import math boards=int(input('Number of Boards? ')) diameter=int(input('Diameter of Table? ')) r=diameter/2 n=boards A=0 if n%2==0: for i in range(0, n // 2 + 1): A += r * math.sqrt(1 - (2 * i / n) ** 2) * 2 * r / n else: for i in range(0,(n-1)//2+1): A+=2*r**2/n*(math.sqrt(1-((2*i-1)/n)**2)) A+=2*r**2/n print('Appr. Area is '+str(A*4)) print('Exact Area is '+str(math.pi * r**2)) Help me create more free content! =) https://stemerch.com/ https://www.patreon.com/mathable https://papaflammy.myteespring.co/ Merch :v - https://papaflammy.myteespring.co/ https://www.amazon.com/shop/flammablemaths https://shop.spreadshirt.de/papaflammy Become a Member of the Flammily! :0 https://www.youtube.com/channel/UCtAIs1VCQrymlAnw3mGonhw/join 2nd Channel: https://www.youtube.com/channel/UCnyZe3jFb27omDvOlR5BhZA -------------------------------------------------------------------------------- Wanna send me some stuff? lel: Postfach 11 15 06731 Bitterfeld-Wolfen Saxony-Anhalt Germany -------------------------------------------------------------------------------- Twitter: https://twitter.com/FlammableMaths Instagram: https://www.instagram.com/uncomfortably_cursed_mathmemes/ Flammy's subreddit: https://www.reddit.com/r/FlammyBois Facebook: https://www.facebook.com/flammablemaths/ Want to know more about me? Watch my QnA! =D https://youtu.be/IjCWSDBI9Zc 0:00 What's the Problem? 3:15 n Even 7:53 n Odd 12:31 Generalization 17:48 Riemann Would Be Proud 25:35 Numerical Validation

Comment