The Riemann sum approximates the area under a curve by n rectangles, each with height given by evaluating f at increments
f(x0+kΔx)
and each with width given by
Δx = 2/n
The sum of these is
∑k f(x0 + kΔx)(Δx)
where k ranges from k=1 to k= n in the right-side approximation, x0=1 is the left endpoint, and (as you already found) Δx = (3-1)/n = 2/n. To help remember this setup, it can help to simply draw a picture with the graph of your given function, and rectangles approximating under/above it.
Drawing can be especially helpful when you're asked to set up left or right endpoint approximations and you want to keep track of all of the specific endpoints and the different values for the index k.
Now, evaluate the expression in the summand. Keep in mind that we want to think of k as the changing variable until we can use summation formulas to write the sum in terms of only n. Only after we get rid of the summation and any use of k should we attempt to take the limit.
Forgetting the summation notation for the time being, let's focus on simplifying the summand expression
f(x0 + k(Δx))(Δx) = (3(1 + 2k/n)2 - 12(1 + 2k/n) + 9)(2/n)
= (3(1 + 4k/n + 4k2/n2) - 12 - 24k/n + 9)(2/n)
= -12k/n2 + 12k2/n3
Now to sum this over k, treat n as a constant and use the formulas
Σ1 = n (the sum of n 1's, 1 + 1 + ... + 1 = n)
∑k = n(n+1)/2
Σk2 = n(n+1)(2n+1)/6
(where the sums are taken from k=1 to k=n)
Broad A.
@Amir C. yes, this is a solution using integration. I am looking at infinite summation/limits. Reference: Saxon Calculus 2nd Ed. Lesson 43. Thanks though.11/28/20