这是一份Caltech加州理工学院的Numerical analysis数值分析代考案例
加州理工的这门数值分析课属于入门课程,exam考察的内容主要也是数学分析的基本功和数值分析中的一些基本概念和方法,比如absolute error, polynomial interpolation.
客户在我们的帮助下取得了理想的成绩。

TRUE or FALSE? Prove or disprove the following statements (no points for correct answer without a valid proof):
a) (2 points) If f∈C1[a,b] and |f′(x)|≤1 for all x∈[a,b], then there can be at most one number p∈[a,b] for which f(p)=2p.
b) (2 points) If f(x) is Lipschitz on (−∞,∞), then so is f(x)2 on (−∞,∞).
a) TRUE – Suppose there are two values p,q with p≠q s.t. f(p)=2p and f(q)=2q. Then by the MVT, there exists ξ∈[a,b] s.t.
f′(ξ)=f(p)−f(q)p−q=2p−2qp−q=2.
But |f′(x)|≤1 for x∈[a,b], so by contradiction p=q.
b) FALSE – Consider e.g. f(x)=x, which is Lipschitz with L=1. But f(x)=x2 is not, since f′(x)=2x which is unbounded.
a) (3 points) Show that the fixed point iteration
pn=p2n−1+35,n=1,2,…
converges for any initial p0∈[0,1].
b) (1 point) Estimate how many iterations n are required to obtain an absolute error |pn−p| less than 10−4 when p0=1. No numerical value needed, just give an expression for n.
a) Show g(x)∈[0,1] for x∈[0,1] :
g(0)=3/5 g(1)=4/5
increasing function
Show |g′(x)|≤k<1 :
g′(x)=2x5≤25=k<1
b)
10−4=|pn−p|≤knmax
Find the fourth degree polynomial f(x) which satisfies the conditions
f(0)=1, f(1)=2, f^{\prime}(1)=\alpha, f(2)=2 \alpha, f^{\prime}(2)=2 \alpha
\Longrightarrow f(x)=1+x+(\alpha-1) x(x-1)-\frac{1}{2} x(x-1)^{2}+\left(\frac{9}{4}-\frac{\alpha}{2}\right) x(x-1)^{2}(x-2)