Math Problem Statement

what lnaguage is this:print("Parametric Plot (here 3 functions)")

for graphing parametric equations ( 2 functions with a common variable implying a relation between the 2 functions )

3 plots all controlled by the parameter t

t = var("t") # our parameter

ll = -1. * pi # lower limit of graph

ul = 1. * pi # upper limit of graph

parametric_plot( x axis function, y axis function ) , ( parametric variable, min value, max value ), other plot args )

p1 = parametric_plot((cos(t),sin(t)), (t, ll, ul), rgbcolor=hue(0.2))

p2 = parametric_plot((cos(t),sin(t)^4), (t, ll, ul), rgbcolor=hue(0.4))

p3 = parametric_plot((cos(t),sin(t)^8), (t, ll, ul), rgbcolor=hue(0.6))

show(p1 + p2 + p3, axes=false)

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Parametric Equations
Trigonometric Functions
Plotting

Formulas

-

Theorems

-

Suitable Grade Level

Advanced High School or College