✔ 最佳答案
1) Since p, q and r are in A.P., we have r - q = q - p and hence:
aRr-q = aRq-p for any real values of a and R
which comes to aRr / aRq = aRq / aRp → aRr-1 / aRq-1 = aRq-1 / aRp-1, implying that aRp-1, aRq-1 and aRr-1 are in G.P.
Therefore the pth, qth and rth terms of any G.P. are in G.P.
2) Let me assume that your question does not have any typo mistake. For such question, we have to solve it by means of Newton's-Raphson method which is a method of approximation of root as follows:
圖片參考:
http://i117.photobucket.com/albums/o61/billy_hywung/Maths/Newtonmethod.jpg
From the graph above, we can see that the general expression of each iterative value of root is:
xn+1 = xn - [F(xn)/F'(xn)]
Usually the iteration can top if |xn+1 - xn| < 10-4.
For the estimation of x0, find it such that F(x0) is reasonably small.
Now, let F(x) = 2x+2 - 6x - 2×32x+2, then
F(x) = 4×2x - 6x - 2×9×32x
= 4×2x - 6x - 18×9x
Therefore F'(x) = (4ln 2)2x - (ln 6)6x - (18ln 9)9x by means of logarithmic differentiation.
So for solving F(x) = 0, we start with x0 = -1 that F(x0) = -1/6
So using the above theory, we can perform the iteration as follows:
x1 = -1.0615
x2 = -1.0526
x3 = -1.0548
x4 = -1.0543
x5 = -1.0544
x6 = -1.0544
Therefore, we can see that the root can be approximated to x = -1.0544 (Corr. to 4 d.p.).