Home
Kintiru's Page
Cancel

Eigenvectors and Eigenvalues

Eigenvector Definition Eigenvector of a matrix is a nonzero vector and becomes scalar times of the original vector after the transformation by a square matrix. By definition, eigenvectors cannot ...

How to use github multiple account

Creating SSH Key In Windows terminal or git bash, create ssh key using the following command ssh-keygen -t ed25519 -C "your_email@example.com" If you want to specify a path and a filename, you ...

2.1 Exceptions

Types of Exceptions Compile Time Exception Exceptions are checked during compile time To be compiled successfully, the code must handle exception Try Catch Throw Exception Otherwise, it ...

Preliminary of Linear Algebra

Here, I am going to go over set, real numbers, and complex numbers to prepare for Linear Algebra. It will be a quick review, some basic definitions and properties. Definitions and properties will ...

파이썬 venv 설치하기

원하는 버전의 파이썬 설치하기 sudo add-apt-repository -y ppa:deadsnakes/ppa sudo apt update sudo apt install -y python3.10 sudo apt install -y python3.10-venv sudo apt install -y python3.10-dev 해당 글에서는 파이썬 3...

AP Statistics Chapter 12: Chi Squared and Inferences for Slope

Prerequisite AP Statistics Chapter 9 : Hypothesis Testing For Proportions 12.1 Chi Squared Test and Distribution Chi Square Chi squared is used to test categorical variables using their expec...

AP Statistics Chapter 11: Hypoethesis Testing for Means

Prerequisite AP Statistics Chapter 9 : Hypothesis Testing For Proportions 11.1 Significance Test for Mean Significance test for mean is testing the claim or the hypothesis about population param...

AP Statistics Chapter 10: Mean Estimation with Confidence

10.1 Population Mean Estimation Confidence interval for $\mu$ [\begin{gather} \text{point estimate } \pm \text{ margin of error} = \bar x \pm z^* \frac{\sigma}{\sqrt{n}} = \bar x \pm t^* \fr...

Definite Intergral Basics

Prerequisite Derivatives AntiDifferentiation Indefinite Integral Definite Integral Definite Integral represents area between the function and x axis. If the area is above the x axis,...

AP Statistics Chapter 9: Hyopthesis Testing For Proportions

9.1 Significance Test Significance test is testing the claim or the hypothesis about population parameter such as proportion $p$ or mean $\mu$. Hypotheses Null Hypothesis $(H_0)$ : Original clai...