Joseph C. answered 08/08/20
Teacher | Researcher | Programmer
First remember that a Riemann sum estimates the area under a curve by dividing the interval in rectangles on equal width.
The internal is from x ∈ [0,1] and we need to dived it ten times. Therefore the width of our 10 is rectangles
w = (1-0)/10 = 0.1, w = width
So the edges of the rectangles are positioned at xi = [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1]
we have that the height of our rectangle will be given by
f(x) = x + 8
The question is the height is given by the right edges of the rectangles or the left edges
Right edges: x ∈ {0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9}
Left edges: x ∈ {0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1}
So now we can calculate the heights by evaluating the right edges on f(x), we do the same for the Left edges
heights using the right edges: h ∈ {8, 8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7, 8.8, 8.9}
heights using the left edges: h ∈ {8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7, 8.8, 8.9, 9.0}
So now we can multiply the heights by their width to get the area of each rectangle and sum them all to get the total area.
A = (0.8 + 0.81 + 0.82 + 0.83 + 0.84 + 0.85 + 0.86 + 0.87 + 0.88 + 0.89), using right edges
A = (0.81 + 0.82 + 0.83 + 0.84 + 0.85 + 0.86 + 0.87 + 0.88 + 0.89 + 0.90), using left edges
Total A = 8.45, using right edges
Total A = 8.55, using left edges