Bootstrap

积分的线性性质

积分的线性性质

flyfish

积分的线性性质主要有两个方面:

  1. 积分对常数的乘法是线性的(常数因子的提取)
    如果 f ( x ) f(x) f(x) 是一个可积函数,且 c c c 是一个常数,那么
    ∫ a b c ⋅ f ( x )   d x = c ⋅ ∫ a b f ( x )   d x \int_a^b c \cdot f(x) \, dx = c \cdot \int_a^b f(x) \, dx abcf(x)dx=cabf(x)dx

  2. 积分对函数的加法是线性的
    如果 f ( x ) f(x) f(x) g ( x ) g(x) g(x) 是两个可积函数,那么
    ∫ a b ( f ( x ) + g ( x ) )   d x = ∫ a b f ( x )   d x + ∫ a b g ( x )   d x \int_a^b \left( f(x) + g(x) \right) \, dx = \int_a^b f(x) \, dx + \int_a^b g(x) \, dx ab(f(x)+g(x))dx=abf(x)dx+abg(x)dx
    结合起来(线性组合),我们可以说积分具有线性性质,即对于任意常数 c 1 c_1 c1 c 2 c_2 c2,以及可积函数 f ( x ) f(x) f(x) g ( x ) g(x) g(x),有:
    ∫ a b ( c 1 f ( x ) + c 2 g ( x ) )   d x = c 1 ∫ a b f ( x )   d x + c 2 ∫ a b g ( x )   d x \int_a^b \left( c_1 f(x) + c_2 g(x) \right) \, dx = c_1 \int_a^b f(x) \, dx + c_2 \int_a^b g(x) \, dx ab(c1f(x)+c2g(x))dx=c1abf(x)dx+c2abg(x)dx

为什么是这样?

可以从积分的几何解释来看。定积分的几何意义是求函数图像与 ( y ) 轴之间的面积。对于常数 ( c ),在区间 ([a, b]) 上,其图像是一个高度为 ( c ) 的水平线,宽度为 ( b - a )。
给定一个常数 c,我们要计算它在区间 [𝑎,𝑏]上的定积分:
∫ a b c   d y \int_a^b c \, dy abcdy
对于常数 ( c ),在区间 ([a, b]) 上的定积分可以通过乘以区间长度来计算:
∫ a b c , d y = c ( b − a ) \int_a^b c , dy = c (b - a) abc,dy=c(ba)
矩形的面积公式是“宽度乘以高度”,因此对于常数 ( c ),在区间 ([a, b]) 上的定积分实际上是求这个矩形的面积:

∫ a b c   d y = 高度 × 宽度 = c × ( b − a ) \int_a^b c \, dy = \text{高度} \times \text{宽度} = c \times (b - a) abcdy=高度×宽度=c×(ba)
常数函数 y = c y = c y=c 在区间 [ a , b ] [a, b] [a,b] 上的定积分的几何意义。

  1. 函数图像 :蓝色的水平线表示常数函数 y = c y = c y=c

  2. 区间 [ a , b ] [a, b] [a,b] :红色的虚线表示 x = a x = a x=a,绿色的虚线表示 x = b x = b x=b

  3. 面积 :淡蓝色的区域表示矩形的面积,这个区域的高度是 c c c,宽度是 b − a b - a ba

根据图中的标注,矩形的面积(即定积分的值)为:
∫ a b c   d y = c × ( b − a ) \int_a^b c \, dy = c \times (b - a) abcdy=c×(ba)
​​

在这里插入图片描述

import matplotlib.pyplot as plt
import numpy as np

# Define the constant c and the interval [a, b]
c = 3
a = 2
b = 5

# Create an array of x values from a to b
x = np.linspace(a, b, 500)
y = np.full_like(x, c)

# Plot the function y = c
plt.figure(figsize=(8, 6))
plt.plot(x, y, label=f'y = {c}', color='blue')
plt.fill_between(x, y, color='lightblue', alpha=0.5)

