• 검색 결과가 없습니다.

PDE to Ax=b

N/A
N/A
Protected

Academic year: 2021

Share "PDE to Ax=b"

Copied!
16
0
0
더 보기 ( 페이지)

전체 글

(1)

PDE to Ax=b

Wanho Choi

(wanochoi.com)

(2)

y = f(x)

x y

0

(3)

h

x0 x1 x2 x3 xi−1 xi xi+1 xn−2 xn−1 xn

y = f(x)

(4)

h

x0 x1 x2 x3 xi−1 xi xi+1 xn−2 xn−1 xn

y = f(x)

y0 y1 y2 y3 yi−1 yi yi+1 yn−2 yn−1 yn

(5)

h x0 x1 x2 x3 xi−1 xi xi+1 xn−2 xn−1 xn y = f(x)

y0 y1 y2 y3 yi−1 yi yi+1 yn−2 yn−1 yn forward differentiation backward differentiation central differentiation

Finite Differencing for the i-th Point

y′(xi) = y(xi+1) − y(xi) h

y′(xi) = y(xi) − y(xi−1) h

y′(xi) = y(xi+1) − y(x2h i−1)

(6)

The 2nd Derivative for the i-th Point

y′′(xi) = y′(xi+0.5) − y′(xi−0.5)

h =

y(xi+1) − y(xi)

h

y(xi) − y(xi−1) h

h ∴ y′′ = y(xi−1) − 2y(xi) + y(xi+1)

h2

x0 x1 x2 x3 xi−1 xi xi+1 xn−2 xn−1 xn

y = f(x)

(7)

Taylor Expansion Series

y(xi + h) = y(xi) + y′(xi)h

1! + y′′(xi)h2 2! + y′′′(xi)h3 3! + ⋯ http://xaktly.com/TaylorSeries.html

(8)

Taylor Expansion Series

y(xi + h) = y(xi) + y′(xi)h

1! +

y′′(xi)h2

2! +

y′′′(xi)h3

3! + ⋯

(9)

Taylor Expansion Series

y(xi + h) = y(xi) + y′(xi)h

1! +

y′′(xi)h2

2! +

y′′′(xi)h3

3! + ⋯

y(xi − h) = y(xi) − y′(x1!i)h + y′′(x2!i)h2 − y′′′(x3!i)h3 + ⋯

(a)

(b)

(a)-(b): y′(xi) = y(xi + h) − y(xi − h)

2h + O(h3)

(a)+(b): y′′(xi) = y(xi − h) − 2y(xi) + y(xi − h)

(10)

A Simple PDE Problem

y′′ = f(x) on [0,1] with y(0) = y(1) = 0 y(xi) = ? (i = 0,1,2,⋯, n)

(11)

Finite Differencing

y′′ = f(x) on [0,1] with y(0) = y(1) = 0 y(xi) = ? (i = 0,1,2,⋯, n)

y(xi−1) − 2y(xi) + y(xi+1)

(12)

Finite Differencing

y′′ = f(x) on [0,1] with y(0) = y(1) = 0 y(xi) = ?

y(xi−1) − 2y(xi) + y(xi+1)

h2 ≈ y′′(xi) = fi

∴ y(xi−1) − 2y(xi) + y(xi+1) ≈ h2fi

(13)

For Every Point

y′′ = f(x) on [0,1] with y(0) = y(1) = 0 y(xi) = ? y−1 − 2y0 + y1 = h2f 0 y0 − 2y1 + y2 = h2f 1 y1 − 2y2 + y3 = h2f 2 yn−2 − 2yn−1 + yn = h2f n

(i = 0,1,2,⋯, n)

(14)

Linear System of Matrix Equation

y′′ = f(x) on [0,1] with y(0) = y(1) = 0

y(xi) = ? (i = 0,1,2,⋯, n) 2 −1 0 0 ! 0 0 0 0 −1 2 −1 0 ! 0 0 0 0 0 −1 2 −1 ! 0 0 0 0 0 0 −1 2 ! 0 0 0 0 " " " " # " " " " 0 0 0 0 ! 2 −1 0 0 0 0 0 0 ! −1 2 −1 0 0 0 0 0 ! 0 −1 2 −1 0 0 0 0 ! 0 0 −1 2 ⎡ ⎣ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎤ ⎦ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ y0 y1 y2 y3 ! yn−3 yn−2 yn−1 yn ⎡ ⎣ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎤ ⎦ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ = h2 f0 h2 f1 h2 f2 h2 f3 ! h2 fn−3 h2 fn−2 h2 fn−1 h2 fn ⎡ ⎣ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎤ ⎦ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥

