PDF 文件下载

【离散数学】MIT 6.042J - Fall 2010 - Note for Lecture 1

图片效果



LaTeX\LaTeXLATE​X 代码

\documentclass{article}\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{titletoc}
\usepackage{listings}
\usepackage{appendix}
\usepackage{bm}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{multirow}
\usepackage{hyperref}
\usepackage{subfig}
\usepackage{url}
\usepackage{cite}
\usepackage{array}
\usepackage[a4paper, left=2.5cm, right=2.5cm, top=2.65cm, bottom=2.54cm]{geometry}\newtheorem{definition}{Definition}
\newtheorem{theorem}{Theorem}\title{\huge \bfseries Mathematics for Computer Science, MIT 6.042J - Fall 2010 - Note for Lecture 1}\author{\Large Teddy van Jerry}
\date{\today}\pagestyle{fancy}
\fancyhf{}
\cfoot{\thepage}
\chead{MIT 6.042J Lecture 1 - Introduction and Proofs}\begin{document}\maketitle{\Large Lecture 1: Introduction and Proofs}\section{Definition of mathematical proof}\begin{definition}A mathematical proof is a verification of a proposition by a chainof logical deductions from a set axioms.\end{definition}\section{Proposition}\subsection{Example 1}$$ 3 + 2 = 5$$This is a true proposition.\subsection{Example 2}$$\forall n \in \mathbb{N}, n^2 + n + 41 \text{ is a prime number.}$$This is a predicate.\begin{definition}Predicate is a proposition whose truth depends on the value of variable($n$).\end{definition}If $n$ is from $0$ to $39$, the proposition is true.However, when $n = 40$, $40^2 + 40 + 41 = 41^2$ is not a prime number. Thus it is false.\subsection{Example 3}$$a^4 + b^4 + c^4 = d^4 \text{ has no integer solutions.}$$This was proposed by Euler in 1767.However, after 218 years, it was proved false:$$\begin{aligned}a & = 95800\text{,}  \\b & = 217519\text{,} \\c & = 414560\text{,} \\d & = 422481\text{.} \\\end{aligned}$$\subsection{Example 4}$$313(x^3 + y^3) = z^3 \text{ has no positive integer solutions.}$$However, the simplest solution has more than 1000 digits.\subsection{Example 5}The famous four color theorem:The regions in any map can be colored in four colorsso adjacent regions have different colors.It was solved by a computer in 1977.\subsection{Example 6}The Riemann hypothesis:$$\forall n \in \mathbb{Z}, n \geqslant 2 \Rightarrow n^2 \geqslant 4$$The symbol $\Rightarrow$ means \emph{imply}.This proposition is true, however changing $\Rightarrow$ into $\Leftarrow$,it is not true for $n \leqslant -2$.A implication $p$ implies $q$ is said to be true if $p$ is false or $q$ is false.To make it clearer, we have the {\bfseries Truth Table}:\begin{table}[htbp]\centering\caption{Truth Table}\begin{tabular}{|m{1cm}<{\centering}|m{1cm}<{\centering}|m{1cm}<{\centering}|m{1cm}<{\centering}|m{1cm}<{\centering}|}\hline$p$ & $q$ & $p \Rightarrow q$ & $p \Leftarrow q$ & $p \Leftrightarrow q$ \\\hline \hlineT & T & T & T & T \\\hlineT & F & F & T & F \\\hlineF & T & T & F & F \\\hlineF & F & T & T & T \\\hline\end{tabular}\end{table}It can be difficult to understand False implies False is True.One example is `If pigs fly, I'm king',because `pigs fly' is never true,we don't even need to consider `I'm king'.\subsection{Why these solutions count}Many solutions may seem far away from today's circumstance,but as time goes on, numbers can go upwards in a dramatic way,so we are obliged to find the solutions as they can be met at any time.\section{Axiom}\subsection{Definition}\begin{definition}Axioms are propositions we assume to be true.\end{definition}The word `axiom' comes from Greek which means `think worthy'.You have to make assumptions in truth like:$$\left.\begin{aligned}a & = b \\b & = c \\\end{aligned}\right\} \Rightarrow a = c$$However, axioms can be contradictory in different contexts, for example:In Euclidean geometry: Given a line $l$ and a point $p$(not on $l$),there is {\bfseries exactly one line} through $p$ parallel to $l$.In Spherical geometry: Given a line $l$ and a point $p$(not on $l$),there is {\bfseries no line} through $p$ parallel to $l$.In Hyperbolic geometry: Given a line $l$ and a point $p$(not on $l$),there is {\bfseries infinitely many lines} through $p$ parallel to $l$.\subsection{Requirements for axioms}Axioms should be:\begin{enumerate}\item consistent\begin{definition}A set of axioms is consistent if no proposition can be proved to be both true and false.\end{definition}\item complete\begin{definition}A set of axioms is complete if they can be used to prove any proposition is either true or false.\end{definition}\end{enumerate}But sadly, it has been proved impossible to achieve both requirements at the same time.\section*{Appendix}~This note is written in \LaTeX.\LaTeX\ code in my blog: \url{https://blog.csdn.net/weixin_50012998/article/details/113484512}\\The webpage of the video: \url{https://www.bilibili.com/video/BV1zt411M7D2?p=1}\end{document}% Copyright 2021 Teddy van Jerry

ALL RIGHTS RESERVED © 2021 Teddy van Jerry
欢迎转载,转载请注明出处。


See also

Teddy van Jerry 的导航页

【离散数学】 MIT 6.042J 笔记 - Lecture 1 Introductions and Proofs相关推荐

  1. matlab lud矩阵分解,MIT线性代数总结笔记——LU分解

    MIT线性代数总结笔记--LU分解 矩阵分解 矩阵分解(Matrix Factorizations)就是将一个矩阵用两个以上的矩阵相乘的等式来表达.而矩阵乘法涉及到数据的合成(即将两个或多个线性变换的 ...

  2. Games101 笔记 Lecture 7-9 Shading (Illumination, Shading)

    Games101 笔记 Lecture 7-9 Shading [Illumination, Shading] visibility / occlusion Shading简介 Blinn-Phong ...

  3. GAMES101 学习笔记 Lecture 1~6

    目录 GAMES101 学习笔记 Lecture 1~6 往期作业汇总帖 Lecture 01 Overview of Computer Graphics 笔记参考 其他教程 怎么判断一个画面是否优秀 ...

  4. 论文笔记:Succinct Zero-Knowledge Batch Proofs for Set Accumulators

    论文笔记:Succinct Zero-Knowledge Batch Proofs for Set Accumulators 论文介绍 前置知识 累加器的概念 ADS的概念 问题设定 技术概述 问题 ...

  5. 【原】Coursera—Andrew Ng机器学习—课程笔记 Lecture 12—Support Vector Machines 支持向量机...

    Lecture 12 支持向量机 Support Vector Machines 12.1 优化目标 Optimization Objective 支持向量机(Support Vector Machi ...

  6. MIT JOS学习笔记01:环境配置、Boot Loader(2016.10.22)

    未经许可谢绝以任何形式对本文内容进行转载! 一.环境配置 关于MIT课程中使用的JOS的配置教程网上已经有很多了,在这里就不做介绍,个人使用的是Ubuntu 16.04 + qemu.另注,本文章中贴 ...

  7. 【原】Coursera—Andrew Ng机器学习—课程笔记 Lecture 16—Recommender Systems 推荐系统...

    Lecture 16 Recommender Systems 推荐系统 16.1 问题形式化 Problem Formulation 在机器学习领域,对于一些问题存在一些算法, 能试图自动地替你学习到 ...

  8. MIT Kimera阅读笔记

    这两天在调研SLAM的最新算法,找到了2019CVPR上的一篇文章,出自于MIT,因为要给其他同事讲解,所以就把文章的重点内容在我个人理解的情况下翻译了出来,有理解不到位的还请各位大佬多多批评指正.  ...

  9. 【离散数学】第二章 笔记(完)

    写在前面 是复习的笔记.截图是老师的课件. 2.1 谓词 谓词的概念与表示: 谓词:用来刻划一个个体的性质或多个个体之间关系的词,常用大写字母P, Q, R-来表示. 客体:可以独立存在的事物称为客体 ...

  10. CS269I:Incentives in Computer Science 学习笔记 Lecture 17 评分规则和同辈预测(诚实预报和反馈激励)

    Lecture 17 Scoring Rules and Peer Prediction(Incentivizing Honest Forecasts and Feedback)(评分规则和同辈预测( ...

最新文章

  1. mos管电路_【鼎阳硬件智库原创︱电源】 MOS管驱动电路的设计
  2. 工业4.0技术路线图 - OPC UA
  3. KandQ:那年,那树,那些知识点
  4. poj3126 Prime Path BFS
  5. apache 一个站点配置多个域名
  6. Vue.js的计算属性
  7. SAP IBASE category 01 download
  8. 《BI那点儿事》Microsoft 线性回归算法
  9. sign check fail: check Sign and Data Fail
  10. python算法应用(七)——搜索与排名3(点击跟踪网络的设计)
  11. 多线程实现生产者消费者
  12. 西双版纳真的适合养老吗?
  13. openresty安装配置 Ubuntu下
  14. python基础--函数作用域
  15. 如何有效预防宕机?你需要掌握这4个方法
  16. 小飞鱼APK签名工具
  17. 数据分析案例(4)京东数据分析项目
  18. excel怎么筛选?教你一个简单粗暴的筛选技巧
  19. Java 8新特性探究(四)深入解析日期和时间-JSR310
  20. html代码width什么意思,width:100% 啥意思呢,在什么情况下使用?

热门文章

  1. 韩信点兵问题的简单算法 downmoon
  2. 天天淘宝,你却不知道个性化推荐技术...
  3. 深圳华睿彩印高温玻璃打印机介绍
  4. MyExcel 2.1.4 版本发布,多项功能增强
  5. 【PTA|Python】浙大版《Python 程序设计》题目集:函数练习
  6. 360 支持linux版本下载地址,360安全卫士linux版下载
  7. 李智慧 - 架构师训练营 第三周
  8. Processing绘制星空-2-绘制流星
  9. Stata作回归分析
  10. 圣剑传说 玛娜传奇(Legend of Mana)(LOM)主原料取得方法