Home

Jackknife & Bootstrap

Prerequisites To better understand this post, it is recommended to know about the following topics: Meaning of sample and standard error Dividing sample variance by n-1 instead of n Meaning of p-value Meaning of confidence interval Estimators and Standard Error Meaning of Estimators To understand the Jackknife and Bootstrap method...

Read more

잭나이프 & 부트스트랩 방법

Prerequisites 본 포스팅을 더 잘 이해하기 위해서는 아래의 내용에 대해 알고 오시는 것이 좋습니다. 표본과 표준 오차의 의미 표본 분산은 n 대신 n-1로 나눈다 p-value의 의미 신뢰 구간의 의미 추정량과 표준 오차 추정량의 의미 잭나이프와 부트스트랩 방법을 이해하기 위해선 추정량(estimator)이라는 것이 무엇인지에 대해 이해하는 것이 필수적이다. 추정량이란 표본들을 이용해 계산하는 함수라고 할 수 있다. (도대체 어떤 놈이 번역했는지, 번역이 ‘량’으로 되어서 어떤 quantity를 의미하는 것만 같다. 이것 또한 잘못된 번역이 아닌가 싶다. 추정방법, 추정자 ...

Read more

Gauss / Gauss-Jordan Elimination

This post is written based on the content provided by ZyBooks in University of California Davis ENG 006: Engineering Problem Solving. Prerequisites To better understand the content of this post, it is recommended to be familiar with the following topics. Elementary Square Matrices LU Decomposition Introduction Through the previous pos...

Read more

가우스 / 가우스-조던 소거법

본 포스팅은 University of California Davis ENG 006: Engineering Problem Solving에서 제공하는 ZyBooks의 내용을 바탕으로 작성하였습니다. Prerequisites 이번 포스팅의 내용을 더 잘 이해하기 위해선 아래의 내용에 대해 알고 오시는 것이 좋습니다. 기본 행렬 LU 분해 Introduction 기본 행렬 편과 LU 분해 편을 통해서 우리는 행렬 형태를 이용해 연립 방정식을 풀 수 있다는 것을 확인했다. 이때 핵심적인 역할을 하는 것이 기초적인 행 연산(elementary row operations)에 대응하는 기본 행렬들 (주로 $E...

Read more

Cholesky Decomposition

Prerequisites To better understand the content of this post, it is recommended to be familiar with the following: LU decomposition Another way to perform LU decomposition In the LU decomposition post, it was introduced that LU decomposition is a matrix decomposition method obtained using the basic row operations used in performing Gaussi...

Read more

숄레스키 분해

Prerequisites 이번 포스팅의 내용을 더 잘 이해하기 위해선 아래의 내용에 대해 알고 오시는 것이 좋습니다. LU 분해 LU 분해를 수행하는 또 다른 방법 LU 분해 편에서는 LU 분해란 Gaussian elimination을 수행하는 과정에서 사용하는 기본 행 연산을 이용해 얻게 되는 행렬 분해 방법이라고 소개한 바 있다. 그런데, 꼭 Gaussian elimination을 이용하지 않고 아래와 같이 행렬 $A$를 하삼각행렬과 상삼각행렬의 곱으로 분해된다고 가정하더라도 LU 분해의 결과를 그대로 얻을 수 있을 것이다. 임의의 $3\times 3$ 사이즈의 행렬 $A$에 대해 다음과 같이...

Read more

LU Decomposition

Prerequisites To understand the content of this post, it is recommended to have knowledge of the following: Elementary Square Matrices Introduction to Triangular Matrices To better understand the LU decomposition, it is helpful to briefly introduce the concept of triangular matrices. In linear algebra, there is a type of matrix called a...

Read more

LU 분해

Prerequisites 이번 포스팅의 내용을 잘 이해하기 위해선 아래의 내용에 대해 알고 오시는 것이 좋습니다. 기본 행렬 삼각행렬 소개 이번 LU 분해를 이해하기 위해선 아래의 삼각행렬이라는 용어를 조금 다루고 가는 것이 좋을 것 같아 짧게 소개한다. 선형대수학에서 종종 보이는 특이한 형태의 행렬 중 삼각행렬이라는 행렬이 있다. 이 행렬은 주대각선을 기준으로 대각 성분의 윗쪽이나 아랫쪽 항들의 값이 모두 0인 행렬을 말한다. 그래서 대각성분의 윗쪽 항들이 모두 0인 행렬을 하삼각행렬(lower triangular matrix)라고 하고, 대각 성분 아랫쪽 항들이 모두 0인 행렬을 상삼각행렬이라...

Read more