(15)

Linear System of Matrix Equation

y′′ = f(x) on [0,1] with y(0) = y(1) = 0

y(xi) = ? (i = 0,1,2,⋯, n) 2 −1 0 0 ! 0 0 0 0 −1 2 −1 0 ! 0 0 0 0 0 −1 2 −1 ! 0 0 0 0 0 0 −1 2 ! 0 0 0 0 " " " " # " " " " 0 0 0 0 ! 2 −1 0 0 0 0 0 0 ! −1 2 −1 0 0 0 0 0 ! 0 −1 2 −1 0 0 0 0 ! 0 0 −1 2 ⎡ ⎣ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎤ ⎦ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ y0 y1 y2 y3 ! yn−3 yn−2 yn−1 yn ⎡ ⎣ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎤ ⎦ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ = h2 f0 h2 f1 h2 f2 h2 f3 ! h2 fn−3 h2 fn−2 h2 fn−1 h2 fn ⎡ ⎣ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎢ ⎤ ⎦ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥

Ax

= b

(16)

참조

관련 문서

□ The least-upper-bound property (sometimes called completeness or supremum property) is a fundamental property of the real number system. The least-upper-bound

□ The least-upper-bound property (sometimes called completeness or supremum property) is a fundamental property of the real number system. The least-upper-bound

이것은 가 위로 유계가 아니라는 문제의 가정에 모순이다... 유리수의

수렴하는

하지만 여기서는 항번호가 자연수인 경우만 증명 하였다... 그러므로

최대정수함수가 극댓값을 갖는 점과 극솟값을 갖는 점을 모두 구하고, 그 점에서 극값을 구하 시오.. 함수가 미분 가능하면 극값을

그러므로 이러한 표현은 함수의 이름과 미분계수를 구하는 점이 명확하여 혼동할 염려가 없을

최대정수함수가 극댓값을 갖는 점과 극솟값을 갖는 점을 모두 구하고, 그 점에서

부정적분을 구하는 것은 미분의 역계산이므로, 부정적분의 성질은 대부분 미분의 성질로부터 얻을 수

최근 조직구성원들로 하여금 자신이 일하고 싶은 부서를 자유롭게 선택하도록 함으로서 동기와 열정을 불러일으키는 조직형태가

Nordstrom의 구조는 경영자들이 하위 계층의 종업원들에게 권한을 위양하고 그들을 지원하는 것이 중요하게 인식하는 조직문화를

최고의 전략은 제품이나 서비스가 시장에서 경쟁우위를 지닐 수 있는 독특성을 지니도록 차별화하는 것이다.

[r]

https://quizlet.com/_8gkp6x?x=1qqt&i=2tig8t 첨부한 프린트 자ㅊ ㄹㅎ료를 미리 부모님들께보내주세요.. 온라인 수업에 아이들 이

Even when the correlative sparsity pattern graph G(N, E) or its chordal extension G (N, E) is not sparse, the polynomial SDP may have “a hidden correlative sparsity” that

Many convex relaxation methods such as the RLT [20, 19] for 0-1 mixed integer polynomial programs, the SCRM (Successive Convex Relaxation Method) [8, 9] for QOPs

Lasserre’s (dense) SOS relaxation [Las01] described in the following and its sparse variant [WKK06] described in Section 4.3 are numerically tractable subproblems of

As mentioned in Section 4, after the module CMPSc traces of all the homotopy curves, the module Verify checks whether there are any pair of initial points resulting in

In Sections 3.2 and 3.3, we propose to use the primal-dual interior-point method as a post-processing procedure of the acceler- ated bisection algorithm (Algorithm 3.2)

이때 a는 일차함수

경영자가 조직의 중요한 문제에 대한 가장 좋은 해결책을 알고 있고 이를 실행할 수 있는 충분한 권한이 있다면 의사결정과 집행과정에 다른 경영자를 참여시키는

미국과 같은 나라에서 잘 작동하는 경영관행, 조정 및 통제 방법은 일본이나 중국과 같은 나라에서는 비효과적이거나 심지어는 모욕적으로 느껴질 수도 있다.

 조직의 상황배경적 및 구조적 차원을 이해해야 하는 이유는 조직의 효과성을 효율적으로 달성할 수 있는 조직설계

[r]