Illustrate the calculation of 319+284 and 319-284. Use rounding everywhere.
+--------+
| /15 |
+--------+
+--------+
| /10 |
+--------+
+------+----------+----------+----------+----------+-----------+-----------+ | step | a | b | x1 | x2 | f(x1) | f(x2) | +======+==========+==========+==========+==========+===========+===========+ | 0 | 0.000E+0 | 1.000E+0 | | | | | | 1 | | | | | | | | 2 | | | | | | | +------+----------+----------+----------+----------+-----------+-----------+
+--------+
| /15 |
+--------+
+--------+
| /10 |
+--------+
+--------+
| /10 |
+--------+
[ -1.000 4.000 -1.000 ]
A = [ 1.000 2.000 4.000 ]
[ 3.000 -3.000 4.000 ]
Calculate with four decimal places, using rounding: write the answer of every step rounded to four decimal places, and use the rounded number in the calculations of the next step.
+--------+
| /25 |
+--------+
+--------+
| /15 |
+--------+
1 3 3 5 5 7 35 9 ( 10 )
arcsin(x) = x + --- x + --- x + --- x + ---- x + O( x )
6 40 112 1152 ( )
Use this Maclaurin expansion to construct a
Padé approximation
for arcsin(x) as a quotient of two quadrics.
+--------+
| /15 |
+--------+
*=======*==============*
| x | f(x) |
*=======*==============*
| 0.000 | 0.0000000000 |
| 0.125 | 0.1256551366 |
| 0.250 | 0.2553419212 |
| 0.375 | 0.3936265759 |
| 0.500 | 0.5463024898 |
| 0.625 | 0.7214844410 |
| 0.750 | 0.9315964599 |
| 0.875 | 1.197421629 |
| 1.000 | 1.557407725 |
*=======*==============*
+--------+
| /25 |
+--------+
+--------+
| /15 |
+--------+
+--------+
| /15 |
+--------+
Give the linear system one has to solve in the method of finite differences with h = 0.2. Be considerate for the mixed boundary conditions.
+--------+
| /15 |
+--------+
With our first guess y'(0) = 1 we find 0.735758 at x=1. Our second guess y'(0) = 3 yields 1.47152 at x=1. What is your next guess for y'(0) in the shooting method?
+--------+
| /15 |
+--------+