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
- 커널제거
- react-cookie
- 비동기 프로그래밍
- 컴퓨터 보안 키분배
- 인공지능
- brew 권한
- Hits
- 파이썬
- pagerank
- 러스트
- Readme image
- 커널생성
- Git
- recommender
- 협업필터링
- 파인만의 식당문제
- 키분배 알고리즘
- 인페인팅
- 페이지랭크
- 메세지인증코드
- 머신러닝
- 자바스크립트 비동기
- 딥러닝
- computer vision
- 프라미스
- image restoration
- feynman's restaurant
- rust
- tcp
- cs231n
Archives
- Today
- Total
Worth spreading
Biconditional (쌍조건문) 본문
Biconditional
If p and q are propositions, then we can form the biconditional proposition p <-> q.
- 만약 p와 q가 명제라면 우리는 쌍조건문 명제를 만들 수 있다.
read as "p if and only if q"
- "p이면 q이고, q이면 p이다"라고 읽는다.
If p denotes "I am at home." and q denotes "It is raining."
- 만약 p가 "나는 집에 있다"를, q가 "비가 온다"를 나타낸다면
then p <-> q denotes "I am at home if and only if it is raining."
- p <-> q 는 "나는 비가온다면 집에 있고, 내가 집에 있다면 비가 온다."를 나타낸다
Expressing the Biconditional
Some alternative ways "p if and only if q"is expressed in English
- "p이면 q이고, q이면 p이다"를 나타내는 다른 방법들이 있다.
* p is necessary and sufficient for q
- p는 q의 필요충분 조건이다
* if p then q, and conversely
- 만약 p이면 q이고 역도 성립한다.
* p iff q
An extract from 'Discrete Mathematics and Its Applications, Kenneth H. Rosen 7th ed.'
Comments