Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Math Expert


Home >> Math

Find all the real solutions to cubic equation x^3 + 4x^2 - 10 =0. Use the cubic equation x^3 + 4x^2 - 10 =0 and perform the following call to the bisection method [0, 1, 30]

Use the fixed point iteration to find the fixed point(s) for the function g(x) = 1 + x - x^2/3

Find all the real solutions to cubic equation x^3 +4x^2-10=0. Use the cubic equation x^3 + 4x^2 - 10 =0 and perform the following call to the regulaFalsi [0, 1, 30]

Use newton's method to find the three roots of a cubic polynomial f(x) = 4x^3 - 15x^2 + 17x-6. Determine the Newton-raphson iteration formula g[x] = x - (f(x)/f'(x)) that is used. Show details of the computation for the starting value p0 = 3.

Use the secant method to find the three roots of cubic polynomial f[x]=4x^3 - 16x^2 + 17x - 4. Determine the secant iterative formula g[x] = x - (f[x]/f'[x]) that is used. Show details of the computation for the starting value p0=3 and p1=2.8

Use appropiate Lagrange interpolating polynomials of degrees one, two, and three to approximate each of the following:

A) f(8.4) if f(8.1)= 16.94410, f(8.3)=17.56492, f(8.6)=18.50515, and f(8.7)=18.82091

B)f(1/3) if f(-0.75)= -0.07181250, f(-0.5) = -0.02475000, f(-0.025) = 0.33493750, and f(0)=18.82091

Use the newton forward divided-difference formula is used to approximate f(0.3) given the following data

X        0.0     0.2     0.4     0.6

F(x)  15.0   21.0   30.0   51.0

Suppose it is discovered that f(0.4) was understand by 10 and f(0.6) was overstated by 5. By what amount should the approximation to f(0.3) be changed?

Using the error formulas

|f(x)-P1(x)| ≤ 1/8 max (f(x))h2, linear interpolation

|f(x)-P2(x)| ≤ 1/9√3 max (f(x))h3, quadratic interpolation

A)  what is an appropriate size for the interpolation table for the function tan x on the interval [0,1] in order that linear interpolation produce an error no larger than 0.5 x 10^6

B)   Answer A)

A) Using taylor series expansions derive the O(h^2) central difference approximation

F'(x)= (f(x+h)-f(x-h))/2h

B)  using richardson extrapolation and taylor series expansions derive the O (h4) derivative approximation

F'(x)= (-f(x+2h)+8f(x+h)-8f(x-h)+f(x-2h))/12h

Consider the richardson table for derivatives in the form step size table

Step size                       table

H                                  D(0,0)

H/2                               D(1,0)        D(1,1)

H/2^2                           D(2,0)        D(2,1)        D(2,2)

H/2^3                           D(3,0)        D(3,1)        D(2,3)        D(3,3)

.

.

Where the central difference formula

(h)   = (f(x+h)-f(x-h)) /2h

Is used to construct the first column using

D(n,0)= (h/2^n)

And the following formula

D(n,m)= (4^mD(n,m-1)-D(n-1,m-1))/4^m-1 (use for hand calculations)

D(n,m-1)+((D(n,m-1)-D(n-1,m-1)/(4^m-1)) (use for programming)

Is used, for n≥m, to obtain entries in other columns in terms of the entry to their left and the entry above this entry. For example, D(2,1) is obtained in terms of D(2,0) and D(1,0) and D(3,2) is obtained in terms of D(3,1) and D(2,1)

A) construct the table for the derivative of tan x at x=0.5. Choose an initial step size of h=1 and calculate 4 rows by hand using a calculator

B) use maple procedure richardson in file richardson.txt to calculate 6 rows of the richardson extrapolation table.

----------------------------------------------------------------------------------------------

# lip.txt:

#Symbolic calculation of LIP

#(Lagrange interpolating polynomial)

#

#Arguments

#

#xp   list [x0,x1,....,xn] of nodes

#yp   list[y0,y1,.....,yn] of function values at nodes

#x     symbolic variable for the polynomial

#

#lists xp amd yp have n+1 elements and begin at subscript 1

#so the interpolating polynomial is of degree n

----------------------------------------------------------------------------------------------

lip := proc(xp,yp,x)

         local n,s,p,k,j;

         N := nops(xp) -1; #nops(xp) gives number of elements in xp

         S := 0;

         For k from 0 to n do

                   P := yp[k+1];

                   For j from 0 to n do

                            If j<>k then

                                     P := p*(x-xp[j+1])/(xp[k+1]-xp[j+1]);

                            Fi;

                   Od;

                   S := s=p;

         Od;

         Return s;

End proc:

Math, Academics

  • Category:- Math
  • Reference No.:- M9525422

Have any Question?


Related Questions in Math

Mathematics- algebraic geometry problemlet k denotes an

Mathematics- Algebraic Geometry Problem Let K denotes an algebraically closed field and let P 1 be constructed as in Example 5.5(a) in Gathmanns notes, i.e. P 1 is the gluing of X 1 = A 1 and X 2 = A 1 along  the open su ...

Instructionsthe aim of the assignment is that the

Instructions The aim of the assignment is that the student/group studies and applies numerical methods such as Euler's method, the Improved Euler's method and the Runge-Kutta method to solve first-order differential equa ...

Mathematics- algebraic geometry problemlet k denotes an

Mathematics- Algebraic Geometry Problem Let K denotes an algebraically closed field and let P 1 be constructed as in Example 5.5(a) in Gathmanns notes, i.e. P 1 is the gluing of X 1 = A 1 and X 2 = A 1 along  the open su ...

Clarity succinctness writing your name and netid1

Clarity, succinctness, writing your name and Netid: 1 Indistinguishability 1. If {X n }n is computationally indistinguishable from {Y n } n , {Y n } n is computationally indistin- guishable from {Z n } n, then (select th ...

Questions - provide solution to the following questionsq1

Questions - Provide solution to the following questions: Q1. Evaluate the following: ∫xsin3xdx Q2. If , then for what value of α is A an identity matrix? Q3. The line y = mx + 1 is a tangent to the curve y 2 = 4x. Find t ...

Maths assignment - 1 analysis of a data setusing a

Maths Assignment - 1. Analysis of a data set Using a continuous data set you are requested to collect in the types of data and gathering data section, perform a statistical analysis on your data. You have opportunities t ...

Assignment -question 1 let t and or 0 1 be a boolean

Assignment - Question 1. Let (T, ∧, ∨,', 0, 1) be a Boolean Algebra. Define ∗ : T × T → T and o : T × T → T as follows: x ∗ y := (x ∨ y)' x o y := (x ∧ y)' (a) Show, using the laws of Boolean Algebra, how to define x ∗ y ...

Questions -q1 prove the following identitiesa sinx y sinx

Questions - Q1. Prove the following identities a. sin(x + y) + sin(x - y) = 2 sin x cos y b. sec(x - y) = cos(x + y)/(cos 2 x - sin 2 y) c. tan 2 x - sin 2 x = (tan x sin x) 2 Q2. Solve the following equations for x ∈ [0 ...

Assignment - solving the five question in the very details

Assignment - Solving the five question in the very details, thanks a lot. Question - Let a ∈ P n be a point. Show that the one-point set {a} is a projective variety, and compute explicit generators for the ideal I p ({a} ...

1 suppose that n 10088821 is a product of two distinct

1. Suppose that n = 10088821 is a product of two distinct primes, and Φ(n) = 10082272. Determine the prime factors of n. 2. It is easy to show that the converse of Fermat's Theorem does not hold; i.e., the congruence a n ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As