Sequence of numbers defined by a starting number and
a constant multiplier. The second number is generated by multiplying by
the constant, the third by multiplying again, and so on.
Consider the sequence where 3 is the starting number and two is the constant.
Calculated three additional terms (12, 7, 9) rather than six (4, 5, 6, 7, 8,
9).
When considering finding an entry by a list, look for an ordering relationship.
Each entry no smaller or larger than the previous. (How does thatdiffer from always being larger/smaller?)
Or if you’re looking for a property, try to order the list so that all
those after a point have (or don’t have) that property.
Use the ordering to reduce work (and errors).
Calculate a few entries spaced far apart.
Find entries that bracket your search target. So you know your target
is between a
and b,
or in (a,b).
Then look half-way to form a new bracket. The new bracket will be
one of \left (a,(a + b)∕2\right )
or \left ((a + b)∕2,b\right ).
Remember to round consistently.
Recommended reading: Anything by Edward Tufte. The “Ask E.T.” section of his
personal site (http://www.edwardtufte.com) has examples of excellent and poor
graphics.
Groups are fine, turn in your own work. Homework is due in or before class on
Mondays.
Describe not only the result but also your approach in the following.
From problem set 1.3:
Problem 28 for following dependencies
Problem 40 both for bisection and guessing a reasonable range
Problem 52, think of bisection
Problem 56, think about lines and the shapes you can form
Problem 61, look for a pattern
How many ways can you make change for 60 cents using pennies, nickles,
dimes, and quarters. Either take great care in forming a long list, or look for a
relationship using smaller problems.
A hint for a long list: Do you need to move pennies one at a time?
A hint for a relationship: Consider the old example of 20 cents using pennies,
nickles and dimes. How many ways are there to change 20 cents using only
pennies and nickles? How many ways to change 20 cents minus one dime
using all the coins? The relationship makes constructing a table much
easier.
Note that you may email homework. However, I don’t use MicrosoftTM products
(e.g. Word), and software packages are notoriously finicky about translating
mathematics.
If you’re typing it (which I advise just for practice in whatever tools you use), you
likely want to turn in a printout. If you do want to email your submission, please
produce a PDF or PostScript document.