1. 定积分的定义
定义 设函数 在区间 上有定义且有界。
(1) 分割. 在 中任意插入 个分点,将区间 分成 个小区间 ,记 表示第 个小区间的长度。
定义 设函数 在区间 上有定义且有界。
(1) 分割. 在 中任意插入 个分点,将区间 分成 个小区间 ,记 表示第 个小区间的长度。
© 2022 - present. All Rights Reserved.滇ICP备2025063395号-1
花野猫打造(2) 求和. 在 上任取一点 ,作和式 记 。
(3) 取极限. 若极限 存在,且此极限值既不依赖于区间 的分法,也不依赖于点 的取法,则称 在区间 上可积,并称此极限为 在区间 上的定积分,记为 ,即
【注】 (1) 定积分表示一个数值,仅与积分区间 和被积函数 有关,与积分变量 无关,因此有
(2) 若积分 存在,则 ,且极限 与 的取法和区间 的分法无关。
因此,如果积分 存在,就可将 区间 等分,此时 ,取 ,由定积分的定义得 上式在用定积分定义求极限时是一种常见形式。
函数(f(x))从a到b的定积分,等于,分割区间的最大细度(\lambda)趋于零时,i从1取到n,f在(\xi_i)点的函数值乘以小区间长度(\Delta x_i)所作和式的极限。
见:几何意义
例1
解:
例2(2012,数二)
解:
例3(2016,数二、三)
解:
例4(2017,数一、二、三)
解:
说明:“提可爱因子”是笔记戏称,实际就是提取,凑定积分定义:
关于定积分的条件,要有定义且有界,像是 1/x 在0到1上就不可做定积分。
关于定积分的定义结合极限求解的题目,要把握 n分之一实际上是 delta x ,从1到n会变的项是fx i,一般都是[0,1]区间的积分,因为n分之1等于0,n分之n等于1,实际上都是在对 [0,1] 的区间做 n 等分。
做关于定积分的概念的 2017 年真题,化简后遇到一个不定积分不会求,是一个很简单的假分式 x方除以 1+x 却令我束手无策,我连假分式化真分式都不会,原来是要配凑。最后1/2减1/4也出错。
\begin{tikzpicture}[scale=0.65]% 坐标轴\draw[->, thick] (-3.4,0) -- (3.4,0) node[right] {$x$};\draw[->, thick] (0,-1.3) -- (0,1.3) node[above] {$y$};% x轴刻度\foreach \x in {-3,-2,-1,1,2,3}{\draw[thick] (\x,0.08) -- (\x,-0.08) node[below] {$\x$};}\node[below right] at (0,0) {$O$};% [-3,-2] 上半圆弧,直径1,圆心(-2.5,0),r=0.5\draw[thick] (-3,0) arc[start angle=180, end angle=0, radius=0.5];% [-2, 0] 下半圆弧,直径2,圆心(-1,0), r=1% 起点(-2,0),向下画半圆到(0,0):180°→360°\draw[thick] (-2,0) arc[start angle=180, end angle=360, radius=1];% [0, 2] 上半圆弧,直径2,圆心(1,0), r=1% 起点(0,0),向上画半圆到(2,0): 180°→0°\draw[thick] (0,0) arc[start angle=180, end angle=0, radius=1];% [2, 3] 下半圆弧,直径1,圆心(2.5,0), r=0.5\draw[thick] (2,0) arc[start angle=180, end angle=360, radius=0.5];% 函数标签\node[above] at (1.2,1.1) {$y=f(x)$};% 图题\node[below] at (0,-1.6) {图 2};\end{tikzpicture}
\documentclass[tikz,border=5pt]{standalone}\usetikzlibrary{patterns}\begin{document}\begin{tikzpicture}[scale=1.2]% 定义函数曲线路径\def\curve{(-3.2, 1.2).. controls (-2.8, 1.25) and (-2.4, 1.1) .. (-2.0, 0.6).. controls (-1.7, 0.1) and (-1.5, -0.3) .. (-1.3, -0.5).. controls (-1.0, -0.7) and (-0.7, -0.6) .. (-0.4, -0.3).. controls (-0.1, 0.0) and (0.0, 0.2) .. (0.2, 0.5).. controls (0.5, 0.8) and (0.9, 0.9) .. (1.3, 0.85).. controls (1.7, 0.8) and (2.0, 0.9) .. (2.4, 1.0).. controls (2.7, 1.1) and (3.0, 1.15) .. (3.2, 1.2)}% 阴影区域(曲线与x轴之间)% 左侧正区域\fill[pattern=dots, pattern color=gray!60](-3.2, 0) -- (-3.2, 1.2).. controls (-2.8, 1.25) and (-2.4, 1.1) .. (-2.0, 0.6).. controls (-1.7, 0.1) and (-1.55, 0) .. (-1.5, 0)-- cycle;% 中间负区域\fill[pattern=dots, pattern color=gray!60](-1.5, 0).. controls (-1.55, 0) and (-1.7, 0.1) .. (-2.0, 0.6).. controls (-1.7, 0.1) and (-1.5, -0.3) .. (-1.3, -0.5).. controls (-1.0, -0.7) and (-0.7, -0.6) .. (-0.4, -0.3).. controls (-0.1, 0.0) and (-0.05, 0) .. (0, 0)-- cycle;% 右侧正区域\fill[pattern=dots, pattern color=gray!60](0, 0).. controls (-0.1, 0.0) and (0.0, 0.2) .. (0.2, 0.5).. controls (0.5, 0.8) and (0.9, 0.9) .. (1.3, 0.85).. controls (1.7, 0.8) and (2.0, 0.9) .. (2.4, 1.0).. controls (2.7, 1.1) and (3.0, 1.15) .. (3.2, 1.2)-- (3.2, 0) -- cycle;% 坐标轴\draw[->, >=stealth, thick] (-4, 0) -- (4.2, 0) node[below right] {$x$};\draw[->, >=stealth, thick] (0, -1.2) -- (0, 2.2) node[above left] {$y$};% 函数曲线\draw[thick] \curve;% 左右边界竖线\draw[thick] (-3.2, 0) -- (-3.2, 1.2);\draw[thick] (3.2, 0) -- (3.2, 1.2);% 标签\node[below] at (-3.2, 0) {$a$};\node[below] at (3.2, 0) {$b$};\node[below left] at (0, 0) {$O$};\node[above right] at (0.5, 1.3) {$y=f(x)$};\end{tikzpicture}\end{document}
更新于2026-09-08