基本数学概念

real number(实数):是有理数无理数的总称

有理数:可以表达为两个整数比的数(a/b, b!=0)

无理数是指除有理数以外的实数

imply -- 推导出

不需要 A 能推导出 B,而只要 A, B 都是正确的就可以?

phi implies psi 与 phi, psi 是否有关联无关。计算机并不需要理解 phi, psi 的意思,不需要知道 phi, psi 是否是正确的,它们只需要知道 phi implies psi 是否是正确的。

那么如何推导出剩下的两个?

通过 phi 不能推导出 psi 来推导

phi 不能推导出 psi 为 False,则 phi 能推导出 psi 则为 True

推导出 phi, psi 的换算关系的一个例子

equivalence

phi = psi means "phi implies psi and psi implies phi"

Some expressions about phi implies psi

要注意 only if 的用户。

A. I can join a bicycle competition only if I have a bicycle

B. If I have a bicycle, then I can join a bicycle competition

A != B

means:  "join a bicycle competition" implies "have a bicycle"

使用上面的术语表示相等

Assignment4--10

证明 a, b, c

习题

P  Q  ¬P  ¬Q  ¬P∨Q  P∨Q   P⇒Q  ¬(P∨Q)   ¬P∧¬Q

T  T  F    F       T    T    T    F      F

T  F  F    T     F    T    F    F      F

F  T  T    F    T    T    T    F      F

F  F  T    T    T    F    T    T      T

¬P∨¬Q  P∨¬Q  ¬(P∨¬Q)

F      T    F

T      T    F

T      F    T

T      T    F

¬P∨¬Q  P∧Q  ¬(P∧Q)

F      T    F

T      F    T

T      F    T

T      F    T

¬(P⇒(Q∧R)) , ¬(P⇒Q)∨¬(P⇒R)

¬(P⇒(Q∧R))

P  Q  R    Q^R  P⇒(Q∧R)  ¬(P⇒(Q∧R))

T  T  T    T    T      F

T  T  F    F    F      T  

T  F  T    F    F      T

T  F  F    F    F      T

F  T  T    T    T      F 

F  T  F    F    T      F

F  F  T    F    T      F

F  F  F    F    T      F

¬(P⇒Q)∨¬(P⇒R)

P⇒Q  ¬(P⇒Q)  P⇒R  ¬(P⇒R)  ¬(P⇒Q)∨¬(P⇒R)

T    F      T    F      F

T    F      F    T      T

F    T      T    F      T

F    T      F    T      T

T    F      T    F      F

T    F      T    F      F

T    F      T    F      F

T    F      T    F      F

P^Q   (P∧Q)⇒R

T    T

T    F

F    T

F    T

F    T

F    T

F    T

F    T

Q⇒R  P⇒(Q⇒R)

T    T

F    F

T    T

T    T

T    T

F    T

T    T

T    T

评分--评价答案

Introduction to Mathematical Thinking - Week 2的更多相关文章

  1. Introduction to Mathematical Thinking - Week 6 - Proofs with Quantifieers

    Mthod of proof by cases 证明完所有的条件分支,然后得出结论. 证明任意 使用任意 注意,对于一个任意的东西,你不知道它的具体信息.比如对于任意正数,你不知道它是 1 还是 2等 ...

  2. Introduction to Mathematical Thinking - Week 9 评论答案2

    根据 rubic 打分. 1. 我认为,如果说明 m, n 是自然数,所以最小值是 1 会更清楚.所以 Clarity 我给了 3 分.其他都是 4 分,所以一共是 23 分. 2.  我给出的分数 ...

  3. Introduction to Mathematical Thinking - Week 9

    错题 评分出错 题目要求的是 "any" ,而答案只给出了一个.所以认为回答者没有理解题意,连 any 都没有理解.所以 0 分. 第一,标准的归纳法只能对自然数使用,而题目要求的 ...

  4. Introduction to Mathematical Thinking - Week 7

    Q: Why did nineteenth century mathematicians devote time to the proof of self-evident results? Selec ...

  5. Introduction to Mathematical Thinking - Week 4

    否定的逻辑 应该思考符号背后表示的逻辑,而不是像操作算术运算符一样操作逻辑符号. 比如 对于任意的 x,x属于自然数,那么 x 是偶数或者奇数:这是对的 如果使用“乘法分配律”拆分,变成“对于任意的x ...

  6. Introduction to Mathematical Thinking - Week 3

    there exists and all there exists 证明根号2是无理数 all 习题 3. Which of the following formal propositions say ...

  7. Deep Learning and Shallow Learning

    Deep Learning and Shallow Learning 由于 Deep Learning 现在如火如荼的势头,在各种领域逐渐占据 state-of-the-art 的地位,上个学期在一门 ...

  8. Technical Development Guide---for Google

    Technical Development Guide This guide provides tips and resources to help you develop your technica ...

  9. (转)Awesome Courses

    Awesome Courses  Introduction There is a lot of hidden treasure lying within university pages scatte ...

随机推荐

  1. 【DB2】国标行业分类存储,通过SQL查询出层级关系

    新建表 DROP TABLE Industry; CREATE TABLE Industry( IndustryCode VARCHAR(40),IndustryName VARCHAR(100),P ...

  2. iOS即时通讯输入框随字数自适应高度

    代码地址如下:http://www.demodashi.com/demo/13210.html 前言 本人最近在研究socket与聊天界面的UI,在写聊天界面UI的时候是模仿微信的界面其中的文字输入框 ...

  3. WP8学习笔记:如何在页面显示前自动转向到其他页面

    在本次修练开始之前,我们除了预设的 MainPage页面外,也另外新增了一个 Login页面,如下图示: MainPage.xaml页面长这样 Login.xaml页面长这样 因为我们的需求是要求使用 ...

  4. 初学spring(一)

    1.spring 在ssh 中所处的位置 struts 是web框架(jsp,action,actionform) hibernate 是orm框架,处于数据持久层 spring 是容器框架,配置be ...

  5. 自己写浏览器和webserver的分析!

    自己写浏览器和webserver 在android写一个浏览器 editText:输入网址ip:port/login.html.提交 把域名解析成ip 产生请求行 get login.html /r/ ...

  6. pouchdb快速入门教程

    a:focus { outline: thin dotted #333; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2p ...

  7. jQuery Ajax 学习(转)

    Ajax全称:Asynchronous JavaScript and XML(异步的JavaScript和XML)特点:在不必刷新整个网页的情况下实现局部更新,带来更好的用户体验.因为XMLHttpR ...

  8. 关于http和rpc的区别(segmentfault上的回答)

    问题最近用了谷歌的grpc,所以对rpc和http有一点疑惑,感觉这两个东西功能上是一样的,rpc某个服务监听某一个方法,客户端调用这个方法,返回相应的数据,和http监听某个方法的路由 返回相应的数 ...

  9. 【转载】html标签语义化

    Html语义化标签-语义化你的HTML标签和属性   1 语义化你的HTML标签和属性 1.1 <Hx> 1.2 <p> 1.3 <ul>.<ol>.& ...

  10. tomcat各目录下的作用

    1.tomcat的主目录下的文件   bin目录主要是用来存放tomcat的命令,主要有两大类,一类是以.sh结尾的(linux命令),另一类是以.bat结尾的(windows命令). 重要: 很多环 ...