Formula

∫ 0 x [ ∫ 0 u φ ( t ) d t ] d u = ∫ 0 x [ ∫ t x φ ( t ) d u ] d t \int_0^x \left[ \int_0^u \varphi(t)dt\right] du = \int_0^x \left[ \int_t^x \varphi(t)du\right] dt ∫0x​[∫0u​φ(t)dt]du=∫0x​[∫tx​φ(t)du]dt

Explanation

As for double integrals

Maybe we can understand the double integrals from the perspective of code, and the above formula are equivalent to the following two sum.

sum1 = 0
for u in 0:d1:x:for t in 0:d2:u:sum1 += varphi(t)*d1*d2
print sum1sum2 = 0
for t in 0:d1:x:for u in t:d2:x:sum2 += varphi(t)*d1*d2
print sum2

First code:
u=0 at first, and after

 for t in 0:d2:u:sum1 += varphi(t)*d1*d2

sum1 = 0;
Then u become a little bigger, we do this cycle again. Finally, we can get the the volume accumulated by φ ( t ) \varphi(t) φ(t) on this triangle.

Second code:
And yet, we can also treat this idea from another angle. In the first place, t=0, and we execute:

 for u in t:d2:x:sum2 += varphi(t)*d1*d2

After t increase, we do this cycle again and again, we can also get the the volume accumulated by φ ( t ) \varphi(t) φ(t) on this triangle.

That’s all.
#Purpose
How does this artifice work in reality?

I don’t know if you notice that or not, but

sum2 = 0
for t in 0:d1:x :for u in t:d2:x :sum2 += varphi(t)*d1*d2
print sum2

is equivalent to

sum2 = 0
for t in 0:d1:x :sum2 += varphi(t)*d1*(x-t)
print sum2

The reduction in the number of dimensions reduces the number of cycles. That’s why it’s useful.

∫ 0 x [ ∫ 0 u φ ( t ) d t ] d u = ∫ 0 x [ ∫ t x φ ( t ) d u ] d t = ∫ 0 x [ ( x − t ) φ ( t ) ] d t \int_0^x \left[ \int_0^u \varphi(t)dt\right] du = \int_0^x \left[ \int_t^x \varphi(t)du\right] dt =\int_0^x \left[ (x-t) \varphi(t)\right] dt ∫0x​[∫0u​φ(t)dt]du=∫0x​[∫tx​φ(t)du]dt=∫0x​[(x−t)φ(t)]dt

技巧---数学分析1:变换积分次序相关推荐

  1. 数学分析_多元函数积分——曲线积分、曲面积分总结

    多元函数积分--曲线积分.曲面积分 1.积分形式与物理意义 曲线积分 I类曲线积分:∫Lf(x,y)ds\int_Lf(x,y)ds∫L​f(x,y)ds f(x,y)为线密度,积分结果为质量.因此, ...

  2. LeetCode刷题福利及技巧(如何赚积分)

    目录 前言 兑换礼物 积分领取 1. 每日打卡任务奖励 2. 圈子任务奖励 3. 贡献任务奖励 4.  探索卡片任务奖励 5. 竞赛任务奖励 6. 竞赛追加奖励 7. 完善个人资料 前言 LeetCo ...

  3. 利用留数定理计算傅立叶变换积分

    第一题:

  4. 高数考研归纳 - 积分学 - 重积分

    点击此处查看高数其他板块总结 文章目录 Part 1 二重积分 记忆内容 1 概念 (一) 二重积分的定义 (二) 重要关系 2 性质 (一) 可积条件 (二) 简单性质 (三) 重要性质 不等关系 ...

  5. 傅里叶变换频域积分性质和频域卷积性质证明

    傅里叶变换频域积分性质和频域卷积性质证明 最近在学习信号与系统这门课程,其中的一个知识点就是傅里叶变换的性质,为了更好地记忆和使用这些性质,最好是知道这些性质的证明过程,而有些性质如频域积分和频域卷积 ...

  6. [概统]本科二年级 概率论与数理统计 第四讲 连续型随机变量

    [概统]本科二年级 概率论与数理统计 第四讲 连续型随机变量 连续型随机变量的基本概念 均匀分布 指数分布 正态分布 推导正态分布的密度(de Moivre-Laplace定理) 标准正态分布 一般的 ...

  7. 高等数学强化6:二重积分

    1.直角坐标求二重积分 2.极坐标求二重积分 可利用对称性加快解题速度 技巧:排除法,将参数取一个特殊值,进行带入计算. 利用函数奇偶性,可以判断函数的区域积分是否为0,减少计算量 利用平移巧做积分 ...

  8. 【考研笔记】数学一 · 高等数学笔记

    考研一战顺利上岸啦,报考专业计算机科学与技术,考的数一英一.现在离开学还有段时间,所以趁机把自己的笔记都整理一下,希望可以帮到一些备考的同学. 写在前面: 首先说一下自己的复习计划跟想法.数一今年有点 ...

  9. 并网逆变器的clark、park变换的C语言实现技巧

    坐标变换,及c语言实现的讲解多如牛毛. 在此也做点整理,加入一根牛毛.偏重用什么样的C语言语法技巧实现这些变换来做双环控制的. 此处用到了C语言在嵌入式领域非常常用的一个语法:函数指针. 指针是个变量 ...

最新文章

  1. SQL Server 跨库同步数据
  2. linux windows爆音,升级Windows 10后 部分情况下有爆音,杂音,音频卡顿现象
  3. JFreeChart 1.0.6 用户开发指南(中文)
  4. 15行Python 仿百度搜索引擎
  5. datastage java_使用 DataStage Java Integration Stage 和 Java Pack 从 Excel 源文件中
  6. Docker入门与应用系列(二)镜像管理
  7. 我比领导小15岁,互相有好感,为什么每次路过我办公室都叹气?
  8. 音频录制和Speech语音识别(ios10)
  9. Android通知频道,通知点
  10. 线性代数与MATLAB2
  11. 非线性光纤光学——四波混频
  12. 【ESP32 Arduino平衡小车制作】(一)霍尔编码器解码
  13. hdoj2602 0/1背包 动态规划 模版题( Java版)
  14. 复化科特斯公式matlab_牛顿科特斯公式要点分析.ppt
  15. cygwin 复制粘贴
  16. Epic安装不成功/启动失败“必要的先决条件安装失败“
  17. API 接口批量测试
  18. 微信小程序rotateZ实现卡片翻转
  19. 电脑连接上WiFi但是上不了网
  20. python_flask_路由

热门文章

  1. ICCV2021: 淘系素材制备平台中的自研交互式分割技术(含试用demo)
  2. samba文件共享,windows与linux共享
  3. 【C++11】 之 std::unique_ptr 详解
  4. QQ书签的chrome扩展插件
  5. 粒子滤波实现刀具寿命预测
  6. 翻译谷歌浏览器F12的功能
  7. Git-error: dst refspec branch matches more than one
  8. 异常值识别和缺失值处理
  9. 南邮计算机学院专业英语教材,南邮专业英语翻译(自学)
  10. android view只能在主线程操作