SymComp Booklet
SymComp Booklet
You can find electronic versions of each of the lectures in the Maple folder on the L-drive on each of the computers in the microlab. You will not be able to change them there, but you can copy them into your own filespace and then you can play with them and modify the code to see what happens. If you want to remove all the output you can use the Remove output command on the Edit menu. In due course this folder will also contain copies of the practice exercises given at the end of each lecture and (eventually) solutions to the tutorial sheets. Some pages of summaries are at the end of this booklet.
Contents
Using Maple as a calculator Help Polynomial expressions Trigonometric expressions Assigning Substituting Differentiating Defining functions Formatting worksheets Plotting Plotting in 3 dimensions Integration Solving equations Looping If clauses Lists Sets Summing Procedures More procedures Reversing Pythagorean triples Some more equations Interpolation More plotting 2 4 5 6 7 9 11 12 13 14 18 22 26 32 34 35 37 38 40 45 46 49 49 51 52 Recursion More recursion Looking for prime numbers Testing for primes Linear algebra package The Power method Solving differential equations DEtools package Other methods Random numbers Shuffling Sudoku Countdown Sums of two squares Number of different ways Continued fractions Geometry package: Menelaus Ceva's theorem Product of chords Ptolemy's theorem Pascal's theorem The Euler line The Nine-point circle Summaries Mathematicians' pictures 55 57 58 62 63 69 73 75 78 79 82 84 86 90 91 93 97 99 100 102 103 104 107 109 118
1 791 3 5
To get a decimal answer, use the evalf (= evaluate as a floating point number ) function The % stands for the last result Maple calculated (even if this was not the last thing on the screen -remember you can go back and recalculate earlier results). O evalf(%); 6.708203931 %% stands for the last but one result. This time you can get the answer to 20 significant figures O evalf(%%,20); 6.7082039324993690892
Using a decimal point in your input tells Maple that you want the answer as a decimal. O sqrt(2.0); 1.414213562
Maple knows about !, which it calls Pi (the capital letter is important) and will give it to very great accuracy. Over the centuries mathematicians spent a lot of time calculating many digits of !. The methods developed included a series for arctan discovered by James Gregory,the first Regius Professor of mathematics at St Andrews. The English mathematician William Shanks published 707 places of ! in 1873 and it was not discovered until 1943 that the last 179 of these were wrong. The expansion of ! is now known to many billions of places. O evalf(Pi,1000); 3.1415926535897932384626433832795028841971693993751058209749445923078164062\ 86208998628034825342117067982148086513282306647093844609550582231725359\ 40812848111745028410270193852110555964462294895493038196442881097566593\ 34461284756482337867831652712019091456485669234603486104543266482133936\ 07260249141273724587006606315588174881520920962829254091715364367892590\
2
36001133053054882046652138414695194151160943305727036575959195309218611\ 73819326117931051185480744623799627495673518857527248912279381830119491\ 29833673362440656643086021394946395224737190702179860943702770539217176\ 29317675238467481846766940513200056812714526356082778577134275778960917\ 36371787214684409012249534301465495853710507922796892589235420199561121\ 29021960864034418159813629774771309960518707211349999998372978049951059\ 73173281609631859502445945534690830264252230825334468503526193118817101\ 00031378387528865875332083814206171776691473035982534904287554687311595\ 62863882353787593751957781857780532171226806613001927876611195909216420\ 199 22/7 is a well-known approximation for !. This was known to the Greek mathematician Archimedes about 250BC (and indeed earlier). A better, but less well-known approximation is 355/113. This was discovered by the Chinese mathematician Ch'ung Chi Tsu in about 500AD. Maple will calculate the difference between these two approximations and !. O evalf(22/7); evalf(355/113); evalf(22/7-Pi); evalf(355/113-Pi);
Maple knows about all the functions you have on your calculator: sqrt, sin, cos, etc as well as exp, log = ln, log[10] or log10 and lots more besides. It uses lower case letters for them. The pallettes on the left of the screen (if you want to bother with them) will remind you of some of the functions. To use the functions, put ( ) around what you evaluate. Maple works in radians, not degrees. If you want the answer as a decimal, you will have to ask for it. O sin(3); sin(Pi/2); sin(60* Pi/180); the sine of 60 evalf(%); sqrt(2); 2^(1/2); evalf(%,50);
sin 3 1
3
1 2
0.8660254040 2 2 1.4142135623730950488016887242096980785696718753769 Maple knows about some other functions your calculator (probably) can't handle. For example, ifactor (for integer factorise) will write an integer as a product of prime numbers. O ifactor(123456789); 3
2
3803
3607
The function factorial will calculate the product 1 ! 2 ! 3 ! ... ! n usually written n! Maple recognises the ! notation too. O factorial(5); factorial(100); ifactor(100!);
120
11
13
17 73
19 79
23 83
29 89
31
37
41
43
47
53
59
61
67
71
97
Help
To see the help files on a Maple command, type the command and highlight it. Then go to the Help menu and you will see an entry for the command. Alternatively, type ? and then the command. (You don't even need a semi-colon!) . O ?print You can also use help(command); (and you do need the semi-colon!) O help(sin); At the bottom of a help file, you will find some examples of how to use the command. (This is the
4
most useful bit!) You can copy and paste these lines into your worksheet and look at what happens. Then you can change them to do what you want. Each help file has a list of links to related topics at the bottom which may let you hunt down exactly what you want. The Help menu also has a "Full text search" facility which will point you in the direction of any help files where the word or phrase you enter is mentioned. This tends to produce too much output to be very useful!
Polynomial expressions
One of the most important things Maple can do is to calculate with expressions as well as numbers. Use the expand function to "multiply out". O (x+y)^5; expand(%); xCy
5
x5 C 5 x4 y C 10 x3 y2 C 10 x2 y3 C 5 x y4 C y5 O expand((sqrt(2*x)+sqrt(x))^6); 99 x3 C 70 2 x3
Maple will (sometimes) succeed in manipulating an expression to make it "simpler". Use the function simplify. O (x^2-y^2)/(x-y); simplify(%);
x2 K y2 xKy xCy
Maple will factorise expressions as well -- if it can ! Use the factor function. O (x-y)^3*(x+y)^5; expand(%); factor(%); factor((x-y)^3*(x+y)^5+1); This last is too difficult! xKy
3 5
xCy
x8 C 2 x7 y K 2 x6 y2 K 6 x5 y3 C 6 x3 y5 C 2 x2 y6 K 2 x y7 K y8 xKy
3
xCy
O expand(((x-y)^2+(x+y)^2)/(x^3-y^3)); simplify(%); factor(%); 2 x2 2 y2 C 3 x3 K y3 x K y3 2 x2 C y2 x3 K y3 2 x2 C y2 xKy x2 C x y C y2 Maple can simplify polynomials in some other ways. In particular, you can ask it to collect together the terms in (say) xn using the collect function. (The sort function works in a similar way.) O (x-2*y)^4+(3*x+y)^3; expand(%); collect(%,y); collect(%,x);
xK 2 y 4C 3 xC y
x4 K 8 x3 y C 24 x2 y2 K 32 x y3 C 16 y4 C 27 x3 C 27 x2 y C 9 x y2 C y3 16 y4 C K x C 1 y3 C 24 x2 C 9 x y2 C K x3 C 27 x2 y C x4 C 27 x3 32 8 x4 C K y C 27 x3 C 24 y2 C 27 y x2 C K y3 C 9 y2 x C 16 y4 C y3 8 32 You can find the coefficient of a given power of (say) x O coeff(%,x^3); coeff(%%,x,0);
K y C 27 8 16 y4 C y3
Trigonometric expressions
Maple will handle many trigonometric identities using the expand function. It won't factor back again though ! O sin(x+y); expand(%); factor(%);
You can use Maple to expand cos(n x) for different values of the integer n and get polynomials in cos(x). These polynomials were first investigated by the Russian mathematician Pafnuty Chebyshev (1821
6
to 1894). They are very important in Numerical Analysis. O cos(5*x); expand(%); cos(12*x); expand(%);
2048 cos x
12
K 6144 cos x
10
sin x 2 C cos x 1
Though sometimes the answer isn't what you might expect. O simplify(1-sin(x)^2); simplify(1/(1+tan(x)^2)); cos x 1 1 C tan x You may have to help it a bit: O simplify(cos(x)^2-1/(1+tan(x)^2)); 0
2
Assigning
Maple will store things (numbers, expressions, functions, ...) in "containers" or "variables". Think of these as labelled boxes. This process is called assignment. O p:=15; q:=75; p/q;
p := 15 q := 75 1 5
One can also store expressions in these boxes. One can then apply any Maple function to the contents of the box.
7
x2 C 4 x y C 6 x z C 4 y2 C 12 y z C 9 z2 81 z4 C 108 x C 216 y z3 C 18 x C 2 y 2 C 6 x C 12 y C 12 y z C x C 2 y
4 2
z2 C 2 x C 2 y
6x
c := a C b a := 1 b := 3 4
If we now change either a or b, Maple remembers that c contains a+b and will change c too. O a:=5; c;
a := 5 8
However, if we had already assigned numbers before we put them into the box, Maple will just put in the number ! O x:=1;y:=3; z:=x+y; z;
x := 1 y := 3 z := 4 4
and this time altering one of the numbers will not alter anything else. O x:=5; z;
x := 5 4
O c; a := a a aC3 To unassign all the variables, use restart; O a;b;c; restart; a;b;c;
a 3 aC3 a b c
One can use this process to evaluate an expression. O f:=x^2+1; x:=1.5;f; x:=2.5;f; x:=3.5;f;
Substituting
Evaluating an expression f in x can be done using the subs function. This does not assign anything to x. O restart; f:=x^2+1; subs(x=1.5,f); subs(x=2.5,f); subs(x=3.5,f); x;
f := x2 C 1 3.25
9
7.25 13.25 x Note, however, that if x already has a value assigned to it, you won't get what you want ! O x:=1; subs(x=3.5,f);
x := 1 2
You can also use the subs function to substitute one expression for another. It will do several substitutions at the same time. O restart; subs(x=y+5,x^5*sin(x)); subs(x=y+5,z=y-5,x^2+y^2+z^2); simplify(%); y C 5 5 sin y C 5 yC5
2
C y2 C y K 5
3 y2 C 50 We can illustrate this with the process of simplifying a general cubic equation O cub:=a*x^3+b*x^2+c*x+d; t:=subs(x=y+k,cub); collect(t,y); cub := a x3 C b x2 C c x C d t := a y C k 3 C b y C k 2 C c y C k C d a y3 C 3 a k C b y2 C 3 a k2 C c C 2 b k y C a k3 C d C c k C b k2 Now we replace k by b/3a to remove the y2 term. This substitution is known as a Tschirnhaus transformation after the 17th Century German mathematician who first used it. It is analagous to the process of completing the square for quadratic equations and is the first stage in reducing a cubic equation to a form in which it can be solved O subs(k=-b/(3*a),%); 1 b2 2 b3 1 cb a y3 C K Cc yC CdK 2 3 a 27 a 3 a
Differentiating
Maple will differentiate expressions. You have to tell it what to differentiate with respect to. Anything else will be treated as if it were a constant. This process is actually Partial Differentiation .
10
3 x2 2ax x2
If you try to differentiate with repect to something which has had a value assigned to it, Maple will complain. Unassign the variable or use restart to be safe ! O x:=1; diff(x^4,x);
x := 1
Error, invalid input: diff received 1, which is not valid for its 2nd argument O x:='x'; diff(x^4,x); x := x 4 x3 Maple uses the function Diff (with a capital letter) to write out the formula for the derivative, but without actually doing the differentiation. (It knows when the differention is partial.) O Diff(x^4,x); Diff(x^4*y^4,x); Diff(x^9,x)=diff(x^9,x);
d dx v vx d dx
x4 x4 y4
x9 = 9 x8
Maple will differentiate more than once -- with respect to the same variable or different variables. O diff(x^3+y^3+3*x^2*y^2,x,x); diff(x^3+y^3+3*x^2*y^2,x,y); 6 x C 6 y2 12 x y As a short cut, if you want to differentiate (say) 4 times wrt the same variable, you can use x$4. O diff((1+x^2)^3,x$4); 360 x2 C 72
The French mathematician Adrian-Marie Legendre (1752 1833) defined some important polynomials in connection with solving the problem of how the gravitational effects of the moon
11
and sun affected the tides. In the past, mathematicians had to look up the coefficients in tables, but Maple can calculate them very easily. O n:=7; diff((x^2-1)^n,x$n)/(n!*2^n); collect(%,x); n := 7 x7 C 21 2 x2 K 1 x5 C 105 8 x2 K 1
2 3
x C
35 16
x2 K 1
Defining functions
One can store functions in Maple's "boxes" as well as numbers or expressions. A function is a "rule" for assigning a value to a number. Note that although we may use x in the definition of a function, the function itself is not an expression in x. Here x is what is called a "dummy variable". O f:=x->x^3; f(1.4); f(y);
f := x/x3 2.744 y3
O g:=y->sin(y);
g := y/sin y
Once we have defined two such functions we can then compose them by applying one to the other. It usually matters which order we do this in. O f(g(x)); g(f(x)); sin x sin x3 We may use the same method as above to define functions of two (or more) variables. The pair of variables must be in brackets with a comma between them. O f:=(x,y)->x^2+y^2; f(0,0); f(1,2);
f := x, y /x2 C y2 0
12
5 Maple differentiates expressions, not functions. If you have defined a function f and want to differentiate it with respect to x, then you will have to turn it into an expression by evaluating it at x by using f(x). O f:=x->x^3; diff(f,x);
f := x/x3 0
O diff(f(x),x);
3 x2
You can however, use the operator D which acts on a function to produce a function. O D(f); x/3 x2
Note that this means you can't use D as the name of a variable. O D:=5; Error, attempting to assign to `D` which is protected
Formatting worksheets
To put in comments (like this paragraph!) when the cursor is at a Maple prompt > either use the Insert text item from the Insert menu, or the keyboard shortcut Control-T or click on the T on the Tool bar. When you have finished, start a new Execution group (what Maple calls the group enclosed by the bracket at the left) by using the item Execution group in the Insert menu, by using one of the keyboard shortcuts Control-K or Control-J or clicking on the [> on the Tool bar. You can use the same method to get a new execution group anywhere in your worksheet and then, if you wish, you can use this to insert some explanatory text. The Edit menu has a Join command which lets you put the comment in the same group as the command. You can also put comments on the same line as Maple input. You get the y2 by inserting "nonexecutable maths text" from the Insert menu or using the short cut Control-R. O x:=y^2; this assigns the value y2 to the variable x.
You can make a "collapsible section" which you can 'expand' by clicking on the + symbol or 'contract ' by clicking on the - symbol. Do this by selecting what you want to put into it and then selecting Indent from the Format menu or the symbol from the Tool bar. To get rid of such a section select Outdent from the Format menu or the symbol from the Tool bar. When you have made such a section you can type a heading next to its symbol to label it.
13
Plotting
Maple will plot the graph of a function y = an expresssion involving x on a given interval which you specify (as as a range) by (say) x = 0 . . 1. If you don't specify a range Maple will take -10 .. 10. You can click on the picture to see the coordinates of the cursor. Enlarge the picture (using the View menu or Control- 0 to 6) to get a better idea . O plot(x*(x^2-1),x=-2..2);
6 4 2 K 2 K 1 0 K 2 K 4 K 6
You can't plot using a variable that has been assigned to without a bit of trouble. O x:=1;plot(x*(x^2-1),x); x := 1
1 x
Error, (in plot) invalid arguments You need to put in some 'single quotes' O plot('x*(x^2-1)*(x+2)','x'=-3..3,-2..2);
2 1
K 3
K 2
K 1
0 K 1 K 2
1 x
Maple will plot several functions on the same axes. Put the expressions to plot into a list (with [ ] brackets round them) or a set (with { } brackets around them). Maple will use different colours for the output (some of which do not print very well -- though you can specify the colours if you want).
14
10 5
K 2
K 1
0 K 5 K 10
1 x
Maple will choose the vertical axis so that all the graphs fit in. If you don't want this, you can specify the vertical range. Leave out the " y=" if you don't want the axis labelled. O plot([x,x^2,x^3,x^4,x^5],x=0..2,y=0..2,colour=black);
2 1.5 y 1 0.5 0
0.5
1 x
1.5
Maple will plot expressions. If you have defined a function f you can turn it into an expression by f (x). O f:=x->sin(x)/x; plot(f(x),x=-1..1); f := x/
sin x x
15
If you want, you can plot the function directly -- but then you musn't mention x at all. O plot(f,x=0..20); Error, (in plot) invalid plotting of procedures, perhaps you mean plot(f, 0 .. 20) O plot(f,0..20);
0.5
K 1
K 0.5
0 K 0.5
0.5
K 1
You can plot Lissajous figures, named after the French mathematician Jules Lissajous(1822 to
16
1880): O plot([cos(3*t),sin(5*t),t=0..2*Pi]);
1 0.5 0 K 0.5 K 1
You can even use polar coordinates: O plot([1/t,t,t=1..10],coords=polar);
K 1
K 0.5
0.5
Plotting in 3 dimensions
Plotting in three dimensions works similarly. You can then click on the picture to move it around. O plot3d(x^2-y^2,x=-5..5,y=-5..5);
17
There are lots of options you can specify for plot3d. See ?plot3d or ?plot3d[options]. For example, you can specify the vertical range. O plot3d(x^2+y^2,x=-5..5,y=-5..5,view=0..25);
One can plot more than one function (using { } this time). For example, cut a cone with a plane to get a parabola: O plot3d({sqrt(x^2+y^2),x+y+1},x=-1..1,y=-1..1,view=0..1);
18
19
One can also plot parametrically, by specifying formulae for the x, y, z coordinates. (This is where you use [ ] brackets.) O plot3d([(2+cos(q))*cos(p),(2+cos(q))*sin(p),sin(q)],p=0..2*Pi, q=0..2*Pi,view=-2..2); a torus
20
There are lots of other things you can explore with these functions! O plot3d(1.5^x*sin(y),x=-1..2*Pi,y=0..Pi,coords=spherical);
21
Integration
The process of integrating is much older than differentiating and goes back to the Ancient Greeks. For example, Archimedes' efforts to measure the area of a circle ( and hence calculate a value for !) in about 250BC are equivalent to trying to integrate a function. Maple will calculate indefinite integrals when it can, but quite "easy" functions may be difficult even for Maple. If you differentiate the integral, you should get back to where you started. O int(x^5,x); diff(%,x);
1 6 x 6 x5
1C !
3/2
x K2
22
8 4 C 15 15 1 K 5 !
1C
x x
xC 3 x
4 5
1C
x xK 2 K 5
8 15 !
1C 1C x x
x
3/2
1C
x K2 ! 1C x
g := K
Sometimes Maple can't do it. But it still knows how to get back when it differentiates. O f:=int(cos(sqrt(1+x^2)),x); diff(f,x); f := cos cos 1 C x2 1 C x2 dx
Sometimes it can do the integral but it isn't much help. O int(cos(1+x^3),x); 1 cos 1 6 9 7 ! 2
1/3
9 2
22/3
2 6 2 x C 7 3 ! x2
sin x3 C
11 3 3 , ,x 6 2 5 1 3 , ,x 6 2
LommelS1
17/6
3 x 22/3 sin x3 4 !
5 3 3 , ,x 6 2 11 1 3 , ,x 6 2
LommelS1
17/6
Remember, however, that integration should involve a "constant of integration" and so if you integrate a derivative, the answer may look different.
23
g := 4 1 C x2 x h := x4 C 2 x2 1 C x2
2
K x4 K 2 x2 1
Maple will calculate integrals of trigonometric functions which would be very tedious to tackle "by hand". In every case, differentiation should bring you back to where you started but it might be a bit of a struggle. O f:=int(tan(x)^3,x); g:=diff(f,x); simplify(g); f:=sin(x)^3/(1+cos(x)^3); g:=int(f,x); h:=diff(g,x); simplify(h); simplify(h-f); 1 1 f := tan x 2 K ln 1 C tan x 2 2 g := tan x 1 C tan x tan x f := g := 1 ln 1 K cos x C cos x 2 h :=
2 3 3 3 2
K tan x
sin x 1 3
1 C cos x K
3 arctan
1 3
1 K cos x C cos x 0
Although one can repeatedly integrate a function, there is no shorthand for multiple integration as there is for multiple differentiation. O f:=x^2-sin(2*x); int(%,x);
24
This only integrates once. f := x2 K sin 2 x 1 3 1 x C cos 2 x 3 2 1 4 1 x C sin 2 x 12 4 1 5 1 x K cos 2 x 60 8 1 1 x6 K sin 2 x 360 16 1 3 1 x C cos 2 x 3 2
Maple will also do definite integrals. It will give an exact answer if it can. Note the way you specify the range of integration: x = 0 . . 1 etc O int(x^4,x=0..1); int(sin(x)^2,x=0..Pi);
1 5 1 ! 2
The calculation mentioned above that Archimedes used to calculate " (t he quadrature of the circle ) is equivalent to the integral: O int(sqrt(1-x^2),x=-1..1); 1 ! 2
Maple will (sometimes) handle integrals over infinite ranges as well as integrals over ranges where the function goes off to infinity. O int(exp(-x),x=0..infinity); int(exp(x),x=0..infinity); int(tan(x),x=0..Pi/2); int(tan(x),x=0..Pi);
N N
undefined Even if it can't work out exactly what the answer is, you can ask it
25
k :=
0
cos
1 C x2
dx
0.4074043129 As in the differentiation case, Maple will write out the formula for the derivative if you ask for (with a capital letter). O Int(cos(x)^2,x); Int(cos(x)^2,x=0..Pi); evalf(%); Int(cos(x)^5,x)=int(cos(x)^5,x); cos x 2 dx
!
Int
cos x
0
dx
1.570796327 cos x
5
dx =
1 cos x 5
sin x C
4 cos x 15
sin x C
8 sin x 15
Solving equations
Maple will try and solve equations. You have to give it the equation and tell it what to solve for. If there is only one variable in the equation, it will solve for that without being told. If you give it an expression instead of an equation, it will assume you mean expression = 0. O solve(7*x=22,x); solve(7*x=22); solve(7*x-22); solve(all_my_problems);
22 7 22 7 22 7 0
Maple will solve equations which have more than one solution. O solve(a*x^2+b*x+c=0,x); solve(x^3-2*x^2-5*x+1=0,x); evalf(%,4);
26
1 bK K 2 1 6 316 C 12 I 2355
1/3 1/3
b2 K 4 a c 1 bC ,K a 2 38 3 316 C 12 I 2355
1/3 1/3
b2 K 4 a c a C 2 1 ,K 3 12 3 316 1 6
C 19
C 12 I
2355
3 316 C 12 I C 12 I 2355
1/3
2355
2 1 C I 3 2 1 12
316
1/3
38 3 316 C 12 I 2355
1/3
,K 1 6
316 C 12 I
2355
1/3
19 3 316 C 12 I 2355
1/3
2 1 K I 3 2
316 C 12 I
2355
38 3 316 C 12 I 2355
1/3
3.390 K 0.0003 I, K 1.576 K 0.0007660 I, 0.1871 C 0.0009660 I A short cut if you only want to see the decimal expansion is to use the function fsolve. Usually, fsolve will only give the real roots of the equation. There are ways of getting complex roots out of it. If you want to know what they are then you can consult the Help facilities for fsolve. O fsolve(x^3-2*x^2-5*x+1=0,x); K 1.575773473, 0.1872837251, 3.388489748 If you want to find solutions in a particular range you may have to specify it O fsolve(sin(x),x=3..4); 3.141592654
Maple will solve simultaneous equations. You have to enter the equations as a "set" (with { } round them and commas between). If you want to solve for several variables, you have to enter these as a set too. If you leave out the variables you want to solve for, Maple will assume you want all of them. O solve({y=x^2-4,y=-2*x-2},{x,y}); solve({y=x^2-4,y=-2*x-2}); evalf(%); y = K RootOf 2 _Z K 2 C _Z2, label = _L2 K 2, x = RootOf 2 _Z K 2 C _Z2, label 2 = _L2 y = K RootOf 2 _Z K 2 C _Z2, label = _L4 K 2, x = RootOf 2 _Z K 2 C _Z2, label 2 = _L4 y=K 3.464101615, x = 0.7320508076 and of course, you can use fsolve here too.
27
O fsolve({y=x^2-4,y=-2*x-2},{x,y}); y=K 3.464101615, x = 0.7320508076 You can then use the plot facility to see the intesection of the two curves. Then you see that we've missed one of the solutions O plot({x^2-4,-2*x-2},x=-3..1,colour=black);
5 4 3 2 1 K 3 K 2 x K 1 K 1 K 2 K 3 K 4 1
We can find the missing one by specifying ranges O fsolve({y=x^2-4,y=-2*x-2},{x=-3..0,y=0..5}); y = 3.464101615, x = K 2.732050808 If there is more than one solution you can pick out the one you want using [1] or [2] or ... O f:=x^2+3*x+1; sol:=solve(f=0,x); evalf(sol[1]); f := x2 C 3 x C 1 sol := 1 2 5 K 3 3 1 ,K K 2 2 2 5
K 0.381966012 and then you can draw the graph to see where it is O plot(x^2+3*x+1,x=-1..0);
28
1 0.5
K 1
K 0.8
K 0.6 x
K 0.4
K 0.2
0 K 0.5 K 1
As an illustration of how this can be used, we will calculate the equation of the tangent to a curve = f(x) at some point x0 say. Recall that if the tangent is y = mx + c the gradient m is the derivative at x = x0. Then we have to choose the constant c so that the line goes through the point ( x0, f(x0)) O f:=x->sin(x); x0:=0.6; fd:=diff(f(x),x); m:=subs(x=x0,fd); c0:=solve(f(x0)=m*x0+c,c); y=m*x+c0; plot([f(x),m*x+c0],x=0..1,y=0..1,colour=black); f := x/sin x x0 := 0.6 fd := cos x m := cos 0.6 c0 := 0.06944110450 y = 0.8253356149 x C 0.06944110450
29
0.6
0.8
m := K
c0 := x0 x 1 K x02
y=K
Then vary x0 until the tangent goes through the point (0.2). We'll make x1 the value of x0 when this happens. Since this produces two answers, we'll choose one of them.
30
The gradient m1 of the tangent is then the value of m at this point and the intercept c1 on the y-axis is the value of c0 at this point. So we can find the equation of the tangent: y = m1 x + c1. O x1:=solve(subs(x=0,y=2,y=m*x+c0),x0)[1]; m1:=subs(x0=x1,m); c1:=subs(x0=x1,c0); y=m1*x+c1; 1 x1 := K 3 2 m1 := 1 2 4 4 3 xC 4 3
c1 := y= 1 2 4
K 2
K 1
1 x
K 1
Asking Maple for the second solution above would give another tangent to the circle. You could now replace x = 0, y = 2 by any other point and work out the equation of the tangents going through that point.
Looping
There are several ways to get Maple to perform what is called a "loop". The first is a for-loop. You put what you want done between the do and the end do.
31
Use Shift-Return to get a new line without Maple running the code. O for i from 1 to 5 do x:=i; end do;
x := 1 x := 2 x := 3 x := 4 x := 5
It is often better to stop Maple printing out everything it does. You can do this by putting a : (a colon) after the loop instead of ; (a semi-colon). Putting a : instead of a ; after any command will stop Maple from printing it out as it executes the command. However, if you do want it to print something about what is going on, you can ask for it with a print command. O for i from 1 to 5 do x:=i; print(x); end do:
1 2 3 4 5
If you want to include some text, you can include it in "back quotes" (between the left-hand shift and the z). Single words (which Maple will interpret as variables) can get away without quotes, but more than one word can't. See below for the effect of the usual ". O print(one_word); print(`two words`); print("two words");
O print(two words); Error, missing operator or `;` There is another forms of for-loop: one in which we get the variable to increase itself by more than one between implementing the things in the loop: O for i from 1 to 15 by 3 do x:=i;
32
O print(`the value of x is `,x); end do: the value of x is , 1 the value of x is , 4 the value of x is , 7 the value of x is , 10 the value of x is , 13 As an illustration of what to do with a loop, we calculate the sum of an Arithmetic Progression (AP) to several terms e.g. 3, 5, 7, 9, ... We will suppress printing in the loop. Suppressing printing has the effect of speeding things up, since it takes Maple much longer to print than to calculate. O a:=1;d:=2; term:=a: total:=0: for i from 1 to 100 do total:=total+term; term:=term+d; end do: total;
a := 1 d := 2 10000
In a similar way, we can calculate the sum of a Geometric progression (a GP) like 3, 6, 12, 24, ... O a:=3;r:=2; term:=a: total:=0: for i from 1 to 20 do total:=total+term; term:=term*r; end do: total;
a := 3 r := 2 3145725
As an illustration of another kind of loop we answer the question of how many terms of a GP we need to take before the sum is > (say) 10000 ? We use a while-loop which will be implemented until the "boolean expression" in the first line of the loop becomes False. A boolean expression, named after the English mathematician George Boole (1815-1864) who was one of the first to apply mathematial techniques to logic, is something which takes the values either True or False. O a:=3; r:=1.1; term:=a:total:=0:
33
count:=0: while total < 10000 do total:=total+term; term:=term*r; count:=count+1; end do: count;
a := 3 r := 1.1 61
If clauses
We now show how Maple can make a choice of several different things to do. This branching is controlled by soething called an if-clause. We put what we want Maple to do between the then and the end if. Here is an example. O a:=90; if a>60 then print(`a is bigger than 60 `);end if; a := 90 a is bigger than 60 In the above, if the boolean expression (between the if and the then) is False, then nothing gets done. We can alter that: O a:=50; if a > 60 then print(`a is bigger than 60 `); else print(`a is smaller than 60 `);end if; a := 50 a is smaller than 60 You can put in lots of other alternatives using elif (which stands for else if). O a:=50; if a > 60 then print(`a is bigger than 60 `); elif a > 40 then print(`a is bigger than 40 but less than 60 `); else print(`a is smaller than 60 `);end if; a := 50 a is bigger than 40 but less than 60 We can apply these ideas to get Maple to search for the solutions of an equation. For example,consider Pell's equation, named (probably incorrectly) after the English mathematician John Pell (1611 to 1685) but in fact studied by the Indian mathematician Brahmagupta (598 to 660) much earlier. It asks for an integer solution ( a, b) to the equation a2 K n b2 = 1 where n is a fixed integer. We'll look for solutions a, b for small(ish) values of a and b.
34
O n:=5; for a from 1 to 1000 do for b from 1 to 1000 do if a^2-n*b^2=1 then print(a,b); end if; end do;end do: n := 5 9, 4 161, 72
Lists
A list in Maple is an ordered set and is written with [ ]. It is often convenient to put results of calculations into such a list. The nth element of a list L (say) can then be referred to later by L[n]. The last element of L is L[-1], etc. You can treat the elements of a list as variables and assign to them. O A:=[1,2,3,4,5]; A[3]; A[-2]; A[2..-1]; A[2]:=55; A;
A := 1, 2, 3, 4, 5 3 4 2, 3, 4, 5 A2 := 55 1, 55, 3, 4, 5
You can't assign to an element that isn't there! O A[6]:=22; Error, out of bound assignment to a list The elements of a list are op(A) which stands for the operands of A. To add extra elements: O L:=[]; for i from 1 to 100 do L:=[op(L),i^2];end do: L; L := 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401, 2500, 2601,
35
2704, 2809, 2916, 3025, 3136, 3249, 3364, 3481, 3600, 3721, 3844, 3969, 4096, 4225, 4356, 4489, 4624, 4761, 4900, 5041, 5184, 5329, 5476, 5625, 5776, 5929, 6084, 6241, 6400, 6561, 6724, 6889, 7056, 7225, 7396, 7569, 7744, 7921, 8100, 8281, 8464, 8649, 8836, 9025, 9216, 9409, 9604, 9801, 10000 The number of elements in a list is nops ( = number of operands). O nops(L); 100
You can delete elements from a list (or replace then) using subsop (= substitute operand). Note that the original list is unchanged. O L0:=[1,2,3,4,5]; L1:=subsop(-1=NULL,1=NULL,L0); L2=subsop(1=55,L0); L0; L0 := 1, 2, 3, 4, 5 L1 := 2, 3, 4 L2 = 55, 2, 3, 4, 5 1, 2, 3, 4, 5 As above one can use a for loop to put elements into a list. We could have done the same thing using the seq function: O M:=[seq(n^2,n=1..100)]; M := 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 729, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401, 2500, 2601, 2704, 2809, 2916, 3025, 3136, 3249, 3364, 3481, 3600, 3721, 3844, 3969, 4096, 4225, 4356, 4489, 4624, 4761, 4900, 5041, 5184, 5329, 5476, 5625, 5776, 5929, 6084, 6241, 6400, 6561, 6724, 6889, 7056, 7225, 7396, 7569, 7744, 7921, 8100, 8281, 8464, 8649, 8836, 9025, 9216, 9409, 9604, 9801, 10000 O restart; You can use $ instead of the seq function (but the variable you use must be unassigned this time). O S:=0 $ 5; T:=n^2 $ n=1..10;
S := 0, 0, 0, 0, 0
T := 1, 4, 9, 16, 25, 36, 49, 64, 81, 100 The elements of a list do not need to be all the same kind and they can even be other lists: O N:=[x^2,[1,2],[]];
36
You can do quite useful things with lists. For example, here are all the primes < 1000. The function isprime returns either true or false. O L:=[]: for i from 1 to 1000 do if isprime(i) then L:=[op(L),i];end if;end do: L; 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, 619, 631, 641, 643, 647, 653, 659, 661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739, 743, 751, 757, 761, 769, 773, 787, 797, 809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883, 887, 907, 911, 919, 929, 937, 941, 947, 953, 967, 971, 977, 983, 991, 997 There are 168 of them! O nops(L); 168
Sets
Maple can also deal with sets, which it puts in { }. The elements are not in any particular order, and if an element is "repeated" it will be left out. O S:={5,3,6,8}; T:={1,2,2,3};
S := 3, 5, 6, 8 T := 1, 2, 3
You can add an element to a set using union: O S:=S union {13}; S := 3, 5, 6, 8, 13
O {1,2,3,4} intersect {3,4,5,6}; {1,2,3,4} minus {3,4,5,6}; 3, 4 1, 2 We can get Maple to loop over only certain specified values. We may list these values either as a list: O for i in [2,8,5,3] do x:=i; print(`the value of x is `,x); end do: the value of x is , 2 the value of x is , 8 the value of x is , 5 the value of x is , 3 or as a set. If Maple uses a set it will usually put it into order before implementing the commands (but don't count on it). O for i in {2,8,5,3} do x:=i; print(`the value of x is `,x); end do: the value of x is , 2 the value of x is , 3 the value of x is , 5 the value of x is , 8 You can find out more with the Help command: ?list
Summing
Earlier we used a for loop to sum the terms of Arithmetic and Geometric Progressions. The process of summing the terms of a sequence is so common that Maple has a special function that lets you do it without writing your own loop. You enter sum(expression, n = a .. b) and Maple will take the sum over the range from a to b. What you sum over had better be an unassigned variable, or there will be trouble. O sum(n^2,n=1..100); 338350
In fact Maple is clever enough (sometimes) to even work out the general formula for a sum and can (sometimes) sum all the way to infinity. O restart; sum(a*r^i,i=1..n); sum(a*r^i,i=1..infinity);
38
O sum(sin(i),i=1..n);
a rn C 1 ar K rK 1 rK 1 K ar rK 1 C 1 sin 1 2
It knows the answer to the "Basel" problem that Leonhard Euler (1707 to 1783) solved: O sum(1/i^2,i=1..infinity); 1 2 ! 6
In the next case it gives the answer in the form of the Riemann zeta function. O sum(1/i^3,i=1..infinity); Sometimes it can't do it. O sum(cos(sqrt(n)*Pi),n=1..N); sum(cos(sqrt(n)*Pi),n=1..10); evalf(%);
N n=1
" 3
> cos
n ! 6 ! C cos 7 !
K C cos 1 C cos
2 ! C cos ! 8 ! C cos
C cos
5 ! C cos
10 ! K 1.877848844
50 K 1
i
>i
i=1
As with Diff and Int using a capital letter just prints the formula: O Sum(i*(-1)^i,i=1..100);
100
>i
i=1
K 1
O evalf(%);
50.
39
Procedures
We saw earlier how to define a function using an assignment like: f := x -> x^2; This is in fact shorthand for using a construction known as a procedure. We can get the same effect with: O f:=proc(x) x^2; end proc; f(20); f := proc x x^2 end proc 400 Procedures can act like functions and return a value (like x2 in the above example) but can implement functions which are more complicated than just evaluating a formula. For example, we can adapt the code we wrote above to define a procedure which returns the number of terms of a Geometric Progression needs for its sum to go past some given value n. Note that variables which are only needed inside the procedure get declared to be local , so that if the same variable names had been used somewhere else, these will not be changed by the procedure. O howmanyterms:=proc(x) local term,total,count; term:=a:total:=0: count:=0: while total<x do total:=total+term; term:=term*r; count:=count+1; end do: count; end proc; howmanyterms := proc x local term, total, count; term := a; total := 0; count := 0; while total ! x do total := total C term; term := term * r; count := 1 C count end do; count end proc The value returned by the procedure is the last thing in the listing before the end statement. If we had wished we could have put return count; as the last thing in the "body of the procedure". Notice that Maple will pretty-print the procedure, indenting the code to indicate where the procedure or loops start and finish. To call the procedure, we tell Maple what the values of a and r are and then apply the procedure to a number. O a:=3;r:=2; howmanyterms(10000);
a := 3
40
r := 2 12 We can use an if-clause to define a function. O f:=proc(x) if x < 0 then x^2; else x+1; end if;end proc; f(-1); f(3); f := proc x if x ! 0 then x^2 else x C 1 end if end proc 1 4 We can plot this function, but it is necessary to be a bit careful plotting functions defined by procedures, otherwise Maple gets unhappy. You can either plot them without mentioning the variables at all, by: plot( f , -1 . . 1 ); or you can do it by putting in some single quotes: ' ': plot('f(x)', x = -1..1); If the variable x had been assigned to you would have to put that in quotes too. O plot(f,-1..1);
We count the primes up to a real number n. When we plot this we get a kind of "step function". O countprimes:=proc(n) local count,i; count:=0; for i from 1 to n do if isprime(i) then count:=count+1;end if; end do; return count; end proc; countprimes := proc n local count, i; count := 0; for i to n do if isprime i then count := count C 1 end if end do; return count end proc
41
O plot(countprimes,1..100); plot(countprimes,1..1000);
25 20 15 10 5 0 10 20 30 40 50 60 70 80 90 100
160 100 60 0
100
200
300
400
500
600
700
800
900 1000
There is a "flat bit" near 890. In fact a sequence of 19 consecutive non-primes from 888 to 906. O plot(countprimes,880..910);
The French mathematician Adrien-Marie Legendre (1752 to 1833) approximated the growth of the number of primes with the function: O L:=x/(log(x)-1.08); L := x ln x K 1.08
42
O plot(['countprimes(x)',L],x=0..100,0..25,colour=[black,red]);
25 20 15 10 5 0 0 20 40 60 80 100
The German mathematician Carl Friedrich Gauss (1777 to 1855) used a different approximation: the logarithmic integral: O logint:=proc(x) return int(1/log(t),t=2..x); end proc; logint := proc x return int 1 / log t , t = 2 ..x end proc O plot([countprimes,logint],1..100,colour=[black,red]);
25 20 15 10 5 0 10 20 30 40 50 60 70 80 90 100
You can see these different approximations together(we'll specify the colours since otherwise Maple will use colours which do not print well): O plot(['countprimes(x)',L,'logint(x)'],x=0..100,0..25,colour= [black,red,blue]);
43
25 20 15 10 5 0
20
40 x
60
80
100
More Procedures
If you want to make a procedure do something to a variable you have already defined outside the procedure, you have to declare it as global. We'll add an element to the end of a list. In this case we don't want to return anything so we put return; and nothing else at the end of the procedure. O addon:=proc(x) global A; A:=[op(A),x]; return; end proc; addon := proc x global A; A := op A , x ; return end proc Then apply this: O A:=[1,2,3]; addon(0); A;
A := 1, 2, 3 1, 2, 3, 0
We could do something similar without using a global variable. But notice that in this case the original list is unchanged. O addend:=proc(A,x) return [op(A),x]; end proc; addend := proc A, x return op A , x end proc O A:=[1,2,3]; B:=addend(A,0); A;
A := 1, 2, 3
44
B := 1, 2, 3, 0 1, 2, 3 One thing to be careful of is that you cannot assign to the parameters passed to the procedure as if they were local variables. O test:=proc(n) n:=n+1; return n end proc; test := proc n n := n C 1; return n end proc O test(9); Error, (in test) illegal use of a formal parameter
Reversing
As an example of the use of procedures we'll use Maple to find a solution to the following problem: Find a four digit number which is multiplied by 4 when its digits are reversed. We start by defining a procedure which turns the digits of a number into a list. Note that we test each procedure as we write it. O digits:=proc(n) local ans,m,d; m:=n;ans:=[]; while m<>0 do d:=m mod 10;m:=(m-d)/10;ans:=[d,op(ans)]; end do; return ans; end proc; digits := proc n local ans, m, d; m := n; ans := ; while m!O0 do d := mod m, 10 ; m := 1 / 10 * m K 1 / 10 * d; ans := d, op ans end do; return ans end proc O K:=digits(12345008); K := 1, 2, 3, 4, 5, 0, 0, 8
It's easy to write a list in the opposite order: O reverselist:=proc(L) local i,M; M:=[];
45
O for i from 1 to nops(L) do M:=[L[i],op(M)]; end do; return M; end proc; reverselist := proc L local i, M; M := end proc O reverselist(K); 8, 0, 0, 5, 4, 3, 2, 1 ; for i to nops L do M := L i , op M end do; return M
Now we have to get a number back from its list of digits O buildit:=proc(L) local ans,i; ans:=0; for i from 1 to nops(L) do ans:=10*ans+L[i]; end do; return ans; end proc; buildit := proc L local ans, i; ans := 0; for i to nops L do ans := 10 * ans C L i end do; return ans end proc O buildit(K); 12345008
Put the ingredients together: O reversenum:=proc(n) buildit(reverselist(digits(n))); end proc; reversenum := proc n buildit reverselist digits n O reversenum(78531); Now we can look for our four digit number O for n from 1000 to 9999 do if reversenum(n)=4*n then print(n); end if end do: 2178 Do the same for a 5 digit number O for n from 20000 to 25000 do
46
end proc
13587
and even for a 6 digit number O for n from 200000 to 250000 do if reversenum(n)=4*n then print(n); end if end do: 219978 So it looks as if we might have a theorem! O 219999978*4; 879999912
An old question asks if one can always make a number "palindromic" by adding it to its reverse O n:=1790; count:=0: while reversenum(n)<>n do n:=n+reversenum(n); print(n); count:=count+1; end do: print(`Palindromic in `,count,` steps`); n := 1790 2761 4433 7777 Palindromic in , 3, steps Numbers to try are 89 or 296 or ... . A number NOT to try is 196 O n:=196; count:=0: while reversenum(n)<>n do n:=n+reversenum(n); print(n); count:=count+1; end do: print(`Palindromic in `,count,` steps`); n := 196 887 1675 7436 13783 52514 Warning, computation interrupted
47
Pythagorean triples
We can use Maple to search for solutions to equations with integer solutions. Such equations are called Diophantine after the Greek mathematician Diophantus of Alexandria (200 to 284 AD). For example, looking for Pythagorean triples satisfying a2 C b2 = c2 we can use the Maple function type(x, integer) to check whether a number has an integer square root. We take y # x since otherwise we will get each pair ( x, y) twice. O for x from 1 to 20 do for y from x to 20 do if type(sqrt(x^2+y^2),integer) then print(x,y,sqrt(x^2+y^2)) fi; od od: 3, 4, 5 5, 12, 13 6, 8, 10 8, 15, 17 9, 12, 15 12, 16, 20 15, 20, 25 Here are all solutions up to x = 100 and y = 100. We'll leave out those which are multiples of others we have found. We do this by insisting that x and y have no factor bigger than 1 in common. We arrange this using the igcd (= integer greatest common divisor or highest common factor) function. Notice how we combine the two conditions with an and. O L:=[]: for x from 1 to 100 do for y from x to 100 do if type(sqrt(x^2+y^2),integer) and igcd(x,y) = 1 then L:=[op(L),[x,y,sqrt(x^2+y^2)]]; fi; od: od: L; 3, 4, 5 , 5, 12, 13 , 7, 24, 25 , 8, 15, 17 , 9, 40, 41 , 11, 60, 61 , 12, 35, 37 , 13, 84, 85 , 16, 63, 65 , 20, 21, 29 , 20, 99, 101 , 28, 45, 53 , 33, 56, 65 , 36, 77, 85 , 39, 80, 89 , 48, 55, 73 , 60, 91, 109 , 65, 72, 97
O for a from 1 to 100 do for b from 1 to 100 do c:=sqrt(2*a^2+3*b^2); if type(c,integer) then print(a,b,c); end if; end do end do: Work modulo 3 to see that one can't find solutions to this last one! We can now look again at Pell's equation, and solve it more efficiently than we did before. We look for a solution (x, y) to the equation n x2 C 1 = y2 where n is a fixed integer. O n:=2: for x from 0 to 2000 do y:=sqrt(n*x^2+1); if type(y,integer) then print(x,y); end if; end do: 0, 1 2, 3 12, 17 70, 99 408, 577 Can you see what recurrence relation is satisfied by the solution? If you could you could generate lots more solutions. O n:=5: for x from 0 to 2000 do y:=sqrt(n*x^2+1); if type(y,integer) then print(x,y); end if; end do: 0, 1 4, 9 72, 161 1292, 2889 It's harder to spot the relation this time. Though if you take the clue from the last one you might manage it! The next pair is: (23184, 51841) O 51841^2-5*23184^2; 1 The Indian mathematician Brahmagupta solved the equation in 628AD with n = 83 and found solutions: (9, 82), (1476, 13447), (242055, 2205226), (39695544, 361643617), (6509827161, 59307347962), (1067571958860, 9726043422151), (175075291425879, 1595011813884802)
Interpolation
A parabola has an equation y = a x2 C b x C c with three coefficients we can choose. So in general one can find a (unique!) parabola through any three points in the plane. We'll call the points p, q, r and each point will be a list of length 2.
49
O restart; O parab:=proc(p,q,r) local par,a,b,c,eqn1,eqn2,eqn3,s; par:=a*x^2+b*x+c; eqn1:=subs(x=p[1],p[2]=par); eqn2:=subs(x=q[1],q[2]=par); eqn3:=subs(x=r[1],r[2]=par); s:=solve({eqn1,eqn2,eqn3},{a,b,c}); subs(s,par); end proc; parab := proc p, q, r local par, a, b, c, eqn1, eqn2, eqn3, s; par := a * x^2 C b * x C c; eqn1 := subs x = p 1 , p 2 = par ; eqn2 := subs x = q 1 , q 2 = par ; eqn3 := subs x = r 1 , r 2 = par ; s := solve subs s, par end proc O parab([-1,-4],[2,-1],[1,3]); 5 7 K x2 C xC2 2 2 We'll now plot the parabola and some points. We do this by assigning our plots (things Maple calls "Plot structures" to variables P and Q and then using the display function from the plots package. Note how we plot the individual points. You can use ?plot[options] to see what all the other things you can specify are. O points:=[-1,-1],[2,-2],[1,2]; P:=plot(parab(points),x=-2..3,-3..3): Q:=plot({points},style=point,symbol=cross,symbolsize=20, colour=blue): plots[display]([P,Q]); points := K K , 2, K , 1, 2 1, 1 2 eqn1, eqn2, eqn3 , a, b, c ;
3 2 1 K 2 K 1 K 1 K 2 K 3
50
1 x
More plotting
You can use a similar method to animate the drawing of (for example) curves. Put all the curves (one "frame" at a time) into a list and then give it to plots[display]. If you want to see the result with the frames in sequence put in insequence=true otherwise you'll get them all on top of one another. Then click on the window and choose Play from the Animation window or click on the Play icon on the tool bar. The only problem with this is that it can produce very large files. O restart; O L:=[]: for k from 0 to 10 by 0.2 do L:=[op(L),plot(cos(k*sin(x)),x=0..Pi,-1..1)]; end do: plots[display](L,insequence=true);
1 0.5 0 K 0.5 K 1
In polar coordinates: O L:=[]: for k from 0.1 to 10 by 0.1 do L:=[op(L),plot([(t/5),t,t=0..k*Pi],coords=polar,thickness=2)] ; end do: plots[display](L,insequence=true);
2 1
K 3
K 2
K 1
0 K 1 K 2
O L:=[]:
51
0.5
K 0.8
K 0.6
K 0.4
K 0.2
0.2
0.4
0.6
K 0.5
K 1
You can also animate 3-dimensional pictures in a similar way. If you do a lot of this, there are commands plots[animate] and plots[animate3d] which you can learn about. O L:=[]: for k from -1 to 1 by 0.01 do L:=[op(L),plot3d(k*(x^2+y^2),x=-1..1,y=-1..1,view=-1..1)]; end do: plots[display](L,insequence=true);
Recursion
O restart; Maple will let procedures call themselves. This is called recursion. Of course they can't carry on doing this indefinitely, so things have always got to be arranged so that the process terminates. One of the best known illustrations is the process by which the Fibonnaci numbers: 1, 1, 2, 3, 5, 8, 13, 21, ... are calculated. These were introduced by Fibonacci of Pisa (1170 to 1250) who was the person who introduced the Arabic (or Indian) numeral system to Europe. He introduced them in a problem involving rabbit breeding, but in fact they were known by the Indian mathematician Hemchandra more than 50 years earlier (and other Indians had considered them even before that). O fib:=proc(n) if n<3 then 1;else fib(n-1)+fib(n-2);end if;end proc; fib := proc n if n ! 3 then 1 else fib n K 1 C fib n K 2 end if end proc O fib(35); 9227465
53
Unfortunately the process by which this works is "exponential" in n and so it is not a very practical algorithm. We can see how the time increases by modifying our program. O fib:=proc(n) global count; count:=count+1; if n<3 then 1;else fib(n-1)+fib(n-2);end if; end proc; fib := proc n global count; count := count C 1; if n ! 3 then 1 else fib n K 1 C fib n K 2 end if end proc O count:=0:start:=time(): fib(30); print(count,` calls `,time()-start,` secs`); 832040 1664079, calls , 5.698, secs O count:=0:start:=time(): fib(35); print(count,` calls `,time()-start,` secs`); 9227465 0, calls , 15.374, secs To get round this, Maple has a device: option remember; which stores the result of any calculation so it doesn't have to do it again. This makes the calculation linear in n. O fib0:=proc(n) option remember; global count; count:=count+1; if n<3 then 1;else fib0(n-1)+fib0(n-2);end if; end proc; fib0 := proc n option remember; global count; count := count C 1; if n ! 3 then 1 else fib0 n K 1 C fib0 n K 2 end if end proc O count:=0:start:=time(): fib0(300); print(count,` calls `,time()-start,` secs`); 222232244629420445529739893461909967206666939096499764990979600 300, calls , 0.003, secs
54
We can apply a similar process to calculating the elements of Pascal's triangle. O bc:=proc(n,r) if r>n then 0; elif r=0 then 1 else bc(n-1,r-1)+bc(n-1,r);end if; end proc; bc := proc n, r if n ! r then 0 elif r = 0 then 1 else bc n K 1, r K 1 C bc n K 1, r end if end proc Unfortunately this too soon gets out of control! O bc(30,13); Warning, computation interrupted To see why: O bc:=proc(n,r) global count; count:=count+1; if r>n then 0; elif r=0 then 1 else bc(n-1,r-1)+bc(n-1,r);end if; end proc; bc := proc n, r global count; count := count C 1; if n ! r then 0 elif r = 0 then 1 else bc n K 1, r K 1 C bc n K 1, r end if end proc O count:=0:start:=time(): bc(20,10); print(count,` calls `,time()-start,` secs`); 184756 705431, calls , 3.057, secs O count:=0:start:=time(): bc(25,10); print(count,` calls `,time()-start,` secs`); 3268760 10623469, calls , 15.469, secs Again option remember; gets us out of the hole! O bc0:=proc(n,r) option remember; global count; count:=count+1; if r>n then 0; elif r=0 then 1 else bc0(n-1,r-1)+bc0(n-1,r); end if; end proc;
55
bc0 := proc n, r option remember; global count; count := count C 1; if n ! r then 0 elif r = 0 then 1 else bc0 n K 1, r K 1 C bc0 n K 1, r end if end proc O count:=0:start:=time(): bc0(20,10); print(count,` calls `,time()-start,` secs`); 184756 131, calls , 0.001, secs
More recursion
The highest common factor or greatest common divisor can be defined very economically using a recursive procedure. This already exists as a standard Maple function igcd. O hcf:=proc(a,b) if b mod a =0 then a else hcf(b mod a,a);end if;end proc; hcf := proc a, b if mod b, a = 0 then a else hcf mod b, a , a end if end proc O hcf(12345,7896); igcd(12345,7896);
3 3
One can also implement the Euclidean algorithm which writes the hcf as a combination of the original numbers. You can get this as a standard Maple function as igcdex (= extended integer gcd ). O euclid:=proc(a,b) local t; if b mod a=0 then return a,1,0; else t:=euclid(b mod a,a); return t[1],t[3]-t[2]*(trunc(b/a)),t[2]; end if; end proc; euclid := proc a, b local t; if mod b, a = 0 then return a, 1, 0 else t := euclid mod b, a , a ; return t 1 , t 3 K t 2 * trunc b / a , t 2
56
There are some other interesting places to look for primes. The mathematician Leonhard Euler ( 1707 1783) discovered that the formula x2 K x C 41 is particularly prime-rich. In fact it produces primes for every integer from 1 to 40 (but not, of course, for x = 41) and for lots of others as well. O howmanyprimes:=proc(n) local count,x; count:=0: for x from 1 to n do if isprime(x^2-x+41) then count:=count+1;end if; end do: count; end proc; howmanyprimes(40); howmanyprimes(400); howmanyprimes := proc n local count, x; count := 0; for x to n do if isprime x^2 K x C 41 then count := count C 1 end if end do; count end proc 40 270
58
For many years mathematicians have tried to find big primes. The French mathematician Fermat (1601 1665) best known for his so-called Last Theorem, investigated primes in the sequence 2n + 1. O for n from 1 to 50 do if isprime(2^n+1) then print(n,2^n+1); end if;end do: 1, 3 2, 5 4, 17 8, 257 16, 65537 You should note that the values of n which give primes are all of the form 2m, but that n = 32 does not give a prime. Euler was the first to show (150 years after Fermat guessed that 232 + 1 would be prime) that it is composite. You can use the Maple function ifactor (= integer factorise) to verify this. (In fact nobody knows if the formula 22 +1 produces any other primes after m = 4, though a lot of effort has gone into looking for them.) O a:=2^32+1; ifactor(a); a := 4294967297 641 6700417
m
One of Fermat's correspondents was the mathematician Mersenne (1588 1648). He too investigated primes and looked at numbers of the form 2n 1. O for n from 1 to 150 do m:=2^n-1; if isprime(m) then print(n,m);end if; end do: 2, 3 3, 7 5, 31 7, 127 13, 8191 17, 131071 19, 524287 31, 2147483647 61, 2305843009213693951 89, 618970019642690137449562111
59
107, 162259276829213363391578010288127 127, 170141183460469231731687303715884105727 In fact it is fairly easy to show that if n is not prime the neither is 2n 1. For example, 235 1 is divisible by 25 1 and by 27 1. O (2^35-1)/(2^5-1);(2^35-1)/(2^7-1); 1108378657 270549121 Prime numbers of the form 2n K 1 are called Mersenne primes and they are almost always the largest primes known. This is because a French mathematician called Lucas (1842 1891) invented a test for such primes using the Fibonacci numbers. In 1876 he proved that the number 2127 K 1 (see above) is prime. This was the largest known prime until people started using computers in the 1950's. At present 46 Mersenne primes are known. The most recent is 237156667K 1 and was discovered on 6th September 2008 using GIMPS (the Great InterNet Mersenne Prime Search). The largest (and largest known prime) was the 45th to be discovered and was found on August 23rd 2008 and is 243112609K 1. With a bit of effort, we can show that it has 12 978 189 decimal digits (and won a prize of $100 000 for being the first one found with more than 10 million digits). O evalf(43112609*log[10](2)); 1.297818850 107 This is (well) outside the range of Maple, but you can test the next after those listed above. O isprime(2^521-1); true
n:=2^p: n mod p;
p := 3456789 2288630
Much more efficiently, it can reduce modulo p as it goes along and never have to handle integers bigger than p. To do this use &^ instead of ^. O p:=3456789; 2&^p mod p;
p := 3456789 2288630
So we'll test a prime candidate with some a: O testa:=proc(n,a) a&^n mod n=a;end proc; testa := proc n, a mod a &^ n, n = a end proc O testa(1234577,2); 2 =2
O probprime:=proc(n) testa(n,2) and testa(n,3) and testa(n,5) and testa(n,7); end proc; probprime := proc n testa n, 2 and testa n, 3 and testa n, 5 and testa n, 7 end proc O probprime(1234577); true
Let's see how good out test is by comparing it with the isprime function in Maple.. O for n from 3 to 2000 by 2 do if probprime(n) and not isprime(n) then print(n); end if; end do: 561 1105 1729 In fact, the above numbers will pass testa for any value of a. They are called Carmichael numbers or pseudoprimes. The isprime test in Maple uses a (slightly) more sophisticated test. It is not known to produce any incorrect answers!
A lot of clever stuff has been written for Maple and has been put into Packages. To see what packages are available type in ?index,package. O restart; The LinearAlgebra package lets you work with Matrices (and Vectors). Note that all the commands in this package have capital letters. O with(LinearAlgebra); &x, Add, Adjoint, BackwardSubstitute, BandMatrix, Basis, BezoutMatrix, BidiagonalForm, BilinearForm, CharacteristicMatrix, CharacteristicPolynomial , Column, ColumnDimension, ColumnOperation, ColumnSpace, CompanionMatrix, ConditionNumber, ConstantMatrix, ConstantVector , Copy, CreatePermutation, CrossProduct, DeleteColumn, DeleteRow, Determinant, Diagonal, DiagonalMatrix, Dimension, Dimensions, DotProduct, EigenConditionNumbers , Eigenvalues , Eigenvectors , Equal, ForwardSubstitute, FrobeniusForm, GaussianElimination, GenerateEquations , GenerateMatrix, GetResultDataType, GetResultShape, GivensRotationMatrix , GramSchmidt, HankelMatrix, HermiteForm, HermitianTranspose, HessenbergForm, HilbertMatrix, HouseholderMatrix, IdentityMatrix , IntersectionBasis , IsDefinite, IsOrthogonal, IsSimilar, IsUnitary, JordanBlockMatrix, JordanForm, LA_Main, LUDecomposition, LeastSquares, LinearSolve, Map, Map2, MatrixAdd, MatrixExponential , MatrixFunction, MatrixInverse, MatrixMatrixMultiply , MatrixNorm, MatrixPower, MatrixScalarMultiply , MatrixVectorMultiply , MinimalPolynomial, Minor, Modular, Multiply, NoUserValue, Norm, Normalize, NullSpace, OuterProductMatrix, Permanent, Pivot, PopovForm, QRDecomposition, RandomMatrix, RandomVector, Rank, RationalCanonicalForm , ReducedRowEchelonForm , Row, RowDimension, RowOperation, RowSpace, ScalarMatrix, ScalarMultiply, ScalarVector , SchurForm, SingularValues, SmithForm, SubMatrix, SubVector, SumBasis, SylvesterMatrix, ToeplitzMatrix, Trace, Transpose, TridiagonalForm, UnitVector , VandermondeMatrix, VectorAdd, VectorAngle, VectorMatrixMultiply , VectorNorm, VectorScalarMultiply , ZeroMatrix, ZeroVector, Zip The above lets you use all the functions it lists. If you don't want to see this list, put when you enter with ( ... ). If you ever use restart; you will have to read the package in again.
62
: instead of ;
A matrix is a "box of numbers". There are several ways to enter matrices. You tell Maple the number of rows and columns (or just how many rows if you want a square one). (In fact you don't need to read the package for this bit.) The second parameter is a list of lists. Maple will put in 0 if you don't tell it what the entry is. O A:=Matrix(2,[[a,b],[c,d]]); B:=Matrix(2,3,[[a,b,c],[d,e,f]]); C:=Matrix(3,2,[[a,b],[c]]); Z:=Matrix(2,1); a b A := c d B := a b c d e f a b C := c 0 0 0 Z := 0 0
You can enter a matrix by rows: written < a | b | c > or by columns: < a , b , c > and then rows of columns or columns of rows. There is something called the matrix palette on the View menu which can help, O A:=<<a|b|c>,<d|e|f>,<g|h|i>>; B:=<<a,b,c>|<d,e,f>|<g,h,i>>; a b c A := d e f g h i a d g B := b e h c f i
You can initialise the entries of a matrix using a double for-loop or you can use the following: O M := Matrix(3,5,(i,j) -> i+2*j); 3 5 7 9 11 M := 4 6 8 10 12 5 7 9 11 13
63
You can even get a matrix with "unassigned variables" for all the entries. O M := Matrix(3,(i, j) -> m[i,j]); m1, 1 m1, 2 m1, 3 M := m2, 1 m2, 2 m2, 3 m3, 1 m3, 2 m3, 3 You can add or subtract matrices of the same size and can multiply them by a number (or a variable) using *. O A:=<<a|b>,<c|d>>; B:=<<e|f>,<g|h>>; C:=<<p|q>,<r|s>>; A+B; A-B; 3*C; A := a b c d e f g h p q r s
B :=
C :=
aCe bCf cCg dCh aKe bKf cKg dKh 3p 3q 3r 3s You can multiply together matrices of compatible shapes by A.B; and you can take powers of matrices by (for example) A^3; or A^(-1); (giving the inverse of the matrix). O A.B;A^3;A^(-1); a eCb g a fCb h c eCd g c fCd h a2 C b c a C a b C b d c c a C d c a C b c C d2 c
64
a2 C b c b C a b C b d d c a C d c b C b c C d2 d
d a dKb c K c a dKb c
b a dKb c
a a dKb c
Multiplication of square matrices is associative: A.(B.C) = (A.B).C and distributive A.(B + C) = A.B + A.C but not (in general) commutative A.B $ B.A. O (A.B).C-A.(B.C); a eC b g p C a fC b h rK a e p C f r K b g p C h r , a eC b g q C a f C b h sK a e q C f s K b g q C h s , c eC d g p C c fC d h rK c e p C f r K d g p C h r , c eC d g q C c f C d h sK c e q C f s K d g q C h s O simplify(%); 0 0 0 0 O A.(B+C)-(A.B+A.C); a e C p C b g C r K a e K b g K a p K b r, a f C q C b h C s K a f K b h Ka qKb s , c e C p C d g C r K c e K d g K c p K d r, c f C q C d h C s K c f K d h Kc qKd s O simplify(%); 0 0 0 0 O A.B-B.A; b gKc f c eCd gKg aKh c O simplify(%); b gKc f c eCd gKg aKh c a fCb hKe bKf d c fKb g a fCb hKe bKf d c fKb g
Here are some useful matrices: RandomMatrix produces a matrix with entries in the range -99 .. 99. O IdentityMatrix(4); ZeroMatrix(2,3); RandomMatrix(3,2);
65
1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 K K 50 79 30 K 71 62 28
The determinant of a matrix is a combination of the entries of a square matrix (in rather a complicated way!) which has the property that it is 0 if the matrix does not have an inverse. O N:=<<a|b>,<c|d>>; Determinant(N); N := a b c d
a dKb c O Determinant(M); m1, 1 m2, 2 m3, 3 K m1, 1 m2, 3 m3, 2 C m2, 1 m3, 2 m1, 3 K m2, 1 m1, 2 m3, 3 C m3, 1 m1, 2 m2, 3 K m3, 1 m2, 2 m1, 3 We can use Maple to demonstrate a theorem discovered by the English mathematician Cayley and the Irish mathematician William Hamilton. First we take a "general matrix". O n:=2; A:=Matrix(n,(i,j)->a[i,j]); Arthur
A := O Id:=IdentityMatrix(n);
Id :=
Then we take the determinant of the matrix A - xI where x is an unassigned variable. This is a polynomial in x called the characteristic polynomial .
66
(The roots (possibly complex!) of this are the eigenvalues .) Then the Cayley-Hamilton theorem says that the matrix A satisfies its characteristic polynomial. That is, if we substitute A for x in this polynomial, we get the zero matrix. O p:=Determinant(A-x*Id); p := a1, 1 a2, 2 K a1, 1 x K x a2, 2 C x2 K a1, 2 a2, 1 O p:=collect(p,x); p := x2 C K 1, 1 K a2, 2 x C a1, 1 a2, 2 K a1, 2 a2, 1 a Unfortunately, Maple won't let you use the subs function with matrices so we do it the hard way. O Q:=sum(coeff(p,x,k)*A^k,k=0..n); Q := a1, 1 a2, 2 K a1, 2 a2, 1 C K 1, 1 K a2, 2 a O simplify(Q); 0 0 0 0 Changing n from 2 to a bigger number will make Maple do more work but the result still holds! a1, 1 a1, 2 a2, 1 a2, 2 C a1, 1 a1, 2 a2, 1 a2, 2
2
3 K 4
We'll print the vector and also something that enables us to see its direction. O for n from 1 to 15 do W:=(A^n).V; print(W,evalf(W/Norm(W,2),5)); end do: K 3 K 0.28734 , K 10 K 0.95780 K 16 31 K 1 K 172 K 174 685 337 K 3262 K 2588 14059 8883 K 64000 K 46234 282649 190181 K 1269298 K 888936 5647735 3869863 K 25257748 K 17518022 112640581 77604537 K 503116390 , , , K 0.45865 0.88862 K 0.0058138 K 0.99997 , K 0.24620 0.96924 , 0.10276 K 0.99468 K 0.18104 0.98347 , 0.13748 K 0.99052 K 0.16143 0.98691 , 0.14818 K 0.98899 K 0.15548 0.98784 , 0.15144 K 0.98845 K 0.15368 0.98816 ,
68
0.15245 K 0.98831
After a few steps the vectors are "settling down". We can now calculate how the vectors are stretched each time: the eigenvalue : O evalf((A.W)[1]/W[1]); K 4.469872901
Maple will calculate the eigenvalues and associated eigenvectors. O E:=evalf(Eigenvectors(A)); 2.464101616 2.154700534 K 0.1547005384 E := , K 4.464101616 1. 1. We've got quite close to the larger eigenvalue. To see how good our estimate of the eigenvector is: O ev:=Column(E[2],2); ev/Norm(ev,2); ev := K 0.1547005384 1.
K 0.152881949816236512 0.988244458599999986 So it wasn't bad. We can do the same thing with more iterations (and a different starting vector!): O A:=Matrix(2,[[2,1],[3,-4]]); V:=Vector([-2,0.9]); W:=(A^100).V: W/Norm(W,2); evalf((A.W)[1]/W[1]); A := 2 1 3 K 4 K 2 0.9
V :=
This process will only settle down if there is a real dominating eigenvalue. For example: O A:=Matrix(2,[[1,3],[-3,1]]); V:=Vector([-1,1]); for n from 1 to 10 do W:=(A^n).V; print(W,evalf(W/Norm(W,2),5)); end do: A := 1 3 K 1 3 K 1 1 0.44722 0.89444 0.98994 K 0.14142 , 0.17889 K 0.98388 , K 0.87680 K 0.48083 K 0.73344 0.67977 , 0.41295 0.91074 0.99462 K 0.10376 , 0.21609 K 0.97636 K 0.85795 K 0.51377 , K 0.75869 0.65144
V := 2 4 14 K 2 8 K 44 K 124 K 68 K 328 304 584 1288 4448 K 464 3056 K 13808 K 38368 K 22976 K 107296 92128 ,
70
K I 1. I 1. 1. 1.
Using dsolve
O restart; We explore the dsolve Maple function. First we define a differential equation. We can use a variety of notations. Note the form of the second derivative using the D notation. We'll look at the equation of (say) a pendulum executing SHM with a damping term a. O deq:=diff(x(t),t$2)+a*diff(x(t),t)+x(t)=0; d2 d deq := 2 x t C a x t Cx t =0 dt dt O deq:=D(D(x))(t)+a*D(x)(t)+x(t)=0; deq := D 2 x t C a D x t C x t = 0 O deq:=(D@@2)(x)(t)+a*D(x)(t)+x(t)=0; deq := D 2 x t C a D x t C x t = 0 O dsolve(deq,x(t)); x t = _C1 e
K 1 1 aC 2 2 a2 K 4 t K 1 1 aK 2 2 a2 K 4 t
C _C2 e
This general solution contains "arbitrary constants". We can get rid of them by specifying or initial conditions . To specify the derivative we must use the D notation. O s:=dsolve({deq,x(0)=p,D(x)(0)=q},x(t)); 1 s := x t = 2 a pC a K4 pC2 q e a2 K 4 2 qCa pK a K4 p e a2 K 4
2 K 1 1 aK 2 2 a2 K 4 t 2 K 1 1 aC 2 2 a2 K 4 t
boundary
1 K 2
We get different kinds of solution for a < 0 (negative damping), a = 0 (undamped), 0 < a < 2 (light damping), a = 2 (critical damping) and a > 2 (heavy damping). For example:
71
CRITICAL DAMPING (This is how a measuring instrument is damped so that the "needle" settles down to its final position as quickly as possible) O a:=2: s:=dsolve({deq,x(0)=1,D(x)(0)=0},x(t)); t t s := x t = eK C eK t To plot this we first have to make Maple think that x(t) is this solution. We do this with the assign function. (Note that if we want to use x afterwards we'll have to unassign it.) O assign(s);x(t); plot(x(t),t=0..8,0..1);
t t eK C eK t
Now we can plot the above five different cases -- and even colour them differently (if we didn't want a paper copy!). O A:=[-0.1,0,0.5,2,3]: rb:=red,gold,green,blue,black: L:=[]: for r from 1 to 5 do a:=A[r]; x:='x': s:=dsolve({deq,x(0)=1,D(x)(0)=0},x(t)); assign(s); p:=plot(x(t),t=0..20,-3..3,colour=rb[r]); L:=[op(L),p]; end do: plots[display](L);
72
0 5 K 1 10 t 15 20
K 2
K 3
DEtools
One can do the same thing using DEplot function from DEtools. This is a numerical method which works even if one could not find an analytic solution to the equation. O with(DEtools); DEnormal, DEplot, DEplot3d, DEplot_polygon, DFactor, DFactorLCLM, DFactorsols, Dchangevar, FunctionDecomposition, GCRD, LCLM, MeijerGsols, PDEchangecoords, RiemannPsols, Xchange, Xcommutator, Xgauge, Zeilberger, abelsol, adjoint, autonomous, bernoullisol, buildsol, buildsym, canoni, caseplot, casesplit, checkrank, chinisol, clairautsol, constcoeffsols , convertAlg, convertsys, dalembertsol, dcoeffs, de2diffop, dfieldplot, diff_table, diffop2de, dperiodic_sols, dpolyform, dsubs, eigenring, endomorphism_charpoly, equinv, eta_k, eulersols, exactsol, expsols, exterior_power, firint, firtest, formal_sol, gen_exp, generate_ic, genhomosol, gensys, hamilton_eqs, hypergeomsols, hyperode, indicialeq, infgen, initialdata , integrate_sols, intfactor , invariants, kovacicsols , leftdivision , liesol, line_int, linearsol, matrixDE, matrix_riccati, maxdimsystems, moser_reduce, muchange, mult, mutest, newton_polygon, normalG2,
73
ode_int_y, ode_y1, odeadvisor, odepde, parametricsol, phaseportrait, poincare, polysols, power_equivalent, ratsols, redode, reduceOrder, reduce_order, regular_parts, regularsp, remove_RootOf, riccati_system , riccatisol, rifread, rifsimp, rightdivision, rtaylor, separablesol, singularities , solve_group, super_reduce, symgen, symmetric_power, symmetric_product, symtest, transinv, translate, untranslate, varparam, zoom O x:='x': deq:=(D@@2)(x)(t)+0.5*D(x)(t)+x(t)=0; DEplot(deq,x(t),t=0..10,[[x(0)=1,D(x)(0)=0]]); deq := D 2 x t C 0.5 D x t C x t = 0
x(t) 0.5
0 K 0.5
4 t
10
As usual there are lots of options that the Help will tell you about. Some even let you specify a sensible colour! Here is the same equation with different boundary conditions. O DEplot(deq,x(t),t=0..10,[[x(0)=0,D(x)(0)=1]],stepsize=0.1, linecolour=red,thickness=1);
0 K 0.2
4 t
10
74
We can convert our equation to a system by putting the velocity D(x) = y and then we can plot the velocity against the displacement. This is called a phase plane plot. Maple will also show the direction of the "vector field" at every point. O sys:=[y(t)=D(x)(t),D(y)(t)+0.5*y(t)+x(t)=0]; sys := y t = D x t , D y t C 0.5 y t C x t = 0 O DEplot(sys,[x(t),y(t)],t=0..20,[[x(0)=1,y(0)=0]],stepsize= 0.05,colour=red,linecolour=black,thickness=1);
0.2
K 0.5
0.5 x
If you give more than one set of boundary conditions then Maple will do several curves. O DEplot(sys,[x(t),y(t)],t=0..20,[[x(0)=1,y(0)=0],[x(0)=2,y(0)= 0],[x(0)=3,y(0)=0]],stepsize=0.05,colour=grey,linecolour= [black,red,blue],thickness=1);
75
K 1
1 x
K 1
K 2
If you don't give any boundary conditions you just get the vector-field and you have to specify ranges for x and y. O DEplot(sys,[x(t),y(t)],t=0..20,x=-5..5,y=-5..5,stepsize=0.05) ;
4 y 2
K 4
K 2
0 K 2 K 4
2 x
Other methods
76
Maple can use a variety of methods to solve the equation, including series: O deq:=(D@@2)(x)(t)-0.5*D(x)(t)+x(t)=0; s1:=dsolve({deq,x(0)=1,D(x)(0)=0},x(t),series); deq := D 2 x t K 0.5 D x t C x t = 0 s1 := x t = 1 K or numerical: O deq:=(D@@2)(x)(t)-0.5*D(x)(t)+x(t)=0; s2:=dsolve({deq,x(0)=1,D(x)(0)=0},x(t),numeric); deq := D 2 x t K 0.5 D x t C x t = 0 s2 := proc x_rkf45 ... end proc O s2(2); t = 2., x t = K 0.987128948772179272, d x t =K 1.59019568061103554 dt 1 2 1 3 1 4 7 5 t K t C t C t C O t6 2 12 32 960
77
Random numbers
O restart; Maple generates (pseudo) random numbers with the function rand. Asking for rand(); produces a (big) random number directly while rand(a .. b); produces a random number generator (a procedure) which you can then use to get random numbers in the range a .. b. Maple starts with a global variable _seed (which you can set if you want to produce the same sequence -- for testing for example) and then it uses some number theory to get the next random number you ask for and then uses this as the seed to get another one, and so on. O _seed:=100;rand();_seed;rand();_seed; _seed := 100 741966908562 741966908562 111069327352 111069327352 You can make the seed somewhat random with randomize(); which sets it to something to do with the clock. O randomize();rand(); 1233154478 918311113976 We'll make a die to give a random number in the range 1 .. 6. O die:=rand(1..6): for i from 1 to 6 do die();end do; 4 4 6 5 6 5 Let's see how even its output is. O R:=[seq([i,0],i=1..6)]: for i from 1 to 1000 do a:=die(); R[a,2]:=R[a,2]+1; end do: R; 1, 161 , 2, 183 , 3, 154 , 4, 176 , 5, 177 , 6, 149
78
Then we can plot it. Note that the compressed vertical scale makes it look more uneven than it is. O plot(R);
Let's do something similar for the sum of two (or more) dice. We end up with a triangular distribution. O rollem:=proc(n) local R,i,j,a; R:=[seq([i,0],i=1..6*n)]: for i from 1 to 5000 do a:=0; for j from 1 to n do a:=a+die(); end do; R[a,2]:=R[a,2]+1; end do: return R; end proc; R:=rollem(2); plot(R); rollem := proc n local R, i, j, a; R := seq i, 0 , i = 1 ..6 * n ; for i to 5000 do a := 0; for j to n do a := a C die end do; return R end proc R := 1, 0 , 2, 159 , 3, 261 , 4, 434 , 5, 582 , 6, 682 , 7, 863 , 8, 649 , 9, 562 , 10, 381 , 11, 287 , 12, 140 end do; R a, 2 := R a, 2 C 1
79
10
12
The Central Limit Theorem says that the more dice you take the closer the distribution gets to a Normal distribution. O R:=rollem(7); plot(R); R := 1, 0 , 2, 0 , 3, 0 , 4, 0 , 5, 0 , 6, 0 , 7, 0 , 8, 0 , 9, 0 , 10, 0 , 11, 4 , 12, 5 , 13, 26 , 14, 37 , 15, 48 , 16, 81 , 17, 152 , 18, 172 , 19, 246 , 20, 282 , 21, 323 , 22, 343 , 23, 402 , 24, 433 , 25, 421 , 26, 404 , 27, 369 , 28, 319 , 29, 282 , 30, 187 , 31, 152 , 32, 118 , 33, 85 , 34, 43 , 35, 29 , 36, 22 , 37, 9 , 38, 5 , 39, 1 , 40, 0 , 41, 0 , 42, 0
10
20
30
40
80
Shuffling
We make a procedure which produces a number in the range 1 .. n without having to make a separate procedure for each n. O spin:=proc(n) local r; r:=rand(1..n);r();end; spin := proc n local r; r := rand 1 ..n ; r end proc O for i from 1 to 10 do spin(2); end do; 1 1 2 1 1 1 2 2 2 1 Now we'll shuffle (say) a pack of cards. We start with a "deck" 1 .. n in order and remove cards at random to put into our shuffled set (which we'll call res (for result)). Note how we remove an element from a list using subsop. (There are other ways of doing it.) O shuffle:=proc(n) local res,deck,i,choice; res:=[]; deck:=[seq(i,i=1..n)]; for i from 1 to n do choice:=spin(n+1-i); res:=[op(res),deck[choice]]; deck:=subsop(choice=NULL,deck); end do; return res; end proc; shuffle := proc n local res, deck, i, choice; res := ; deck := seq i, i = 1 ..n ; for i to n do choice := spin n C 1 K i ; res := op res , deck choice ; deck := subsop choice = NULL, deck
81
O shuffle(52); 21, 7, 29, 1, 33, 25, 40, 17, 2, 23, 46, 37, 15, 39, 45, 20, 24, 43, 52, 9, 19, 41, 34, 14, 44, 31, 12, 8, 49, 48, 32, 11, 3, 35, 4, 5, 50, 16, 47, 51, 22, 18, 6, 26, 27, 42, 13, 28, 36, 10, 30, 38 We can shuffle in a different way -- recursively. We assume a pack of size n - 1 has been shuffled and then insert the last card at random. We'll apply it to a list P. O shuffle0:=proc(P) local n,res,choice; n:=nops(P); if n=1 then return P; end if; res:=shuffle0(P[1..-2]); choice:=spin(n); return [op(res[1..choice-1]),P[-1],op(res[choice..-1])]; end proc; shuffle0 := proc P local n, res, choice; n := nops P ; if n = 1 then return P end if; res := shuffle0 P 1 .. K 2 ; choice := spin n ; return op res 1 ..choice K 1 , P K 1 , op res choice .. K 1 end proc O shuffle0([1,2,3,4,5]); 2, 1, 3, 5, 4
O shuffle0([seq(n,n=1..52)]); 51, 46, 44, 31, 16, 23, 43, 35, 3, 52, 19, 50, 20, 4, 39, 18, 12, 15, 11, 48, 45, 36, 26, 29, 41, 40, 21, 38, 5, 42, 32, 1, 28, 2, 7, 47, 14, 27, 33, 8, 24, 13, 17, 30, 37, 9, 22, 6, 10, 49, 25, 34 We can shuffle other things too: O P:=[seq(n,n="JOHN O'CONNOR")]; P := "J", "O", "H", "N", " ", "O", "'", "C", "O", "N", "N", "O", "R"
82
O shuffle0(P); "O", "O", "C", " ", "O", "'", "O", "J", "H", "N", "N", "N", "R"
83
if holes=0 then gotit:=true; soln:=M; elif nextone[3]<>10 then nextchoice:=choice(M,nextone[1],nextone[2]); for k in nextchoice do N[nextone[1],nextone[2]]:=k; checkit(N); !!! Recursion! end do; end if; end if; end proc: We feed in a matrix with 0's for the spaces. O M:=Matrix(9, [ [0,0,3,0,9,0,1,0,0], [0,5,0,3,0,0,7,0,0], [1,0,2,0,0,5,0,6,4], [0,1,0,0,2,0,9,0,0], [2,0,0,6,0,3,0,0,1], [0,0,7,0,8,0,0,3,0], [7,6,0,9,0,0,8,0,5], [0,0,8,0,0,7,0,9,0], [0,0,4,0,6,0,2,0,0] ]): The computers in the microlab take less than a second to find the solution! O pprint(M);print(` `); gotit:=false: checkit(M): if gotit then pprint(soln); else print(`NO SOLUTION`);end if;
85
`` `` 3 `` 5 `` , 1 `` 2 `` 1 `` 2 `` `` , `` `` 7 7 6 ``
`` 9 `` 3 `` `` , `` `` 5 `` 2 `` 6 `` 3 , `` 8 `` 9 `` `` `` `` 7 , `` 6 `` ``
1 `` `` 7 `` `` `` 6 4
9 `` `` `` `` 1 `` 3 `` 8 `` 5 `` 9 `` 2 `` ``
`` `` 8 , `` `` 4
4 7 3 8 5 6 , 1 9 2 3 1 5 2 8 9 , 6 4 7 7 6 1 5 2 8 , 9 3 4
2 9 6 3 4 1 , 8 7 5 7 2 4 6 5 3 , 1 8 9 9 3 2 4 1 7 , 5 6 8
1 5 8 7 2 9 3 6 4 9 8 6 4 7 1 5 3 2 8 4 5 6 9 3 2 1 7
You may change one of the entries in the original matrix and verify that no solution exists.
O restart; O spin:=proc(n) local r; r:=rand(1..n);r();end proc: randy:=proc(big,small) local top,others,i,k,choice; global aim; choice:=[];top:=[25,50,75,100]; others:=[1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10]; for i from 1 to big do k:=spin(nops(top)); choice:=[op(choice),top[k]]; top:=subsop(k=NULL,top); od; for i from 1 to small do k:=spin(nops(others)); choice:=[op(choice),others[k]]; others:=subsop(k=NULL,others); od; aim:=99+spin(900); return choice; end proc: O carol:=proc(v) global aim,gotit,record,count,closest,temprec; local i,j,n,w,a,b,v0; n:=nops(v); count:=count+1; if member(aim,v) then ! we found it! gotit:=true; for i from 1 to n do record[i]:=[];end do; else for i from 1 to n do if abs(v[i]-aim)<abs(closest-aim) then closest:=v[i];temprec:=record; end if; end do; end if; for i from 2 to n do ! for j from 1 to i-1 do a:=v[i];b:=v[j]; if not gotit and a>1 and b>1 then !! products w:=a*b; record[n]:=[v,a,`*`,b,` --> `,w]; v0:=subsop(i=w,j=NULL,v); carol(v0); !!! run through all pairs of numbers
if not gotit then !!! w:=a+b; record[n]:=[v,a,`+`,b,` --> `,w]; v0:=subsop(i=w,j=NULL,v); carol(v0); end if;
87
sums
if not gotit then !!! if a>b then w:=a-b; record[n]:=[v,a,`-`,b,` --> `,w]; v0:=subsop(i=w,j=NULL,v); carol(v0); end if; if a<b then w:=b-a; record[n]:=[v,b,`-`,a,` --> `,w]; v0:=subsop(i=w,j=NULL,v); carol(v0); end if; end if; if not gotit then !!! if b>=a and a>1 and b mod a=0 then w:=b/a; record[n]:=[v,b,`/`,a,` --> `,w]; v0:=subsop(i=w,j=NULL,v); carol(v0); elif b<a and b>1 and a mod b=0 then w:=a/b; record[n]:=[v,a,`/`,b,` --> `,w]; v0:=subsop(i=w,j=NULL,v); carol(v0); end if; end if; end do; end do; end proc: To make sure we don't get the same numbers every time! O randomize(): O choice:=randy(1,5); aim:=aim;!! start:=time(): record:=[[],[],[],[],[],[]]: closest:=0:gotit:=false:count:=0: carol(choice);
differences
quotients
if gotit then print(`Got it in `,time()-start,` secs after `,count,` calculations`); for i from 6 to 2 by -1 do print(record[i]);end do; else print(`Couldn't get it in `,time()-start,` secs after `, count,` calculations`); print(`Closest was `,closest); for i from 6 to 2 by -1 do print(temprec[i]);end do; end if: choice := 75, 8, 7, 2, 5, 4 aim := 879 Got it in , 3.843, secs after , 343320, calculations 75, 8, 7, 2, 5, 4 , 2, `C`, 8, --O , 10 75, 7, 10, 5, 4 , 5, `*`, 10, --O , 50
88
75, 7, 50, 4 , 50, `C`, 75, --O , 125 7, 125, 4 , 125, `*`, 7, --O , 875 875, 4 , 4, `C`, 875, --O , 879 Test a particular case to see if it's possible O aim:=820; L:=[50,7,5,1,6,7];
start:=time():record:=[[],[],[],[],[],[]]: closest:=0:gotit:=false:count:=0: carol(L); w:=time()-start: if gotit then print(`Got it in `,w,` secs after `,count,` calculations`); for i from 6 to 2 by -1 do print(record[i]);end do; else print(`Couldn't get it in `,w,` secs after `,count,` calculations`); print(`Closest was `,closest); for i from 6 to 2 by -1 do print(temprec[i]);end do; end if:
89
aim := 820 L := 50, 7, 5, 1, 6, 7 Couldn't get it in , 7, secs after , 668154, calculations Closest was , 819 50, 7, 5, 1, 6, 7 , 7, `C`, 50, --O , 57 57, 5, 1, 6, 7 , 5, `C`, 57, --O , 62 62, 1, 6, 7 , 1, `C`, 62, --O , 63 63, 6, 7 , 7, `C`, 6, --O , 13 63, 13 , 13, `*`, 63, --O , 819
5 , 13 , 2 4, 17 , 2
2
3 2, 2
5 , 5 2,
2
17 , 2
3 2, 37 , 2
5 , 41 , 3 13 , 2
2
5 , 7 2,
3
13 , 53 , 2
4
29 , 61 , 2 6, 5 41 , 5
17 , 2 3
2
3 2,
73 , 2 2
37 , 2
2
5 , 3 4, 2
17 , 89 , 2
5 , 97 ,
7 2, 2
More easily, Maple will let you apply a function to every member of a list or set.
90
O ifactor(S); 1, 89 , 29 , 37 , 53 , 61 , 73 , 97 , 2 41 , 2 5 2, 2 2 2 41 , 5 17 , 2 5 , 2
2
7 2, 2
5 2, 2 , 5 , 13 , 17 ,
2
5 , 2
3 2, 3 3
2
5 , 2
3
3 2, 2 4,
3
13 , 2 5, 2
4
17 , 2 2, 3 2, 2 3, 2
2
5 , 2
5 , 2
2
3 2,
37 , 3 4, 2 5
2
5 , 7 2, 2
13 , 2
29 , 2 6, 5
13 , 2
17 ,
O ifactor(sort(convert(S,list),isprime)); 2 , 5 , 13 , 17 , 29 , 37 , 41 , 53 , 61 , 73 , 89 , 97 , 2 2 2 2
2 2
5 2,
3
7 2, 2 17 , 5 3 2, 2
5 , 5
17 , 2 29 , 2
41 , 3 4, 2
2
5 , 2
37 , 2
2
3 2,
3
13 , 2 6, 2 17 , 2 5, 2
13 , 2
2
5 2, 7 2, 3
5 , 2
5 ,
13 , 5 2, 2
5 , 2
3 2, 2 4, 2
5 , 3 2,
2 3, 2 2, 1 The only primes in this list are of the form 2 or 4 k + 1. In fact the numbers which can be written as a sum of two squares are those in which all the primes of the form 4k + 3 are present as even powers in the factorisation. The set S above is "multiplicatively closed". One meets it as the set of norms of Gaussian integers.
5 13 17 5
3
5 2 5 13 2 5 2
3
5
2
13 29
17 37 5
2
And so it appears that the elements which can be written as a product in two ways all have two factors of the form 4k + 1 -- except for 53. Repeat this (with a bigger n) to get an estimate for when one can write a number as a sum of squares in 3 ways. O n:=1000: S:=array(1..n,[0$n]): t:=evalf(sqrt(n)): for i from 1 to t do for j from 0 to i do c:=i^2+j^2; if c<=n then S[c]:=S[c]+1;end if; end do; end do: for i from 1 to n do if S[i]>2 then print(ifactor(i)); end if; end do: 5 2 13 5
2
17
4 2
5 2 5 5 5
2
13
29 13
2
92
2 5
5
2
17
37
O n:=50000: S:=array(1..n,[0$n]): t:=evalf(sqrt(n)): for i from 1 to t do for j from 0 to i do c:=i^2+j^2; if c<=n then S[c]:=S[c]+1;end if; end do; end do: O S[5^3*13^2];S[2*5^2*13^2];S[2^2*5*13^3]; 6 5 4 The actual result is quite complicated. If all the primes of the form 4 k + 3 in n present as even powers then one can write it as a sum of one or two squares. If the primes of the form 4 k + 1 in n are p11 p22... pkk then put B = r1 C 1 the number of ways is B/2 if B is even, otherwise it is (B C 1)/2
r r r
The number of factors of 2 or of the form 4 k + 3 make no difference to the number of ways one can write it as a sum of squares.
Continued fractions
Here is one way of thinking about Continued fractions : You can regard calculating the decimal expansion of a (positive) real number as the result of implementing the algorithm: (*) Make a note of the integer part of the number. Subtract this from the number. This gives a number x in the range [0,1). If x $ 0 then: ** Multiply x by 10 ** This (perhaps) gives a number # 1. Now repeat the loop from (*). We can replace the step at ** ... ** by anything else that makes x bigger. In particular, if we put in: ** Take the reciprocal 1/ x of x ** then the sequence of integers we get is the Continued fraction expansion of x.
93
We'll use Maple to calculate the first n terms in this expansion. To round down a real number x Maple uses floor(x). O cf:=proc(r,n) local ans,s,i; ans:=[];s:=r; for i from 1 to n do ans:=[op(ans),floor(s)]; s:=s-floor(s); if s<>0 then s:=1/s;end if; end do; ans; end proc; cf := proc r, n local ans, s, i; ans := s := r; for i to n do ans := op ans , floor s ; s := s K floor s ; if s!O0 then s := 1 / s end if end do; ans end proc The continued fraction expansion of a rational number (a fraction) vanishes after a certain number of steps. O cf(12346/56789,10); 0, 4, 1, 1, 2, 189, 1, 1, 6, 0 ;
For irrational numbers we need to work with a decimal expansion and then we must tell Maple what accuracy to work to. If we want it to work to 20 significant figures, we enter: Digits:=20; (Note the capital letter!) It will stay at that until you restart; or reassign Digits. O Digits:=50: cf(evalf(Pi),40); 3, 7, 15, 1, 292, 1, 1, 1, 2, 1, 3, 1, 14, 2, 1, 1, 2, 2, 2, 2, 1, 84, 2, 1, 1, 15, 3, 13, 1, 4, 2, 6, 6, 99, 1, 2, 2, 6, 3, 5 O cf(evalf(exp(1)),50); 2, 1, 2, 1, 1, 4, 1, 1, 6, 1, 1, 8, 1, 1, 10, 1, 1, 12, 1, 1, 14, 1, 1, 16, 1, 1, 18, 1, 1, 20, 1, 1, 22, 1, 1, 24, 1, 1, 26, 1, 1, 28, 1, 1, 30, 1, 1, 32, 1, 1 Continued fractions of square roots of integers repeat themselves:
94
O cf(sqrt(117),40); 10, 1, 4, 2, 4, 1, 20, 1, 4, 2, 4, 1, 20, 1, 4, 2, 4, 1, 20, 1, 4, 2, 4, 1, 20, 1, 4, 2, 4, 1, 20, 1, 4, 2, 4, 1, 20, 1, 4, 2 and so does the continued fraction of anything of the form aC b with a, b, c integers. c
O r:=evalf((sqrt(5)+1)/2); cf(r,30); r := 1.6180339887498948482045868343656381177203091798058 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 We can reverse the above process to get a (rational) number from a (finite) continued fraction. O build:=proc(C) local x,i; x:=0; for i from 1 to nops(C) do x:=x+C[-i]; if x<>0 then x:=1/x;end if; end do; return 1/x; end proc; build := proc C local x, i; x := 0; for i to nops C do x := x C C K i ; if x!O0 then x := 1 / x end if end do; return 1 / x end proc O build([1,11,2,3]); 87 80
C := 1, 2, 3, 4, 5 r := 225 157
1234 6789
95
C := 0, 5, 1, 1, 153, 1, 3, 0, 0, 0
1234 6789 Continued fractions give a (good) way of approximating reals by rationals. O buildall:=proc(C) local L,i; L:=[]; for i from 1 to nops(C) do L:=[op(L),build(C[1..i])]; end do; return L; end proc; buildall := proc C local L, i; L := end proc O buildall([1,1,1,1,1,1,1,1,1,1,1,1,1,1]); 3 5 8 13 21 34 55 89 144 233 377 610 1, 2, , , , , , , , , , , , 2 3 5 8 13 21 34 55 89 144 233 377 Note the Fibonacci numbers in the numerators and denominators. O C:=cf(Pi,10); L:=buildall(C); L := 3, ; for i to nops C do L := op L , build C 1 ..i end do; return L
C := 3, 7, 15, 1, 292, 1, 1, 1, 2, 1
22 333 355 103993 104348 208341 312689 833719 1146408 , , , , , , , , 7 106 113 33102 33215 66317 99532 265381 364913
O evalf(L,12); evalf(Pi,12); 3., 3.14285714286, 3.14150943396, 3.14159292035, 3.14159265301, 3.14159265392, 3.14159265347, 3.14159265362, 3.14159265358, 3.14159265359 3.14159265359 Note that there is an ambiguity for continued fraction expansions ending in 1 or with 0 in the list. O cf(build([5,4,3,2,1]),5); cf(build([1,0,2,3,4,5]),5); 5, 4, 3, 3, 0 3, 3, 4, 5, 0 Maple has "built-in" continued fractions which you can find out about with: ?confrac; . You can then explore some of the discoveries of (among others) Leonhard Euler: O convert(exp(1),confrac,37); 2, 1, 2, 1, 1, 4, 1, 1, 6, 1, 1, 8, 1, 1, 10, 1, 1, 12, 1, 1, 14, 1, 1, 16, 1, 1, 18, 1, 1, 20, 1, 1, 22,
96
1, 1, 24, 1 O convert((exp(2)-1)/(exp(2)+1),confrac,29); 0, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55 O convert((exp(1)-1)/(exp(1)+1),confrac,28); 0, 2, 6, 10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50, 54, 58, 62, 66, 70, 74, 78, 82, 86, 90, 94, 98, 102, 106 O convert((exp(1/2)-1)/(exp(1/2)+1),confrac,24); 0, 4, 12, 20, 28, 36, 44, 52, 60, 68, 76, 84, 92, 100, 108, 116, 124, 132, 140, 148, 156, 164, 172, 180 The numbers which occur in certain of the convergents of the (periodic) continued fractions of square roots can be used to solve Pell's equation. O convert(sqrt(6),confrac,10,'cgt');cgt; 2, 2, 4, 2, 4, 2, 4, 2, 4, 2 2, 5 22 49 218 485 2158 4801 21362 47525 , , , , , , , , 2 9 20 89 198 881 1960 8721 19402
For example (x, y) = (5, 2) or (49, 20) or (485, 198) or ... satisfy x2 K 6 y2 = 1.
asymptotes, bisector, center, centroid, circle, circumcircle, conic, convexhull, coordinates, detail, diagonal, diameter, dilatation, directrix, distance, draw, dsegment, ellipse, excircle, expansion, foci, focus, form, homology, homothety, hyperbola, incircle, inradius, intersection, inversion, line, medial, median, method, midpoint, orthocenter, parabola, perimeter, point, powerpc, projection, radius, randpoint, reciprocation, reflection, rotation, segment, sides, similitude, slope, square, stretch, tangentpc, translation, triangle, vertex, vertices It makes life easier if you tell Maple at the beginning how you are going to label your axes. O _EnvHorizontalName:=x;_EnvVerticalName:=y; _EnvHorizontalName := x _EnvVerticalName := y We'll investigate a theorem discovered by Menelaus of Alexandria in about 100AD. If a line meets the sides a, b, c of a triangle ABC in points D, E, F then the product of the ratios BD CE AF = -1. DC EA FB O point(A,0,0),point(B,1,0),point(C,0.6,0.7); ! Note the commas! A, B, C O line(a,[B,C]),line(b,[A,C]),line(c,[A,B]); a, b, c O line(m,y=-0.4*x+0.5); m
O intersection(D,a,m),intersection(E,b,m),intersection(F,c,m); D, E, F O a1:=SensedMagnitude(B,D);a2:=SensedMagnitude(D,C); b1:=SensedMagnitude(C,E);b2:=SensedMagnitude(E,A); c1:=SensedMagnitude(A,F);c2:=SensedMagnitude(F,B); a1 := K 0.1493010694 a2 := K 0.6569247054 b1 := K 0.4315531448 b2 := K 0.4904013010 c1 := 1.250000000 c2 := K 0.2500000000 O a1/a2*b1/b2*c1/c2; K 1.000000000
O draw({a,b,c,m(colour=red),A,B,C,D,E,F},view=[-1..1.5,-0.5. .1],axes=none,printtext=true,colour=black);
98
C E A D B F
You can now repeat this with a different triangle and a different line.
Ceva's theorem
More than 1500 years later in 1678 the Italian mathematician Giovanni Ceva discovered a rather similar theorem. If points D, E, F lie on the sides a, b, c of a triangle ABC and the lines AD, BE, CF are concurrent BD CE AF then the product of the ratios = 1. DC EA FB O point(G,0.5,0.2); G
O line(d,[A,G]),line(e,[B,G]),line(f,[C,G]); d, e, f O intersection(D,a,d),intersection(E,b,e),intersection(F,c,f); D, E, F O a1:=SensedMagnitude(B,D);a2:=SensedMagnitude(D,C); b1:=SensedMagnitude(C,E);b2:=SensedMagnitude(E,A); c1:=SensedMagnitude(A,F);c2:=SensedMagnitude(F,B); a1 := K 0.3749887325 a2 := K 0.4312370424 b1 := K 0.5296334050 b2 := K 0.3923210407 c1 := 0.4600000000
99
E G A F
Product of chords
O restart; with(geometry): _EnvHorizontalName:=x:_EnvVerticalName:=y: O randomize(): See the picture below: If AB and CD are chords of a circle meeting in E then: AE.EB = CE.ED O circle(cc,[point(A,0,0),point(B,1,0),point(C,0.6,0.7)], 'centername'=O); cc O randpoint(D,cc);
100
D O detail(D); name of the object: D form of the object: point2d coordinates of the point: [.4782617403, -.3519143895] O line(ch1,[A,B]),line(ch2,[C,D]); ch1, ch2 O intersection(E,ch1,ch2); E
101
O A E B
Ptolemy's theorem
If A, B, C, D are four points on a circle then AB.CD + BC.DA = AC.BD Discovered by Ptolemy (85 to 165AD) one of the foremost of the late Greek mathematicians and astronomers. We'll use the last calculation. O a1:=distance(A,B);a2:=distance(C,D); b1:=distance(B,C);b2:=distance(D,A); c1:=distance(A,C);c2:=distance(B,D); a1 := 1 a2 := 1.058796651 b1 := 0.8062257748 b2 := 0.4553066234 c1 := 0.9219544457 c2 := 0.7502721188
102
O evalf(a1*a2+b1*b2-c1*c2); 0.7341598706 Unfortunately it only works if A, B, C, D are in this order around the circle! O evalf(-a1*a2+b1*b2+c1*c2); K 10-10 4.
Pascal's theorem
Pascal's Magic Hexagram If a hexagram is inscribed in a circle then the meets of opposite sides are collinear. Discovered by Blaise Pascal (1623 to 1662) when he was 16 years old. O point(O,0,0):circle(cc,[O,1]): O randpoint(A,cc):randpoint(B,cc):randpoint(C,cc): randpoint(D,cc):randpoint(E,cc):randpoint(F,cc): O line(a,[A,B]):line(b,[B,C]):line(c,[C,D]):line(d,[D,E]):line (e,[E,F]):line(f,[F,A]): O intersection(P,a,d):intersection(Q,b,e):intersection(R,c,f): O AreCollinear(P,Q,R); false In fact it's only rounding error
O line(p,[P,Q]): distance(R,p); ! that stops them from appearing on the same line 6.771136670 10-10
103
F D
O assume(q>0); O triangle(t,[A,B,C]);
We can find the circumcentre O (the centre of the circle through the vertices), the orthocentre H (the meet of the altitudes) and the centroid G (the meet of the medians) O circumcircle(cc,t,centername=O); cc O orthocenter(H,t); O centroid(G,t); H G
Euler proved that O, G, H are collinear. They lie on the Euler line. He also showed that |GH| = 2* |OG| O AreCollinear(O,H,G); true
2
O gh:=distance(G,H);og:=distance(O,G); gh := 1 2 K p 3 3
2
1 p2 K p q~ C 3 q~
og :=
1 1 K p 6 3
1 K 2 K q~2 C p p 1 C K K q~ 2 q~ 3 2
O simplify(gh/og); To define the line we need another assumption O assume(p>1/2); O line(e,[O,G]); This completes the proof of the theorem.
To draw a picture we will have to take specific values for p and q and then define everything again O p:=0.6:q:=0.7: point(A,0,0),point(B,1,0),point(C,p,q): triangle(t,[A,B,C]): circumcircle(cc,t,centername=O): orthocenter(H,t): centroid(G,t): line(e,[O,G]): O draw([t(colour=red),e(colour=blue,thickness=2),O,H,G], axes= none,printtext=true,colour=black);
105
H G O
A B
The midpoints of the sides of a triangle, the feet of the altitudes and the midpoints of the lines joining each vertex to the orthocentre lie on a circle. This is called the Nine-point circle . Its centre lies on the Euler line. O p:='p':q:='q': assume(q>0,p>1/2,(p-1)^2+q^2>0,p^2+q^2>0); O point(A,0,0),point(B,1,0),point(C,p,q); triangle(t,[A,B,C]): circumcircle(cc,t,centername=O): orthocenter(H,t): centroid(G,t): line(e,[O,G]):
106
A, B, C O midpoint(A1,B,C),midpoint(B1,A,C),midpoint(C1,B,A); A1, B1, C1 O altitude(aa,A,t,A2),altitude(bb,B,t,B2),altitude(cc,C,t,C2); aa, bb, cc O midpoint(A3,A,H),midpoint(B3,B,H),midpoint(C3,C,H); A3, B3, C3 O circle(npc,[A1,B1,C1],centername=N): O IsOnCircle([A1,B1,C1,A2,B2,C2,A3,B3,C3],npc); true O IsOnLine(N,e); This completes the proof of the theorem. To draw a picture we will have to take specific values for p and q and then define everything again O p:=0.7:q:=0.6: point(A,0,0),point(B,1,0),point(C,p,q); triangle(t,[A,B,C]): circumcircle(cc,t,centername=O): orthocenter(H,t): centroid(G,t): line(e,[O,G]): midpoint(A1,B,C),midpoint(B1,A,C),midpoint(C1,B,A); altitude(aa,A,t,A2),altitude(bb,B,t,B2),altitude(cc,C,t,C2); midpoint(A3,A,H),midpoint(B3,B,H),midpoint(C3,C,H); circle(npc,[A1,B1,C1],centername=N); A, B, C A1, B1, C1 aa, bb, cc A3, B3, C3 npc O draw([t(colour=red),e(colour=blue,thickness=2),O,H,G,A1,A2, A3,B1,B2,B3,C1,C2,C3,npc(colour=black),N,aa(colour=red),bb (colour=red),cc(colour=red)], axes=none,printtext=true, colour=black); true
107
C B2 C3 A2 H B1 A3 O C1 A C2 B G N B3 A1
108
simplify(expr) will attempt to simplify an expression. You can see the help files for any command by typing ?command or by highlighting the command and using the Help menu. To put in comments when the cursor is at a Maple prompt > either use the Insert text item from the Insert menu, or the keyboard shortcut Control-T or click on the T on the Tool bar. You can put in formulae using Control-R or the Standard Math Text item from the Insert menu When you have finished, start a new Execution group (what Maple calls the group enclosed by a bracket at the left) by using the item Execution group in the Insert menu, by using one of the keyboard shortcuts Control-J or Control-K or click on the [> on the Tool bar. You can use the same method to get a new execution group anywhere in your worksheet and then, if you wish, you can use this to insert some explanatory text.
The operator D can be applied to a function to get the differentiated function. Diff (with a capital letter) returns the formula for the derivative, but does not do the differentiation. int(expr, x) calculates the indefinite integral wrt x (if it can integration can be difficult). int(expr, x = a..b) calculates the definite integral of the expression from a to b. Use evalf to get a numerical answer if you need one. You can even make a or b infinity or infinity if you want. Int (capital letter) returns the formula for the integral. If a function has been assigned to f, you cannot differentiate, integrate (or plot) f without turning it into an expression by, for example, putting it in as (say) f(x). As in, for example f:= x->x^2; diff(f(x), x);
Plotting
plot(expr, x = a..b) plots the graph of y = the expression, for values of x between a and b. If you leave out the range: plot(expr, x) then Maple takes it to be 10 ! x ! 10. plot([expr1, expr2], x = a..b, c..d) or plot([expr1, expr2], x = a..b, y=c..d) plots the two graphs on the same axes and uses the specified ranges for the (horizontal) x axis and the vertical axis. You can plot individual points as (for example) plot({[1, 1], [2, 2], [2, 1]}, style=point); and can choose to join them up if you wish. To plot a function (or procedure) f do not mention the variable: plot(f, 0..1); or use single quotes: plot('f(x)', x=0..1); To plot a curve given parametrically by x = p(t), y = q(t) use plot([p(t), q(t), t = 0..10]); You can put other options inside the round brackets. In particular, to plot a curve given in polar coordinates by r = f(!) use plot([f, t, t = 0..Pi], coords = polar);
111
To plot points given in a list L of lists [x, y], use plot(L, style = point); and again other options can be put inside the round brackets. If you dont put in style = point, Maple will join up the points with lines. Plotting (a projection of) a surface in three dimensions given by an equation z = f(x, y) (an expression) for (say) 0 < x < 1 and 0 < y < 1 can be done with plot3d (f, x = 0..1, y = 0..1). As above there are lots of options you can put in. If you want to make the range of z (say) 0..1 you do it with view = 0..1. If you want to plot more than one expression then you must put the expressions in { } brackets. To plot a surface given parametically by x = x(p, q), y = y(p, q), z = z(p, q) with (say) 0 < p < 1 and 0 < q < 1 use plot3d([x, y, z], p = 0..1, q = 0..1). You can display several plots together by assigning the plots to variables P, Q (say) and then using the display function from the plots package: plots[display](P, Q); You can animate a sequence of such plots by using the display function to show a list of plots and putting in insequence=true.
Solving
The command solve(equation, x) tries to solve the equation for x. The variable x had better be unassigned. If you just want to see the floating point answer, you can use fsolve(equation, x). To get Maple to find solutions lying in a range a ! x ! b you can use fsolve(equation, x=a..b). If there are several solutions, you can assign them to a list by, for example, s := solve(eqn, x) and then ask for s[1], s[2], etc. to get the first, second, ... You can solve simultaneous equations for (say) x and y using solve({eqn1, eqn2}, {x, y}). Similarly, fsolve({eqn1, eqn2}, {x, y}) or fsolve({eqn1, eqn2}, {x=a..b, y=c..d}) will give the numerical answers.
112
Looping
You can make Maple repeat a calculation a given number of times using a forloop. for i from 1 to 100 do ... do and end do 100 times. end do; will go through the instructions between
If you want to stop Maple printing everything it does, finish the loop with a colon : You can then ask it to print some of what is going on using print(something, something else). It will print the things you ask for (with commas between if there is more than one thing) with a new line each time it implements the print statement. If you want to include text, you have to put in back-quotes ` ... ` (to get these use the key at the top left of the keyboard). Examples of other forms of a for-loop are: for i from 1 to 100 by 3 do ... each time it goes through the loop. for i in [1, 2, 5, 10] do successively. ... end do; which increases the value of i by 3 end do; to decrease i.
Another form of loop is a while-loop. This has the form: while boolean expression do ... end do; where the boolean expression evaluates to give either True or False. Maple will repeat the instructions between do and end do until the boolean expression becomes False. If you make a mistake, it might continue for ever, but you can stop it by clicking on Stop on the menu-bar.
If clauses
You can use a boolean expression to choose between alternatives using an ifclause. if boolean expression then ... end if; will make Maple do what is between then and end if provided the boolean expression evaluates to True.
113
Alternative forms are: if boolean expression then ... else ... end fi; or the more elaborate: if boolean expression then ... elif another boolean expression then ... else ... end if; You can put in lots of other elif (= else if) bits if you want.
114
Procedures
A procedure can be used to define more complicated functions than the ones given using an assignment f := x > a formula involving x. For example, f := x > x^2; is really shorthand for f := proc(x) x^2; end proc; The last expression in the procedure, immediately before end proc, is the value that the procedure returns. The parameters inside the brackets are described as being "passed to the procedure". Even if there aren't any such parameters to pass, you still have to put in the brackets! If the procedure involves a complicated calculation with assignment to extra variables, these can be declared as local variables and will not then affect the values of variables used outside the procedure which happen to have the same names. If you dont declare them as local variables, Maple will rather crossly tell you that it has done the job for you. You cannot use the parameters that are passed to the procedure as variables which can be assigned to. If you do want the procedure to access variables you have already used, you can declare them as global. and if you change them inside the procedure, the values ouside will be altered. To plot a function defined by a procedure, do not mention the variable. For example to plot a function defined by a procedure fn: plot(fn, -1 ..1); If you do need to mention the variable (for example if you want to simultaneously plot a function given by an expression ex, say) then you can enclose things in single quotes. plot(['fn(x)', ex], x = 0 .. 1);
115
116
Differential equations
You can use the dsolve function to find an analytic solution to a differential d 2x equation (say) 2 + x = 0 with: dt dsolve((D@@2)(x)(t) + x(t), x(t)); With boundary conditions: dsolve({(D@@2)(x)(t)+x(t), x(0)=0, D(x)(1)=1},x(t)); You ! use the D operator if you specify boundary conditions for derivatives. must There are many options you can use to (for example) specify the method you want to use to solve the equation. If you have found a solution s as above and you want to plot (say) y as an expression in x you can use assign(s); to make y into this expression. If you want to use y as a variable again afterwards, remember to unassign it with y := 'y'; The function DEplot in the DEtools package can be used to plot numerical solutions of single differential equations or of systems of equations. If you want individual solution curves then you specify initial conditions as a list of lists: one list for each curve. There are lots of options you can include. You can use the DEplot command from the DEtools package to plot the solutions of differential equations numerically: DEtools[DEplot]((D@@2)(x)(t)+x(t), x(t), t=0..10, [[x(0)=0, D(x)(0)=1]]);
Randomisation
Maple generates (pseudo) random numbers with the function rand. Entering roll:=rand(2 .. 5); creates a random number generator roll( ) which produces random integers between 2 and 5 each time it is called. Use randomize(); before you generate a sequence of random numbers otherwise you will get the same sequence each time.
Recursion
A Maple procedure may call itself (hopefully with different values of its parameters!) and provided this process eventually gives a definite answer, Maple will do the calculation. It is sometimes helpful to include option = remember at the beginning of the body of the procedure.
117
118
Pictures of some of the mathematicians whose work was encountered during the course
Archimedes of Syracuse
287BC212BC Born: Syracuse, Sicily
Arthur Cayley
18211895 Born: Richmond, England
Pafnuty Chebyshev
18211894 Born: Okatovo, Russia
119
Girard Desargues
15911661 Born: Lyon, France
Eratosthenes
276BC194BC Born: Shahhat, Libya
Euclid of Alexandria
about 325BCabout 265BC
Leonhard Euler
17071783 Born: Basel, Switzerland
Pierre de Fermat
16011665 Born: Beaumont-de-Lomagne, France
120
Fibonacci of Pisa
11701250 Born: Pisa, Italy
Joseph Fourier
17681830 Born: Auxerre, France
Jorgen Gram
18501916 Born: Nustrup, Denmark
121
G H Hardy
18771947 Born: Cranleigh, England
Charles Hermite
18221901 Born: Dieuze, France
Heron of Alexandria
about 10ADabout 75AD Born: Alexandria, Egypt
122
Carl Jacobi
18041851 Born: Potsdam, Germany
Gaston Julia
18931978 Born: Sidi bel Abbs, Algeria
Edmond Laguerre
18341886 Born: Bar-le-Duc, France
Adrien-Marie Legendre
17521833 Born: Paris, France
123
Sophus Lie
18421899 Born: Nordfjordeide, Norway
Jules Lissajous
18221880 Born: Versailles, France
Edouard Lucas
18421891 Born: Amiens, France
Colin Maclaurin
16981746 Born: Kilmodan, Scotland
124
Marin Mersenne
15881648 Born: Oiz in Maine, France
Isaac Newton
16431727 Born: Woolsthorpe, England
Blaise Pascal
16231662 Born: Clermont-Ferrand, France
Ptolemy
about 85ADabout 165AD Born: Egypt
125
Pythagoras
about 569BCabout 475BC Born: Samos, Greece
Srinivasa Ramanujan
18871920 Born: Tamil Nadu, India
Erhard Schmidt
18761959 Born: Tartu, Estonia
Waclaw Sierpinski
18821969 Born: Warsaw, Poland
126
Robert Simson
16871768 Born: West Kilbride, Scotland
Brook Taylor
16851731 Born: Edmonton, England
Ehrenfried Tschirnhaus
16511708 Born: Grlitz, Germany
Tsu Chongzhi
429501 Born: Nanking, China
127
Vito Volterra
18601940 Born: Ancona, Italy
William Wallace
17681843 Born: Dysart, Scotland
128