# Add vertical lines to represent the boundaries a and b
plt.axvline(x=a, color='red', linestyle='--', label=f'x = {a}')
plt.axvline(x=b, color='green', linestyle='--', label=f'x = {b}')

# Calculate the area of the rectangle
area = c * (b - a)

# Add text to the plot to show the area
plt.text((a+b)/2, c/2, f'Area = {c} * ({b} - {a}) = {area}', 
         horizontalalignment='center', verticalalignment='center', 
         fontsize=12, color='black', bbox=dict(facecolor='white', alpha=0.8))

# Add labels and title
plt.xlabel('x')
plt.ylabel('y')
plt.title('Geometric Interpretation of Definite Integral of a Constant Function')
plt.legend(loc='upper right', bbox_to_anchor=(1.1, 1))
plt.grid(True)
plt.show()

对于直线函数 y = m x y = mx y=mx,我们在区间 [ a , b ] [a, b] [a,b] 上计算定积分。该函数形成的区域是一个三角形。三角形的面积公式为:
面积 = 1 2 × 底边 × 高度 \text{面积} = \frac{1}{2} \times \text{底边} \times \text{高度} 面积=21×底边×高度
在这种情况下:

  • 底边 = b − a = b - a =ba

  • 高度 = m × b − m × a = m ( b − a ) = m \times b - m \times a = m(b - a) =m×bm×a=m(ba)
    因此,三角形的面积公式是:
    ∫ a b m x   d x = 1 2 × ( b − a ) × ( m × b − m × a ) = 1 2 × ( b − a ) × m ( b − a ) \int_a^b mx \, dx = \frac{1}{2} \times (b - a) \times (m \times b - m \times a) = \frac{1}{2} \times (b - a) \times m (b - a) abmxdx=21×(ba)×(m×bm×a)=21×(ba)×m(ba)
    ∫ a b m x   d x = 1 2 × m ( b − a ) 2 \int_a^b mx \, dx = \frac{1}{2} \times m (b - a)^2 abmxdx=21×m(ba)2这是通过积分直线函数 y = m x y = mx y=mx 在区间 [ a , b ] [a, b] [a,b] 上得到的。

在这里插入图片描述

import matplotlib.pyplot as plt
import numpy as np

# Define the slope m and the interval [a, b]
m = 2
a = 2
b = 5

# Create an array of x values from a to b
x = np.linspace(a, b, 500)
y = m * x

# Plot the function y = mx
plt.figure(figsize=(8, 6))
plt.plot(x, y, label=f'y = {m}x', color='blue')
plt.fill_between(x, y, color='lightblue', alpha=0.5)

# Add vertical lines to represent the boundaries a and b
plt.axvline(x=a, color='red', linestyle='--', label=f'x = {a}')
plt.axvline(x=b, color='green', linestyle='--', label=f'x = {b}')

# Calculate the area of the triangle
area_triangle = 0.5 * (b - a) * (m * b - m * a)

# Add text to the plot to show the area
plt.text((a+b)/2, m*b/4, f'Area = 0.5 * ({b} - {a}) * ({m}*{b} - {m}*{a}) = {area_triangle}', 
         horizontalalignment='center', verticalalignment='center', 
         fontsize=12, color='black', bbox=dict(facecolor='white', alpha=0.8))

# Add labels and title
plt.xlabel('x')
plt.ylabel('y')
plt.title('Geometric Interpretation of Definite Integral of a Linear Function')
plt.legend(loc='upper right', bbox_to_anchor=(1.1, 1))
plt.grid(True)
plt.show()

例子

假设我们有两个函数 f ( x ) = x f(x) = x f(x)=x g ( x ) = x 2 g(x) = x^2 g(x)=x2,并且我们要计算在区间 [ 0 , 1 ] [0, 1] [0,1] 上的积分。

  1. 首先,我们分别计算 f ( x ) f(x) f(x) g ( x ) g(x) g(x) 的积分: ∫ 0 1 x   d x = x 2 2 ∣ 0 1 = 1 2 2 − 0 2 2 = 1 2 \int_0^1 x \, dx = \left. \frac{x^2}{2} \right|_0^1 = \frac{1^2}{2} - \frac{0^2}{2} = \frac{1}{2} 01xdx=2x2 01=212202=21

