ln_series: THEORY %---------------------------------------------------------------------------- % % Series Expansion for Natural Logarithm Function % % Author: Ricky W. Butler NASA Langley Research Center % % September 2012 by Anthony Narkawicz (Series is Increasing) % Note. See ln_exp_series_alt for an alternate formulation %---------------------------------------------------------------------------- BEGIN IMPORTING ln_exp,
series@taylor_series,
convergence_special
x,y: VAR real
n,m: VAR nat
a: VAR sequence[real]
l,t: VAR real
abslt1: TYPE = {x: real | abs(x) < 1}
absle1: TYPE = {x: real | abs(x) <=1}
noa_posreal: LEMMA not_one_element?[posreal]
noa_gt_m1 : LEMMA not_one_element?[{x: real | x > -1}]
conn_gt_m1: LEMMA connected?[{x: real | x > -1}]
conn_posreal: LEMMA connected?[posreal]
conn_abslt1: LEMMA connected?[abslt1]
noa_abslt1: LEMMA not_one_element?[abslt1]
deriv_domain_gtm1: LEMMA deriv_domain?[{x: real | x > -1}]
% --- Series for log(1+x) follows from term-by-term integration % --- of 1/(1+x) = 1 - x + x^2 - x^3. Using term-by-term % --- in power_series_integ, we can use proof in Rosenlicht % --- page 155 or Salas-Hille pg 466 to get log(1+x) series for abs(x) < 1 % --- Also use corollary 3 on pg 128 of Rosenlicht to establish that % --- ln(1+x) = integral(1,1+x,1/t) = integral(0,x,1/(1+t)) %
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.