Since it is just a sort of discussion, I will just give the formula and condition without proving them or leaving examples.

General:

  • Line integral(Work and in the plane)

    $\int_{C}\vec{F}\cdot \mathrm{d}\vec{r} = \int_{C}M\mathrm{d}x+N\mathrm{d}y$, in which $\vec{F} = <M,N>$

      Method: Express $x$ and $y$ in a single variable (OR means parameterization).

  • Gradient fields & path-independence

    Condition:

      $curl(\vec{F}) = 0$ and $\vec{F}$ is defined in a simple-connected region, in which $curl(\vec{F}) = N_{x} - M_{y}$ if $\vec{F} = <M,N>$ and $curl(\vec{F}) = \nabla\times\vec{F}$(namely

\begin{vmatrix}

\hat{i} & \hat{j} & \hat{k} \\

\frac{\partial}{\partial x} & \frac{\partial}{\partial y} & \frac{\partial}{\partial z} \\

P & Q & R

\end{vmatrix}

) if $\vec{F} = <P,Q,R>$

      then $vec{F} = \nabla f$, or $vec{F}$ is the partial derivative vector of some vector field.

    The method of finding the potential:

      Method 1. Do line integral. Integral along the x-axis and y-axis and z-axis, if they exist. (Using path-independence)

      Method 2. Integral one component of $\vec{F}$ and then differential it over another variable and compare. (...)

  • Flux in plane & space

    in the plane:

      $\hat{n} = \hat{T}$ rotated 90 degrees clockwise $=<\mathrm{d}y,-\mathrm{d}x>$

      $\int_{C}\vec{F}\cdot\hat{n}\mathrm{d}s = \int_{C}P\mathrm{d}y-Q\mathrm{d}x$, in which $\vec{F} = <P,Q>$

    in the space(or specifically, surface):

      $\iint_{S}\vec{F}\cdot\hat{n}\mathrm{d}S = \iint_{S}\vec{F}\cdot(<-f_{x},-f_{y},1>\mathrm{d}x\mathrm{d}y)$, if we use $z = f(x,y)$ to describe the surface.

                        $=\iint_{S}\vec{F}\cdot(\pm\frac{\vec{N}}{\vec{N}\cdot\hat{k}}\mathrm{d}x\mathrm{d}y)$, if we are given the normal vector of the surface,or specifically, $g(x,y,z) = 0$

Association:

[Mathematics][MIT 18.02]Detailed discussions about 2-D and 3-D integral and their connections的更多相关文章

  1. [Mathematics][MIT 18.03] Detailed Explanation of the Frequency Problems in Second-Order Differential Equation of Oscillation System

    Well, to begin with, I'd like to say thank you to MIT open courses twice. It's their generosity that ...

  2. [Mathematics][MIT 18.03] Proof of a Theory about the Solution to Second-order Linear Homogeneous Differential Equation

    At first, I'd like to say thank you to MIT open courses which give me the privilege to enjoy the mos ...

  3. PYTHON替代MATLAB在线性代数学习中的应用(使用Python辅助MIT 18.06 Linear Algebra学习)

    前言 MATLAB一向是理工科学生的必备神器,但随着中美贸易冲突的一再升级,禁售与禁用的阴云也持续笼罩在高等学院的头顶.也许我们都应当考虑更多的途径,来辅助我们的学习和研究工作. 虽然PYTHON和众 ...

  4. POJ3273 Monthly Expense 2017-05-11 18:02 30人阅读 评论(0) 收藏

    Monthly Expense Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 25959   Accepted: 10021 ...

  5. Oracle PLSQL Demo - 18.02.管道function[查询零散的字段组成list管道返回] [字段必须对上]

    --PACKAGE CREATE OR REPLACE PACKAGE test_141215 is TYPE type_ref IS record( ENAME ), SAL )); TYPE t_ ...

  6. [MIT 18.06 线性代数]Intordution to Vectors向量初体验

    目录 1.1. Vectors and Linear Combinations向量和线性组合 REVIEW OF THE KEY IDEAS 1.2 Lengths and Dot Products向 ...

  7. How do I learn mathematics for machine learning?

    https://www.quora.com/How-do-I-learn-mathematics-for-machine-learning   How do I learn mathematics f ...

  8. mit课程ocw-mathematics

    https://ocw.mit.edu/courses/find-by-topic/#cat=mathematics Course # Course Title Level 1.010 Uncerta ...

  9. MIT挑战(如何在12个月内自学完成MIT计算机科学的33门课程|内附MIT公开课程资源和学习顺序

    译者注:本文译自Scott H. Young的博客,Scott拥有超强的学习能力,曾在12个月内自学完成麻省理工学院计算机科学的33门课程.本文就是他个人对于这次MIT挑战的介绍和总结. 版权声明:本 ...

随机推荐

  1. Nginx总结(六)nginx实现负载均衡

    前面讲了如何配置Nginx虚拟主机,大家可以去这里看看nginx系列文章:https://www.cnblogs.com/zhangweizhong/category/1529997.html 今天要 ...

  2. 手写RPC框架指北另送贴心注释代码一套

    Angular8正式发布了,Java13再过几个月也要发布了,技术迭代这么快,框架的复杂度越来越大,但是原理是基本不变的.所以沉下心看清代码本质很重要,这次给大家带来的是手写RPC框架. 完整代码以及 ...

  3. Python中使用moviepy进行视频分割

    场景 moviepy官网: https://pypi.org/project/moviepy/ 是一个用于视频编辑的Python库:切割.连接.标题插入.视频合成.非线性编辑,视频处理和定制效果的创建 ...

  4. All Of ACM

    数据结构和算法专栏,我会什么写什么  = = 不定时更新 一.数据结构 树状数组详解 线段树详解 二.算法 KMP算法 三.板子 我的代码模板 大整数模板 四.题解报告 几道STL题目(FJUT - ...

  5. 关于WebApi的跨域问题

    前端调用我后端接口时出现200,跨域问题 解决方案: 在webconfig中加入以下配置就OK了 <configuration> <system.webServer> < ...

  6. 使用Storm进行词频统计

    词频统计 1.需求:读取指定目录的数据,并且实现单词计数功能 2.实现方案: Spout用于读取指定文件夹(目录),读取文件,将文件的每一行发射到Bolt SplitBolt用于接收Spout发射过来 ...

  7. Idea 设置Eclipse快捷键(常用)

    使用Idea不习惯,特此将其配置成Eclipse风格的. 1.选择Eclipse风格,选择copy一份,可以自己重命名. 2.设置生成快捷键的快捷键(例如:Eclipse中的Alt+/) 3.设置ma ...

  8. Java 8 时间日期使用

    一.日期时间 Java 8通过发布新的Date-Time API (JSR 310)来进一步加强对日期与时间的处理.java.util.Date和SimpleDateFormatter都不是线程安全的 ...

  9. springboot 2.1.3.RELEASE版本解析.properties文件配置

    1.有时为了管理一些特定的配置文件,会考虑单独放在一个配置文件中,如redis.properties: #Matser的ip地址 redis.host=192.168.5.234 #端口号 redis ...

  10. Flask基础(08)-->错误捕获(异常捕获)

    错误捕获(异常捕获) from flask import Flask from flask import abort app = Flask(__name__) @app.route('/demo1' ...