integral[T: TYPE+ FROM real]: THEORY %------------------------------------------------------------------------------ % % Theory and proofs taken from Introduction to Analysis (Maxwell Rosenlight) % % This theory provides the basic properties of the Riemann Integral % % Author: Rick Butler NASA Langley % %------------------------------------------------------------------------------
Integral_split: LEMMA Integrable?(a,b,f) AND Integrable?(b,c,f) IMPLIES Integrable?(a,c,f) AND
Integral(a,b,f) + Integral(b,c,f) = Integral(a,c,f)
Integral_chg_one_pt: LEMMAFORALL (y: Closed_interval(a,b)):
Integrable?(a,b,f) IMPLIES Integrable?(a,b,f WITH [(y) := yv]) AND
Integral(a,b,f WITH [(y) := yv]) = Integral(a,b,f)
% ---------------- Boundedness of Integral -----------------------------
Integral_ge_0: LEMMA a < b AND Integrable?(a,b,f) AND
(FORALL (x: Closed_interval(a,b)): f(x) >= 0) IMPLIES
Integral(a,b,f) >= 0
Integral_ge_0_open: LEMMA a <= b AND Integrable?(a,b,f) AND
(FORALL (x: Open_interval(a,b)): f(x) >= 0) IMPLIES
Integral(a,b,f) >= 0
Integral_bound: LEMMA a < b AND Integrable?(a,b,f) AND
(FORALL (x: Closed_interval(a,b)):
m <= f(x) AND f(x) <= M ) IMPLIES m*(b-a) <= Integral(a,b,f) AND Integral(a,b,f) <= M*(b-a)
Integral_bounded: LEMMA Integrable?(a,b,f) AND
(FORALL (x: Closed_interval(a,b)): abs(f(x)) <= M) IMPLIES
abs(Integral(a,b,f)) <= M*abs(b-a)
Integral_le : LEMMA a < b AND Integrable?(a,b,f) AND Integrable?(a,b,g) AND (FORALL (x: closed_interval(a,b)): f(x) <= g(x)) IMPLIES
Integral(a,b,f) <= Integral(a,b,g)
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.