Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 개별 상수
- functional symbol
- conjunction
- substitution
- arguments
- identity introduction
- 1차 논리
- atomic sentence
- soundness
- reiteration
- identity elimination
- 원자 명제
- transitivity of identity
- formal proof
- fol
- Validity
- terms
- predicate symbols
- individual constants
- Connectives
- 논리학
- truth table
- disjunction
- first order logic
- negation
Archives
- Today
- Total
컴공생의 공부LOG
[프로그래밍 기초] 재귀와 반복 : 자연수 계산 본문
자연수 수열의 합
자연수 (Natural Number)
N = { 0, 1, 2, 3, ... }
수학적 귀납, 인덕 (Mathematical Induction)
(1) | 기초 Basis | 0은 자연수이다. |
(2) | 귀납 Induction | n이 자연수이면, n + 1도 자연수이다. |
(3) | 그 외에 다른 자연수는 없다. |
자연수는 무한이 많이 있지만, 이 귀납 정의를 이용하면 아무리 큰 자연수라도 유한한 절차를 거쳐서 자연수임을 확인할 수 있다.
거듭제곱
최대공약수
곱셈
'학교 수업 > 1학년 1학기' 카테고리의 다른 글
[프로그래밍 기초] 표 채워풀기 (0) | 2024.11.26 |
---|---|
[프로그래밍 기초] 재귀와 반복 : 검색 (0) | 2024.11.26 |
[프로그래밍 기초] 제어 구조 (0) | 2024.11.26 |
[프로그래밍 기초] 변수와 함수 (0) | 2024.11.26 |
[프로그래밍 기초] 식 (0) | 2024.11.26 |