Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Spirograph was a popular toy when I was a child. It consists of two interlocking gears of different sizes; the larger wheel is pinned to

image text in transcribedimage text in transcribed

Spirograph was a popular toy when I was a child. It consists of two interlocking gears of different sizes; the larger wheel is pinned to the drawing board while the smaller one rotates around the outside (or inside) of the larger. A pen, placed in a hole some distance from the center of the small wheel, traces out geometric patterns called epitrochoids (outside) and hypotrochoids (inside). Planetary motion in the long lived (over 1500 years) Ptolemaic model was described by epitrochoids. The goal of this project is to program a Python script to draw epitrochoids and hypotrochoids using the matplotlib.pyplot module. The figures are defined by three parameters: the radii of the circles, R and r, and the distance of the pen from the center of the small circle, d. Illustrations can be found here and here. The curves can be traced out by incrementing the polar angle in the following expressions: x(O)=(R+r)cose-d cos Epitrochoids y(0)=(R+r) sino-d sin x(O)=(R-r)cos +d cos Hypotrochoids y(0)=(R-r)sin 0-dsin Write a python function to draw either an epitrochoid or an hypotrochoid for given values of the parameters R, r, and d. The selection of the figure (epitrochoid or hypotrochoid) should be an additional input argument to the function along with the number of circles. The script must not contain any numpy functions or other modules such as drawing modules, such as turtle. Plot 4 different figures (two epitrochoids and two hypotrochoids). Submit a python file that will plot all 4 figures you wish to have graded in a single frame using the module matplotlib.pyplot. subplot () If you want to make really nice plots you need to have an exact number of cycles (multiples of 21) so that both circles complete at the same value of 0. The formula for N (number of cycles) is N = lcm(R,r)/R, where the lowest common multiplier can be found from the formula using the greatest common divider: lcm (m, n) = m*n/ged (m, n) gcd is part of the math library (but lcm is not). Bonus assignment: The Spirograph toy included a ruler shape (as well as circles). The edge of the ruler could be defined by straight lines y=+d spanning the range 0

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started