From 7d132db50ae2845300353b332c6951193ecaa2c2 Mon Sep 17 00:00:00 2001 From: thing1 Date: Mon, 24 Mar 2025 21:03:32 +0000 Subject: rename --- maths/work/rev/parametrics.ms | 383 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 383 insertions(+) create mode 100644 maths/work/rev/parametrics.ms (limited to 'maths/work/rev/parametrics.ms') diff --git a/maths/work/rev/parametrics.ms b/maths/work/rev/parametrics.ms new file mode 100644 index 0000000..eca4a72 --- /dev/null +++ b/maths/work/rev/parametrics.ms @@ -0,0 +1,383 @@ +.TL +Parametric equations +.AU +Lucas Standen +.AI +QMC + +.EQ +delim @@ +.EN +.EQ +delim @# +.EN + +.2C + +.NH 1 +What are they? + +.LP +Parametric equations are two equations that are linked by a common variable usually @ t # + +They are written in the format +.EQ +x = at +.EN +.EQ +y = bt +.EN +The can also include trig functions, exponents and other parts of maths + +You may be asked to, convert to Cartesian, find the range and domain, differentiate and finding points of intersection + +.NH 1 +Converting to Cartesian +.LP + +You will often be asked to convert to a Cartesian equivalent equation. To do that you will need to rearrange one of the given equations to get it in terms of @ t #, then substitute that value into the other equation. You will most often find that rearranging @ x # is easier as this will result in an equation equal to @ y #. + +.NH 2 +Example +.EQ +x = 2t +.EN + +.EQ +y = t sup 2 +.EN + +.EQ +t = x over 2 +.EN + +.EQ +y = ({x over 2}) sup 2 +.EN + +.EQ +y = x sup 2 over 4 +.EN + +.NH 1 +Finding the domain and range +.LP +The domain of the Cartesian equation is the range of the @ x # and the range of the Cartesian is the range of the @ y # equation. + +.NH 2 +Examples +.LP +.EQ +x = t - 2 +.EN + +.EQ +y = t sup 2 + 1 +.EN + +.EQ +"where" -4 <= t <= 4 +.EN + +.EQ +t = x + 2 +.EN + +.EQ +y = (x + 2) sup 2 + 1 +.EN + +.EQ +y = x sup 2 + 4x + 4 + 1 +.EN + +.EQ +y = x sup 2 + 4x + 5 +.EN + +.EQ +f(x) = x sup 2 + 4x + 5 +.EN + +.EQ +domain = -6 <= x <= 2 +.EN + +.EQ +range = 1 <= f(x) <= 16 +.EN + +.NH 1 +Differentiating Parametric equations +.LP +This process is relatively simple, and can be solved by viewing @ dy over dx # as fractions. As we can already find @ dx over dt # and @ dy over dt # we can say the following. + +.EQ +dy over dx = {dy over dt} over {dx over dt} +.EN + +This is because the @ dt # will cancel out on the top and bottom. + +.NH 2 +Examples +.LP + +.EQ +x = 2t +.EN + +.EQ +y = t sup 2 - 3t + 2 +.EN + +.EQ +dx over dt = 2 +.EN + +.EQ +dy over dt = 2t - 3 +.EN + +.EQ +{dy over dt} over {dx over dt} = 2 over {2t -3} +.EN + +.NH 1 +Points of intersection +.LP +This is as simple as substituting in numbers for the most part although sometimes it can be harder due to trig identities showing up. + +.NH 2 +Example +.LP +Lets say we have the parametric @ x = t sup 2 # and @ y = 8t - 5 # and we want to know if there is any points of +intersection with the line @ y = 5x + 4 # + +To solve this we can find the Cartesian equation and then do this normally. +.EQ +t = sqrt x +.EN + +.EQ +y = 8{sqrt x} - 5 +.EN + +.EQ +"Then we can say" +.EN + +.EQ +5x + 4 = 8{sqrt x} - 5 +.EN + +.EQ +5x + 9 = 8{sqrt x} +.EN + +.EQ +5x over 8 + 9 over 8 = sqrt x +.EN + +.EQ +({5x over 8 + 9 over 8}) sup 2 = x +.EN + +.EQ +{25x sup 2 over 64 + 81 over 64} = x +.EN + +.EQ +25x sup 2 + 81 = 64x +.EN + +.EQ +25x sup 2 -64x + 81 = 0 +.EN + +.EQ +"This has no points of intersection because x is imaginary" +.EN + +.LP +EX 8D Q1a +.EQ +x = 5 + t +.EN +.EQ +y = 6 - t +.EN +.EQ +y = 6 - (x - 5) +.EN +.EQ +y = 11 - x +.EN +.EQ +0 = 11 - x +.EN +.EQ +-11 = - x +.EN + +.EQ +11 = x +.EN +.LP + +EX 8D 12b +.EQ +x = 6cos(t) +.EN +.EQ +y = 4sin(2t) + 2 +.EN +.EQ +-{pi over 2} < t < {pi over 2} +.EN + +.EQ +4 = 4sin(2t) + 2 +.EN + +.EQ +2 = 4sin(2t) +.EN + +.EQ +1 over 2 = sin(2t) +.EN + +.EQ +2t = arcsin({1 over 2}) +.EN + +.EQ +2t = pi over 6, {5 pi} over 6 +.EN + +.EQ +t = pi over 12, {5 pi} over 12 +.EN + +.LP +EX 8D 12c + +.EQ +x = 6cos(t) +.EN + +.EQ +x = 3 sqrt 3, - 3 sqrt 3 +.EN + +.EQ +(3 sqrt 3, 4), (- 3 sqrt 3, 4) +.EN + +.LP +EX 8D 13 + +.EQ +x = 2t +.EN +.EQ +y = 4t sup 2 - 4t +.EN + +.EQ +t = x over 2 +.EN + +.EQ +y = 4({x over 2}) sup 2 - 4 ({x over 2}) +.EN + +.EQ +y = 4({x sup 2 over 4}) - 4 ({x over 2}) +.EN + +.EQ +y = x sup 2 - 4 ({x over 2}) +.EN + +.EQ +y = x sup 2 - 2x +.EN + +.EQ +2x - 5 = x sup 2 - 2x +.EN + +.EQ +0 = x sup 2 - 4x + 5 +.EN + +.EQ +sqrt {-4 sup 2 - 4 (1) (5) } +.EN + +.EQ +sqrt {16 - 20 } +.EN + +.EQ +sqrt {-4} +.EN + +.EQ +sqrt {-4} " has no real solutions!" +.EN + +.NH 1 +Parametric with trig +.LP +Trig often shows up in parametric equations, however using the identities we know, they can be easy to solve. The reason they are harder, is because we can't rearrange to get @ t # like in other questions. + +What we have to do is to use the identities we know, such as +.EQ +sin sup 2 (x) + cos sup 2 (x) = 1 +.EN + +An example would be the following + +.EQ +x = 2sin(t) +.EN + +.EQ +y = cos(t) + 2 +.EN + +.EQ +sin(t) = x over 2 +.EN + +.EQ +cos(t) = y - 2 +.EN + +.EQ +({x over 2}) sup 2 + (y - 2) sup 2 = 1 +.EN + +.EQ +{x sup 2 over 4} + y sup 2 -4y + 4 = 1 +.EN + +.EQ +{x sup 2 over 4} + y sup 2 -4y + 4 = 1 +.EN + +.EQ +{x sup 2} + 4y sup 2 -16y + 16 = 4 +.EN + +.EQ +{x sup 2} -16y + 16 - 4= -4y sup 2 +.EN + +.EQ +{x sup 2} + 12 = -4y sup 2 + 16y +.EN + +This is an oval shape. -- cgit v1.2.3