∫ 0 1 x 2   d x = x 3 3 ∣ 0 1 = 1 3 3 − 0 3 3 = 1 3 \int_0^1 x^2 \, dx = \left. \frac{x^3}{3} \right|_0^1 = \frac{1^3}{3} - \frac{0^3}{3} = \frac{1}{3} 01x2dx=3x3 01=313303=31

  1. 现在,我们计算 2 f ( x ) + 3 g ( x ) = 2 x + 3 x 2 2f(x) + 3g(x) = 2x + 3x^2 2f(x)+3g(x)=2x+3x2 的积分: ∫ 0 1 ( 2 x + 3 x 2 )   d x = ∫ 0 1 2 x   d x + ∫ 0 1 3 x 2   d x \int_0^1 (2x + 3x^2) \, dx = \int_0^1 2x \, dx + \int_0^1 3x^2 \, dx 01(2x+3x2)dx=012xdx+013x2dx

根据线性性质,我们可以将积分拆开计算:
∫ 0 1 2 x   d x = 2 ∫ 0 1 x   d x = 2 ⋅ 1 2 = 1 \int_0^1 2x \, dx = 2 \int_0^1 x \, dx = 2 \cdot \frac{1}{2} = 1 012xdx=201xdx=221=1

∫ 0 1 3 x 2   d x = 3 ∫ 0 1 x 2   d x = 3 ⋅ 1 3 = 1 \int_0^1 3x^2 \, dx = 3 \int_0^1 x^2 \, dx = 3 \cdot \frac{1}{3} = 1 013x2dx=301x2dx=331=1

  1. 最终结果是:
    ∫ 0 1 ( 2 x + 3 x 2 )   d x = 1 + 1 = 2 \int_0^1 (2x + 3x^2) \, dx = 1 + 1 = 2 01(2x+3x2)dx=1+1=2

依据

微积分的基本定理包括两个部分:

  1. 基本定理的第一部分
    f f f 是在闭区间 [ a , b ] [a, b] [a,b]上的连续函数,且 F F F f f f 的一个原函数,即 F ′ ( x ) = f ( x ) F'(x) = f(x) F(x)=f(x) 对于所有 x x x 属于 [ a , b ] [a, b] [a,b]。那么: ∫ a b f ( x )   d x = F ( b ) − F ( a ) \int_a^b f(x) \, dx = F(b) - F(a) abf(x)dx=F(b)F(a)

  2. 基本定理的第二部分
    f f f 是在开区间 ( a , b ) (a, b) (a,b) 上的可积函数。如果定义函数 g g g g ( x ) = ∫ a x f ( t )   d t g(x) = \int_a^x f(t) \, dt g(x)=axf(t)dt
    g g g ( a , b ) (a, b) (a,b) 上处处可导,且 g ′ ( x ) = f ( x ) g'(x) = f(x) g(x)=f(x)

在我们的例子中,我们用到了基本定理的第一部分。具体过程如下:

  1. 对于函数 f ( x ) = x f(x) = x f(x)=x,我们找到它的原函数 F ( x ) = x 2 2 F(x) = \frac{x^2}{2} F(x)=2x2,然后应用基本定理: ∫ 0 1 x   d x = x 2 2 ∣ 0 1 = 1 2 2 − 0 2 2 = 1 2 \int_0^1 x \, dx = \left. \frac{x^2}{2} \right|_0^1 = \frac{1^2}{2} - \frac{0^2}{2} = \frac{1}{2} 01xdx=2x2 01=212202=21

  2. 对于函数 g ( x ) = x 2 g(x) = x^2 g(x)=x2,我们找到它的原函数 G ( x ) = x 3 3 G(x) = \frac{x^3}{3} G(x)=3x3,然后应用基本定理: ∫ 0 1 x 2   d x = x 3 3 ∣ 0 1 = 1 3 3 − 0 3 3 = 1 3 \int_0^1 x^2 \, dx = \left. \frac{x^3}{3} \right|_0^1 = \frac{1^3}{3} - \frac{0^3}{3} = \frac{1}{3} 01x2dx=3x3 01=313303=31

  3. 然后,我们利用积分的线性性质,将组合函数 2 x + 3 x 2 2x + 3x^2 2x+3x2 的积分拆开: ∫ 0 1 ( 2 x + 3 x 2 )   d x = ∫ 0 1 2 x   d x + ∫ 0 1 3 x 2   d x \int_0^1 (2x + 3x^2) \, dx = \int_0^1 2x \, dx + \int_0^1 3x^2 \, dx 01(2x+3x2)dx=012xdx+013x2dx

