brian bovril

914 Reputation

16 Badges

18 years, 328 days

MaplePrimes Activity


These are questions asked by brian bovril

Question.doc

Can you make geometric figures that hold a particular area within a given perimeter of 12 matches

My attempt was to start at origin 0,0 and move up 1 unit (a,b) and then 1 unit up or to the right (c,d) etc ... until you enclose the required area (defined by linear spline) s.t. perimeter =12. but it doesn't really work

can someone assist me to animate the following:

 A ladder is leaning against a wall. The base of the ladder starts sliding away from the wall, with the top of the ladder sliding down the wall. As the ladder slides, you watch the red point in the middle of the ladder. What figure does the red point trace? (a circle)

does anyone see what i'm doing wrong, trying to solve for n

add(length(i), i = 1 .. n) = 2893;

o/p: Error, unable to execute add

fsolve(sum(length(i), i = 1 .. n) = 2893,n=500..2000);

o/p: n=2893

but if i do a procedure i get the right answer: 

s := 0; for i to 5000 do t := length(i); s := s+t; if s <> 2893 then next else print(i) end if end do;

1000

Start with the numbers 1, 1/2, 1/3, ... , 1/100. Choose any two numbers M and N from this list and replace them by the single number M + N + M x N. Repeat the process until only one number is left.

eq, take pair (1,1/2)-->1+1/2+1*1/2=2

then (2,1/3)-->3 and so on .... and you obtain 100.

Can someone show me procedure to accomplish this, because when i try to do it i get into a tiz

can someone write code to replicate this in maple.

Begin with a square and draw an octagon inside it, as pictured. Now draw a regular 16-sided polygon inside the octagon, like so

i'm guessing it'll use the polygonplot comand

First 27 28 29 30 31 32 33 Page 29 of 35