Zeitreihenanalyse - Aufgabe 3
From StatWiki
Show that the simple linear function
is in
the neighborhood of zero approximately equal to the
nonlinear function
Sketch f(r) and g(r) for
pdf(rpdf)
r=seq(-.1,.1,length.out=500)
plot(r, r, xlab="x", ylab="f(r), g(r)", type="l")
lines(r, log(1+r), col=2)
legend(-.07,.07, c("f(r) = r", "g(r) = log(1 + r)"), lty=1, col=1:2)
#
Compare f(0) and f′(0) with g(0) and g′(0).