并分别计算:
∫ 0 1 2 x   d x = 2 ∫ 0 1 x   d x = 2 ⋅ 1 2 = 1 \int_0^1 2x \, dx = 2 \int_0^1 x \, dx = 2 \cdot \frac{1}{2} = 1 012xdx=201xdx=221=1

∫ 0 1 3 x 2   d x = 3 ∫ 0 1 x 2   d x = 3 ⋅ 1 3 = 1 \int_0^1 3x^2 \, dx = 3 \int_0^1 x^2 \, dx = 3 \cdot \frac{1}{3} = 1 013x2dx=301x2dx=331=1

  1. 最后,将结果相加:
    ∫ 0 1 ( 2 x + 3 x 2 )   d x = 1 + 1 = 2 \int_0^1 (2x + 3x^2) \, dx = 1 + 1 = 2 01(2x+3x2)dx=1+1=2

二重积分表达式

V = ∫ 0 2 ∫ 0 1 ( 8 x + 6 y )   d x   d y V = \int_0^2 \int_0^1 (8x + 6y) \, dx \, dy V=0201(8x+6y)dxdy

  1. x x x 进行内积分 :
    ∫ 0 1 ( 8 x + 6 y )   d x \int_0^1 (8x + 6y) \, dx 01(8x+6y)dx
    首先,将 6 y 6y 6y 视为常数:
    ∫ 0 1 8 x   d x + ∫ 0 1 6 y   d x \int_0^1 8x \, dx + \int_0^1 6y \, dx 018xdx+016ydx
    计算 8 x 8x 8x 的积分:
    4 x 2 ∣ 0 1 = 4 ( 1 ) 2 − 4 ( 0 ) 2 = 4 4x^2 \bigg|_0^1 = 4(1)^2 - 4(0)^2 = 4 4x2 01=4(1)24(0)2=4
    计算 6 y 6y 6y 的积分(这里 y y y 是常数):
    6 y ∫ 0 1 d x = 6 y [ x ] ∣ 0 1 = 6 y ( 1 − 0 ) = 6 y 6y \int_0^1 dx = 6y [x] \bigg|_0^1 = 6y (1 - 0) = 6y 6y01dx=6y[x] 01=6y(10)=6y结合上述结果:
    ∫ 0 1 ( 8 x + 6 y )   d x = 4 + 6 y \int_0^1 (8x + 6y) \, dx = 4 + 6y 01(8x+6y)dx=4+6y

  2. y y y 进行外积分 :
    ∫ 0 2 ( 4 + 6 y )   d y \int_0^2 (4 + 6y) \, dy 02(4+6y)dy
    计算 4 4 4 的积分:
    4 y ∣ 0 2 = 4 ( 2 ) − 4 ( 0 ) = 8 4y \bigg|_0^2 = 4(2) - 4(0) = 8 4y 02=4(2)4(0)=8
    计算 6 y 6y 6y 的积分:
    3 y 2 ∣ 0 2 = 3 ( 2 ) 2 − 3 ( 0 ) 2 = 12 3y^2 \bigg|_0^2 = 3(2)^2 - 3(0)^2 = 12 3y2 02=3(2)23(0)2=12结合上述结果:
    ∫ 0 2 ( 4 + 6 y )   d y = 8 + 12 = 20 \int_0^2 (4 + 6y) \, dy = 8 + 12 = 20 02(4+6y)dy=8+12=20

;