惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
博客园 - 【当耐特】
I
InfoQ
腾讯CDC
人人都是产品经理
人人都是产品经理
H
Help Net Security
Y
Y Combinator Blog
B
Blog
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 叶小钗
D
Docker
博客园 - 聂微东
B
Blog RSS Feed
G
Google Developers Blog

又见苍岚

COLMAP PatchMatch Stereo 算法详解 事件驱动的状态机框架:从理论到工程实践 Git 在国内网络环境下无法 Push 的排查与修复 —— 配置 Clash 代理 分段五次多项式插值原理详解 路径插值方法深度对比研究 Claude Code 使用指南 OpenClaw 记忆管理与技能创建指南 CBS(Conflict-Based Search)算法详解 A* 算法及其变种详解 OpenClaw 配置多 Agents Windows Powershell 无法加载文件,因为在此系统上禁止运行脚本问题的解决方案 MaxClaw 安装流程 大模型 AI 名词介绍 AList 网盘聚合工具简介 Protobuf 简介与测试 Claude Code 简介以及 GLM 4.7 模型接入 Github 歌词下载工具 163MusicLyrics Python __getattr__ 懒加载 Python TypedDict 机器人仿真平台 Gazebo 安装记录 机器人仿真平台 Gazebo 简介 多机器人路径规划问题(Multi-Agent Path Finding, MAPF)简介 Python exifread 读取修改过的 jpeg 信息错误问题修复 3D 坐标系变换的理解 3D 旋转矩阵基本概念 MongoDB Compass 介绍 Python 环境管理工具 uv Flutter 开发指南 Snipaste 安装下载与黑屏问题解决方案 全局路径规划算法记录
常用积分、极限表
Yiwei Zhang · 2023-02-12 · via 又见苍岚

本文给出基本积分表和常用积分表。

基本积分表

$$ \begin{array}{c} \int x^{a} \mathrm{~d} x=\frac{1}{a+1} x^{a+1}+C \quad(a \in R, a \neq-1)\\ \int \frac{1}{x} \mathrm{~d} x=\ln |x|+C\\ \int \cos x \mathrm{~d} x=\sin x+C\\ \int \sin x \mathrm{~d} x=-\cos x+C\\ \int \tan x \mathrm{~d} x=-\ln |\cos x|+C\\ \int \cot x \mathrm{~d} x=\ln |\sin x|+C\\ \int \frac{1}{\cos ^{2} x} \mathrm{~d} x=\tan x+C \\ \int \frac{1}{1+x^{2}} \mathrm{~d} x=\arctan x+C \\ \int \mathrm{e}^{x} \mathrm{~d} x=\mathrm{e}^{x}+C\\ \int x \mathrm{e}^{x} \mathrm{~d} x=\mathrm{e}^{x}(x-1)+C \\ \int a^{x} \mathrm{~d} x=\frac{1}{\ln a} a^{x}+C \end{array} $$

常用积分表

$$ \begin{array}{l}\int \sin ^{2} x \mathrm{~d} x=\frac{1}{2}(x-\sin x \cos x)+C \\ \int \cos ^{2} x \mathrm{~d} x=\frac{1}{2}(x+\sin x \cos x)+C \\ \int \sec x \mathrm{~d} x=\ln |\tan x+\sec x|+C\\ \int \ln x \mathrm{~d} x=x \ln x-x+C \\ \int \sqrt{a^{2}-x^{2}} \mathrm{~d} x=\frac{1}{2}\left(x \sqrt{a^{2}-x^{2}}+a^{2} \arcsin \frac{x}{a}\right)+C \\ \int \frac{1}{\sqrt{1-x^{2}}} \mathrm{~d} x=\arcsin (x)+C \\ \int \frac{1}{\sqrt{1+x^{2}}} \mathrm{~d} x=\ln \left(x+\sqrt{1+x^{2}}\right)+C=\sinh ^{-1} x+C \\ \int_{-\infty}^{\infty} e^{-x^{2}} d x=\sqrt{\pi} \end{array} $$

定积分

$$
\int_{0}^{\pi / 2} \cos ^{n} \theta \mathrm{d} \theta=\frac{\sqrt{\pi}}{2} \frac{\Gamma(n / 2+1 / 2)}{\Gamma(n / 2+1)}
$$

常用极限

$$
\begin{array}{l}
\lim _{x \rightarrow 0} \frac{\sin x}{x}=1 \
\lim _{x \rightarrow \infty}\left(1+\frac{1}{x}\right)^{x}=e \

\end{array}
$$

参考资料

文章链接:
https://www.zywvvd.com/notes/study/math/calculus/integral-table/integral-table/