Homework
Section 7.1 (pp.359-361) - #5-12, 13, 14, 15, 17, #21-26
Section 7.2 (pp.368-369) - #5-18, 19, 20
Section 7.3 (pp.376-377) - #5-12, #13-18
7.2 6
import graph;
size(400,IgnoreAspect);
real f(real x) { return 5x;}
fill((1,0)--(1,f(1))--(2,f(2))--(2,0)--cycle,cyan);
draw(graph(f,0,2.5),blue+1.2, "$y=5x$");
xaxis("$x$",BottomTop,LeftTicks);
yaxis("$y$",LeftRight,RightTicks(trailingzero));
label("$y=5x$",(1.2,8),black);
pen p = white;
shipout(bbox(p,Fill));