plot({r,c}, x=0..30);
Describe in words what you see and what it means for the typical
commuter.
solve(r=c, x);
for b from -4 to 5 do n:=l,3*x+b; od;
When you ask Maple for the value of n after executing this
statement, it will report that n is the list of expressions
3x-5, 3x-4,..., 3x+4, 3x+5. We can plot all of these
expressions on the same set of axes using a statement like:
plot({n}, x=-3..3);
This should illustrate clearly the effect of changing b in
the equation of a line (but you already knew that, didn't you?)
is independent of which two points on the graph of y = abx
are chosen. What is the common value of the quantity?
for x from 0 to 6 do print(x,l[x+1], f(x)); od;
How far off is your function from the actual data?
f := x -> 2^x: and g := x -> -x^2;.
Then type
f(g(x));
to see the composition. The other way is to define f and g as Maple
expressions, via
f := 2^x; and g := -x^2;
and then do the composition with the statement
subs(x=g,f);
(which substitutes g for x in the expression for f).
Use either method and graph the result. Does it look familiar?
for t from 0 by 0.05 to 0.5 do print(t, [x,y]); od;
after defining x and y appropriately. Note that Maple uses
square brackets rather than our usual parentheses when dealing
with ordered pairs.
plot[x,y,t=0..b]);
to get a picture of the ball's trajectory (note that the range
of the time variable must be given as an extra element of
the ``ordered pair''). Is the graph what
you expected?
x = at + a cos(t)
y = a + a sin(t)
x = at - a sin(t)
y = a - a cos(t)
Remember that the phase can turn a sine into a cosine and vice versa
since sin(Pi/2 - theta) = cos(theta)
numpoints=100
to get nice smooth curves. This
option goes after a comma between the right bracket and right
parenthesis of the plot function. Its purpose is to force Maple
to compute more points than it usually does before it tries to
connect them with an interpolating curve.
plot([sin(4*t)*cos(t), sin(4*t)*sin(t), t=0..2*Pi], numpoints=100);
f:=x->exp(-(x-3)^2*cos(4*(x-3))); plot3d([r,f(r)*cos(t),f(r)*sin(t)],r=1..5,t=0..2*Pi,grid=[35,25],axes=FRAME);
| Temperature (° C) | Volume (cm³ ) |
|---|---|
| 10.0 | 141 |
| 20.0 | 145 |
| 25.0 | 148 |
| 30.0 | 150 |
| 35.0 | 153 |
| 50.0 | 161 |
| 80.0 | 175 |
| Length of gas column (l) | Pressure head (h) |
|---|---|
| in inches | in inches of Hg |
| 19.7 | 0.0 |
| 17.7 | 3.4 |
| 15.7 | 7.4 |
| 13.8 | 12.7 |
| 11.8 | 19.8 |
| 9.8 | 29.8 |
"...all that I shall now urge being, that however,
the tryal already made sufficiently proves the main
thing for which I here alledge it; since by it 'tis
evident, that as common air when reduc'd to half its
wonted extent, obtained near about twice as forcible
a spring as it had before: so this thus-compressed
air being further thrust into half this narrow room,
obtained thereby a spring about as strong again as that
it last had, and consequently four times as strong as
that of the common air."
| Pressure (torr) | 91.74 | 188.98 | 277.3 | 452.8 | 639.3 | 760.1 |
| density (g/L) | 0.225 | 0.456 | 0.664 | 1.062 | 1.468 | 1.734 |
| Compound | d (g/l) | Mass of sample | X | Y | Z |
|---|---|---|---|---|---|
| I | 4.210 | 0.8500 | 0.2641 | 0.5859 | --- |
| II | 5.518 | 0.7000 | 0.3318 | 0.3682 | --- |
| III | 4.414 | 0.7500 | 0.2222 | --- | 0.5278 |
| IV | 7.112 | 1.2500 | 0.2299 | 1.0201 | --- |
| V | 5.968 | 1.4500 | 0.3178 | --- | 1.1322 |
| VI | 4.169 | 1.1500 | 0.7216 | --- | 0.4284 |
| VII | 2.228 | 1.3000 | --- | 0.8468 | 0.4532 |
| VIII | 3.781 | 1.2000 | --- | 0.4605 | 0.7395 |
Most of our knowledge of how the world works comes from application of
the scientific method. We observe things about which we are curious,
make hypotheses about what's going on, develop hypotheses into theories
by using mathematics to make them quantitative, then experimentally
test the predictions of the theory. Through the scientific method,
human intuition and curiosity have extended our understanding into
realms as small as quarks and as large as the universe itself. The
first part of the method is observation. To be useful,
our observations must be detailed and accurate and our description of
the details must be clear, concise, and quantitative.
We need to measure things in terms
of commonly agreed upon standards and describe the measurements so that
others who are curious to understand the observations can repeat them
in an unambiguous way.
For this experimental exercise, you are asked to practice your observation
skills by measuring large objects that are found on campus and then
providing a detailed description of how you did the
measurement and what results you got. Not every group will have the same object to
measure, but enough groups will to allow for comparison
of methods based on creativity and accuracy. Each group should do
its OWN measurement! There are many ways to perform observations.
The importance in science of comparing independent methods can not be
stressed enough.
The objectives for each group are listed below. Unlike most
science laboratory exercises with which you may be familiar, this
exercise will provide no equipment and no guidelines as to how to do the
measurement. All we ask is that you exercise common sense in terms of
safety.
In particular, climbing to the top of tall objects or getting onto the
roof of a building without prior permission are not allowed.
Your write-up should be at least 1½
pages in length and should
thoroughly discuss your method of measurement (or measurements)
including a listing of any equipment you may have used, the theory behind
your measurement technique, and the accuracy of your measurement. The last
point, accuracy, is very important since some measurement methods are more
accurate than others, hence any valid quantitative measurement should
include an estimate of its accuracy for comparison with other measurements.
Feel free to include any drawings or Maple plots which illustrate your
technique or results. In addition, graphs are certainly appropriate (in
fact necessary) in most cases in which an average measurement is used.
The write-up should also include a description of where and
when you made your observations (you
can get different numbers depending on where on the object you did your
measurement). Again, we are stressing completeness in your written
description. If you have trouble getting started,
ask your instructors or peer advisors for suggestions. Your objectives are below.
Due 7/30: Overnight problem: Cruise Control
Due 7/31: Probs. 1-1 thru 1-6.
Lab I: Finding the Measure of Things
Groups A and B
Measure the length (along the pedestrian path) of the bridge crossing 38th
street along Locust Walk.
Groups I and D
Measure the area (in square meters) of Hill House Field.
Groups E and F
Measure the height of the sculpture over Locust Walk near Harnwell House.
Groups G and H
Measure the average velocity of traffic on Walnut Street from
33rd to 38th.
Groups C and J
Measure the average amount of food (in kilograms) consumed by
PFP '95 MPC class members at dinner for a typical day.
You need only consider those class members who live in the dormitory.
Assignments for Week 1
Mon Jul 30 12:59:16 EDT 1996
hmwrk_week_1.html