2.1. 1 - 3/17(Linear Algebra) ¶
Linear Algebra 대 구
1 Linear Equations in Linear Algebra
Linear Equations Matrices 교,
Linear System 무 명 -> Linear Equation
variable,coefficient,constant 대 명.
1 Linear Equations in Linear Algebra
Linear Equations Matrices 교,
Linear System 무 명 -> Linear Equation
variable,coefficient,constant 대 명.
그 따른 Linear System 가고 는 류
A L.S has either
1. No solution
2. exactly one solution
3. infinitely many solution
1. No solution
2. exactly one solution
3. infinitely many solution
대 기 로
1 ->
2 -> 만나다
3 ->
를 명.
1 ->
2 -> 만나다
3 ->
를 명.
1 -> inconsistent
2 -> consistent 구
2 -> consistent 구
) A L.S is consistent <-> A L.S has a solution 라는 강
(exactly one solution 가다는 기 -> Only가 꼭 들가 )
(exactly one solution 가다는 기 -> Only가 꼭 들가 )
2.2. 1 - 3/18(Linear Algebra) ¶
Linear System 과 Matrix equation 관관를 명.
L.S <-> matrix equation
Ax=b A : coefficient matrix ( 렬) -> mxn렬 경 -> 방 : m 미 : n
Ax=b A : coefficient matrix ( 렬) -> mxn렬 경 -> 방 : m 미 : n
ex) let Ax=b with A: 4x5 matrix -> L.S : 방 4개 , 미 5개
*elimination(법) 대 명
-> 립방 matrix equation 꼴로 기 더나가 augmented matrix 꼴로 나가는 로 명
-> 립방 matrix equation 꼴로 기 더나가 augmented matrix 꼴로 나가는 로 명
법 따른 Elementary Equation Operations(E.E.O)(L.S and Ax=b) Elementary Row Operations(E.R.O)(A b) 대 교, 명.
Elementary Equation Operations(E.E.O) |
1. 닌를 다. |
2. 두 바꾼다. |
3. k배(k≠0) 뒤 다른 더다. |
Elementary Row Operations(E.R.O) |
1. 닌를 다(kRi, k≠0) |
2. 두 바꾼다 (Ri<->Rj) |
3. K배 뒤 다른 더다.(k×Ri + Rj -> new Rj) |
E.R.O는 reversible 므로 그 대 inverse E.R.O를 명.
E.R.O | inverse E.R.O |
kRi, k≠0 | (1/k)Ri, k≠0 |
Ri<->Rj | Ri<->Rj |
k×Ri + Rj | (-k)×Ri + Rj |
E.R.O를 면 발 는 몇 가를 개고 , 그 대 를 당부.그리고 것 보.
2.3. 1 - 3/18(C programming) ¶
1. C 개론 기
2. C 로그램 과
3. Hello World! 들다 보기
4. 들가 된 로그램
5. printf 기본
2. C 로그램 과
3. Hello World! 들다 보기
4. 들가 된 로그램
5. printf 기본
2->
#include <stdio.h> int main(void) { printf("Hello world! \n"); return 0; }
3 -> 문 1. 다과 같 로 본 력는 로그램 보 .
길동
길 동
길 동
길 동
길 동
문 2. 본 , , 그리고 를 모 력는 로그램 보.(\n )
5->#include<stdio.h> int main(void) { printf("Hello Everybody \n"); printf("%d\n", 1234); printf("%d %d\n", 10, 20); return 0; }
#include <stdio.h> int main(void) { printf("My age: %d \n", 20); printf("%d is my level \n", 100); printf("Today\nmorning\neverybody\n"); }
문 1 다 력결과를 보록 를 보. 력되는 들(25, 345, 9393) 문 %d를 력.
____ 다.
나는 25 고.
가 는 곳 는 345 - 9393다.
문 2 다 력결과를 보록 를 보. 력되는 들 문 %d를 력 보.나는 25 고.
가 는 곳 는 345 - 9393다.
7x8 = 56
3x2 = 6
3x2 = 6
2.4. 문는 곳 ¶
- 기 공부겸 들렀는데, 문 .
12 교는
A system of linear equation is said to be consistent if it has either one solution or infinitely many solutions; a system is inconsistent if it has no solution.라고 는데
는
) A L.S is consistent <-> A L.S has a solution 라는 강라고 되.
(exactly one solution 가다는 기 -> Only가 꼭 들가 )
system infinitely many solutions 때 consistent가 닌가? 궁 문 립다.- 김