0% found this document useful (0 votes)
4 views6 pages

Lines

Uploaded by

sboth1kh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views6 pages

Lines

Uploaded by

sboth1kh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Lines.

nb 1

Plotting Lines in Mathematica

Copyright © 1995, 1997, 2001 by James F. Hurley, University of Connecticut,


Department of Mathematics, 196 Auditorium Road Unit 3009, Storrs CT 06269-3009.
All rights reserved.

This notebook discusses lines in the plane and 3-space and illustrates how to plot them in
Mathematica.

1. Lines. Mathematica has a built-in command to plot the line segment between two
points P(a, b) and Q(c, d). The following 4-line routine illustrates its use. Execute it by
placing your cursor after the last line and pressing the Enter key.
In[1]:= (* Mathematica Routine to plot line segment
through two points in the plane*)
P := {-2, 5};
Q := {1, 1};
lineseg = Graphics[ { RGBColor[1, 0, 1], Line[{P, Q}] } ]
Show[lineseg, Axes -> True, AxesLabel -> {x, y}]

Out[4]= Ü Graphics Ü

y
5

x
-2 -1.5 -1 -0.5 0.5 1
Out[5]= Ü Graphics Ü

A more powerful tool for plotting lines through two points uses vector parametric repre-
sentation. Such a representation of the line L through two points P(a, b) and Q(c, d)
comes from the parallelogram law of vector addition. Namely, to get to any point R(x, y)
on the line, start at the origin and go first to the point P(a, b) on the line, by viewing P as
Lines.nb 2

the endpoint of the vector x0 = OP = (a, b). From P travel along the line by adding an
appropriate multiple t of the vector v = PQ = (c – a, d – b). See the figure.
y

P
tPQ
R
OP
Q
x

This leads to the parametric vector equation

x = x0 + t v = (a, b) + t (c – a, d – b), t œ R

for L. An easy way to plot such a vector equation in Mathematica is via the Paramet-
ricPlot command. For the line L through the two points (–2, 5) and (1, 1), a vector in
the direction of L is v = 3 i – 4 j = (3, –4). A vector equation for L is then x = (–2, 5) + t
(3, –4) = (–2 + 3t, 5 – 4t). That corresponds to the scalar parametric equations

x = –2 + 3t, y = 5 – 4t, t œ R.

The following simple Mathematica routine plots this for the range t œ [–1, 2].Try it!
In[7]:= ParametricPlot[ {-2 + 3 t, 5 - 4 t}, {t, -1, 2},
PlotStyle -> RGBColor[1, 0, 1] ]

-4 -2 2 4
-2

Out[7]= Ü Graphics Ü

There are really no algebraic differences between lines in 2-space or 3-space. In the latter
space, points have three coordinates instead of two, but the above reasoning still applies
Lines.nb 3

to yield a parametric vector equation for the line through two points P(a, b, c) and Q(p,
q, r):

x = x0 + t v = (a, b, c ) + t (p – a, q – b, r – c), t œ R.

This in turn gives the scalar parametric equations

x = a + t (p – a), y = b + t(q – b), z = c + t(r – c), t œ R.

Mathematica plots such a line by means of its 3-dimensional parametric plotting com-
mand, ParametricPlot3D. For example, the following routine plots the line L
through the points P(1, 2, 3) and Q(–1, 1, 4). First, note that a vector in the direction of L
is PQ= (–2, –1, 1). A parametric vector equation for the line is therefore

x = (1, 2, 3) + t (–2, –1, 1) = i + 2j + 3k + t (–2i – j + k).

A set of parametric scalar equations is then

x = 1 – 2t, y = 2 – t, z = 3 + t, t œ R.

The following Mathematica routine provides a plot.Execute the routine to generate the
graph.
In[8]:= plotline = Graphics3D[ParametricPlot3D[ {1 - 2 t, 2 - t, 3 + t,
RGBColor[1, 0, 1]}, {t, -2, 2} ]]

5
4
3
2
1
4
-2
3
0
2
2
1
4
0
Out[8]= Ü Graphics3D Ü
Lines.nb 4

To add coordinate axes inside the surrounding coordinate box, execute the following cell.

In[9]:= ParametricPlot3D[ {{1 - 2 t, 2 - t, 3 + t, RGBColor[1, 0, 1]},


{2 t, 0, 0, RGBColor[0, 1, 0]},
{0, 2 t, 0, RGBColor[0, 1, 0]},
{0, 0, 2 t, RGBColor[0, 1, 0]}},
{t, -2, 2}, AxesLabel -> {x, y, z} ]

y 4
2
0
-2
-4
4

2
z
0

-2

-4
-4
-2
0
2
x 4

Out[9]= Ü Graphics3D Ü

Two lines in space can be parallel, perpendicular, or skew. The latter term applies to non-
parallel lines that do not intersect (because they lie in parallel planes).

3.6. Definition. Two lines x = x1 + sv and x = x2 + tw are parallel if their direction vec-
tors v and w are parallel vectors. The lines are perpendicular if v and w are perpendicu-
lar vectors (that is, v · w = 0) and the two lines intersect.

The next routine plots a pair of lines with parametric equations, and can help you decide
whether or not the two lines likely intersect. To confirm that, solve the two sets of scalar
equations simultaneously to determine algebraically whether the two lines in fact do have
a common point.
In[10]:= lines = Graphics3D[ParametricPlot3D[{
{1 - 2 t, 2 + 3 t, 4 + 6 t, RGBColor[1, 0, 0]},
{2 + t, -3 + 2 t, 1 - 3 t, RGBColor[0, 0, 1]}},
{t, -2, 2} ] ]
Lines.nb 5

-2 0
2 4
5
0
-5

10

Out[10]= Ü Graphics3D Ü

To add coordinate axes inside the surrounding coordinate box, execute the following cell.

ParametricPlot3D[ {
{1 - 2 t, 2 + 3 t, 4 + 6 t, RGBColor[1, 0, 0]},
{2 + t, -3 + 2 t, 1 - 3 t, RGBColor[0, 0, 1]},
{2 t, 0, 0, RGBColor[0, 1, 0]},
{0, 4 t, 0, RGBColor[0, 1, 0]},
{0, 0, 5 t, RGBColor[0, 1, 0]} },
{t, -2, 2}, AxesLabel -> {x, y, z} ]
Lines.nb 6

x
-4-2
0 2
5 4
y
0
-5

10

-10

The figure suggests that intersection is possible. To investigate further, equate the respec-
tive x-coordinate expressions 2 + t and 1 – 2s and the y-coordinate expressions –3 + 2t
and 2 + 3s. From 2 + t = 1 – 2s, it follows that t = –1 –2s. Substitution of that into the
equation –3 + 2t = 2 + 3s gives

–3 + 2(–1 –2s) = 2 + 3s fl –5 – 4s = 2 + 3s fl –7 = 7s fl s = –1.

The corresponding value of t = –1 –2s = 1. To see finally whether the lines intersect,
substitute the values s = –1 and t = 1 into the two z-coordinate expressions to see
whether a valid equation results. In this case that gives from the first line

z = 1 – 3t = 1 – 3(1) = –2

and from the second


z = 4 + 6s = 4 + 6(–1) = –2.

Hence, the two lines do intersect — at the point (3, –1, –2).

You might also like