Você está na página 1de 8

Practical-3

rd
Sketching parametric curves.
Parametric Curve-: Suppose that x and y are both given as functions of a third variable t (called a
parameter) by the equations
x =f(t), y =g(t) (calledparametric equations).
Each value of t determine a point (x, y), which we can plot in a coordinate plane. As t varies, the point (x, y) =
(f(t), g(t)) varies and traces out a curve C, which we call aparametric curve.
Command-:(1) ParametricPlot]]f
x
, f
y
), {u, u
min
, u
max
}
generates a parametric plot of a curve with x and y coordinates f
x
and f
y
as a function
of u.
Question:-1 Sketch the curve defined by the following parametric equations
x = Cos[t], y = Sin[t] 0 t 2 or { t, 0, 2Pi }.
Solution-:
ParametricPlot[{Cos[t], Sin[t]}, {t, 0, 2 Pi}]
1.0 0.5 0.5 1.0
1.0
0.5
0.5
1.0
Using PlotStyle, PlotLabel, AxesLabel.
ParametricPlot[{Cos[t], Sin[t]}, {t, 0, 2 Pi},
PlotStyle {Red, Thick}, PlotLabel Circle, AxesLabel {"x", "y"}]
1.0 0.5 0.5 1.0
x
1.0
0.5
0.5
1.0
y
Circle
Question:-2 Sketch the curve defined by the following parametric equations
x = Sin[u], y= Sin[2u] for {u, 0, 2Pi }.
Solution-:
ParametricPlot[{Sin[u], Sin[2 u]}, {u, 0, 2 Pi},
PlotStyle {Green, Thickness[0.03]}, PlotLabel "Curve", AxesLabel {"x", "y"}]
1.0 0.5 0.5 1.0
x
1.0
0.5
0.5
1.0
y
Curve
Question:-3 Sketch the curve defined by the following parametric equations
x = r^2*Sqrt[ t ] Cos[ t ],
y = r^2*Sin[ t ] , { t, 0, 3Pi}
and {r, 1, 2}.
Solution-:
ParametricPlot[{r^2 Sqrt[t] Cos[t], r^2 Sin[t]}, {t, 0, 3 Pi / 2}, {r, 1, 2},
PlotStyle {Red, Thick}, PlotLabel "Curve", AxesLabel {"x", "y"}]
6 4 2 0 2
4
2
0
2
4
x
y
Curve
OR
ParametricPlot[{ r^2 Sqrt[t] Cos[t], r^2 Sin[t]}, {t, 0, 3 Pi / 2}, {r, 1, 2},
Mesh False, PlotStyle {Cyan, Thickness[0.02]}, AxesLabel {x, y}]
6 4 2 0 2
4
2
0
2
4
x
y
Question:-4 Sketch the curve defined by the following parametric equations
x = 2 Cos[ t ],
y = Sin[ t ], { t, 0, 2Pi }.
Solution-:
2 P-3_1st_Sem-13C ParametricPlot.nb
ParametricPlot[{2 Cos[t], Sin[t]}, {t, 0, 2 Pi},
PlotStyle {Red, Thickness[0.03]}, PlotLabel "Ellipse", AxesLabel {"x", "y"}]
2 1 1 2
x
1.0
0.5
0.5
1.0
y
Ellipse
Question:-5 Sketch the curve defined by the following parametric equations
x = t*Cos[t], y = t*Sin[t] { t, 1, 3Pi }
Solution-:
ParametricPlot[{t Cos[t], t Sin[t]}, {t, 0, 3 Pi},
PlotStyle {Green, Thickness[0.03]}, PlotLabel "Spiral", AxesLabel {"x", "y"}]
5 5
x
4
2
2
4
6
8
y
Spiral
Question:-6 Sketch the curve defined by the following parametric equations
x = t*Cos[t], y = t*Sin[t] { t, 1, 4Pi }
Solution-:
ParametricPlot[{t Cos[t], t Sin[t]}, {t, 0, 4 Pi},
PlotStyle {Red, Thickness[0.03]}, PlotLabel "Spiral", AxesLabel {"x", "y"}]
5 5 10
x
10
5
5
y
Spiral
Question:-7 Sketch the curve defined by the following parametric equations
x = Cos[u]/(u+1), y = Sin[u]/(u+1) { u, 0, 4Pi }
Solution-:
P-3_1st_Sem-13C ParametricPlot.nb 3
ParametricPlot[{Cos[u] / (u 1), Sin[u] / (u 1)},
{u, 0, 2 Pi}, AxesLabel {x, y}, PlotStyle {Blue, Thickness[0.03]}]
0.2 0.2 0.4 0.6 0.8 1.0
x
0.1
0.1
0.2
0.3
0.4
y
Question:-8 Sketch the curve defined by the following parametric equations
x = Exp[u]*Cos[u], y = Exp[u]*Sin[u] { u, 0, 10 }
Solution-:
ParametricPlot[{Exp[u] Cos[u], Exp[u] Sin[u]}, {u, 0, 10},
PlotStyle {Magenta, Thickness[0.04]}, AxesLabel {x, y}]
4000300020001000
x
2000
1000
1000
2000
3000
4000
y
Question:-9 Sketch the curve defined by the following parametric equations
x = t
2
+ t, y = 2t - 1 { t, -2, 1 }
ParametricPlot[{t^2 t, 2 t 1 }, {t, 2, 1},
PlotStyle {Red, Thickness[0.09]}, PlotLabel "Parabola", AxesLabel {"x", "y"}]
0.51.01.52.0
x
5
4
3
2
1
1
y
Parabola
Question:-10 Sketch the curve defined by the following parametric equations
x = Sin
2
[t], y = 2Cos[t] { t, 0, 2Pi }
4 P-3_1st_Sem-13C ParametricPlot.nb
ParametricPlot[{Sin[t] Sin[t], 2 Cos[t] }, {t, 0, 2 Pi},
PlotStyle {Red, Thickness[0.05]}, PlotLabel "Parabola", AxesLabel {"x", "y"}]
0.20.40.60.81.0
x
2
1
1
2
y
Parabola
Question:-11 Sketch the curve defined by the following parametric equations
x = Sin[t] * [ e
Cost
- 2*Cos[4t] + Sin
5

t
12
],
y = Cos[t] * [ e
Cost
- 2*Cos[4t] + Sin
5

t
12
]
for { t, 0, k*Pi/6 } where k = 1.
k 1
ParametricPlot[
{Sin[t] Power[Exp[ 1], Cos[t]] Sin[t] 2 Cos[4 t] Sin[t] Power[Sin[t / 12], 5],
Cos[t] Power[Exp[1], Cos[t]] Cos[t] 2 Cos[4 t] Cos[t] Power[Sin[t / 12], 5]} ,
{t, 0, k Pi / 6}, PlotStyle {Red, Thickness[0.05]}]
1
0.5 1.0 1.5
1.5
2.0
2.5
k 2
ParametricPlot[
{Sin[t] Power[Exp[ 1], Cos[t]] Sin[t] 2 Cos[4 t] Sin[t] Power[Sin[t / 12], 5],
Cos[t] Power[Exp[1], Cos[t]] Cos[t] 2 Cos[4 t] Cos[t] Power[Sin[t / 12], 5]} ,
{t, 0, k Pi / 6}, PlotStyle {Green, Thickness[0.05]}]
2
0.5 1.0 1.5 2.0 2.5
1.5
2.0
2.5
3.0
P-3_1st_Sem-13C ParametricPlot.nb 5
k 3
ParametricPlot[
{Sin[t] Power[Exp[ 1], Cos[t]] Sin[t] 2 Cos[4 t] Sin[t] Power[Sin[t / 12], 5],
Cos[t] Power[Exp[1], Cos[t]] Cos[t] 2 Cos[4 t] Cos[t] Power[Sin[t / 12], 5]} ,
{t, 0, k Pi / 6}, PlotStyle {Pink, Thickness[0.04]}]
3
1 1 2
0.5
1.0
1.5
2.0
2.5
3.0
k 4
ParametricPlot[
{Sin[t] Power[Exp[ 1], Cos[t]] Sin[t] 2 Cos[4 t] Sin[t] Power[Sin[t / 12], 5],
Cos[t] Power[Exp[1], Cos[t]] Cos[t] 2 Cos[4 t] Cos[t] Power[Sin[t / 12], 5]} ,
{t, 0, k Pi / 6}, PlotStyle {Yellow, Thickness[0.04]}]
4
1 1 2
1
2
3
k 10
ParametricPlot[
{Sin[t] Power[Exp[ 1], Cos[t]] Sin[t] 2 Cos[4 t] Sin[t] Power[Sin[t / 12], 5],
Cos[t] Power[Exp[1], Cos[t]] Cos[t] 2 Cos[4 t] Cos[t] Power[Sin[t / 12], 5]} ,
{t, 0, k Pi / 6}, PlotStyle {Blue, Thickness[0.03]}]
10
2 1 1 2 3
1
1
2
3
6 P-3_1st_Sem-13C ParametricPlot.nb
k 11
ParametricPlot[
{Sin[t] Power[Exp[ 1], Cos[t]] Sin[t] 2 Cos[4 t] Sin[t] Power[Sin[t / 12], 5],
Cos[t] Power[Exp[1], Cos[t]] Cos[t] 2 Cos[4 t] Cos[t] Power[Sin[t / 12], 5]} ,
{t, 0, k Pi / 6}, PlotStyle {Green, Thickness[0.02]}]
11
3 2 1 1 2 3
1
1
2
3
k 12
ParametricPlot[
{Sin[t] Power[Exp[ 1], Cos[t]] Sin[t] 2 Cos[4 t] Sin[t] Power[Sin[t / 12], 5],
Cos[t] Power[Exp[1], Cos[t]] Cos[t] 2 Cos[4 t] Cos[t] Power[Sin[t / 12], 5]} ,
{t, 0, k Pi / 6}, PlotStyle {Red, Thickness[0.03]},
AxesLabel {"x", "y"}, PlotLabel Butterfly_Curve]
12
3 2 1 1 2 3
x
1
1
2
3
y
Butterfly_Curve
Question:-12 Sketch the curve defined by the following parametric equations
x = Sin[t] * [ e
Cost
- 2*Cos[4t] + Sin
5

t
12
],
y = Cos[t] * [ e
Cost
- 2*Cos[4t] + Sin
5

t
12
]
where { t, 0, k*Pi/6 } and { k, 1,12}.
Table[ParametricPlot[
{Sin[t] Power[Exp[ 1], Cos[t]] Sin[t] 2 Cos[4 t] Sin[t] Power[Sin[t / 12], 5],
Cos[t] Power[Exp[1], Cos[t]] Cos[t] 2 Cos[4 t] Cos[t] Power[Sin[t / 12], 5]} ,
{t, 0, k Pi / 6}, PlotStyle {Red, Thickness[0.03]},
AxesLabel {"x", "y"}], {k, 1, 12}]
25
y
30
y
3.0
y
P-3_1st_Sem-13C ParametricPlot.nb 7

0.5 1.0 1.5


x
1.5
2.0
2.5
,
0.5 1.0 1.5 2.0 2.5
x
1.5
2.0
2.5
3.0
,
1 1 2
x
0.5
1.0
1.5
2.0
2.5
,
1 1 2
x
1
2
3
y
,
1 1 2
x
1
1
2
3
y
,
1 1 2
x
1
1
2
3
y
,
1 1 2
x
1
1
2
3
y
,
1 1 2 3
x
1
1
2
3
y
,
1 1 2 3
x
1
1
2
3
y
,
2 1 1 2 3
x
1
1
2
3
y
,
3 2 1 1 2 3
x
1
1
2
3
y
,
3 2 1 1 2 3
x
1
1
2
3
y

8 P-3_1st_Sem-13C ParametricPlot.nb

Você também pode gostar