outline:

numbers, sets, functions week 1
logic week 2–3
relation theory week 5–6
graphs and trees week 8
induction and recursion week 9
order of growth of functions week 10
counting (combinatorics) and probability week 11-13

week 01 numbers, sets, functions

⌊ x ⌋: R Z — floor of x, the greatest integer x
⌈ x ⌉  : R Z — ceiling of x, the least integer x

m|n’ — m is a divisor of n, defined by n = k · m for some k Z 整除

m - n — negation of m|n

质数、最大公约数、最小公倍数

Numbers > 1 divisible only by 1 and itself are called prime.

Greatest common divisor gcd(m, n)
Numbers m and n s.t. gcd(m, n) = 1 are said to be relatively
prime.
Least common multiple lcm(m, n)

gcd 和 lcm 永远是正数,即使原值是负数

gcd(m, n) · lcm(m, n) = |m| · |n|

最新文章

  1. spring 整合 mongo
  2. MOOCULUS微积分-2: 数列与级数学习笔记 1. Sequences
  3. 2.nodejs权威指南--Buffer
  4. 最完美解决方案:js弹出窗口关闭当前页面,而不弹出提示框
  5. task 限制任务数量(转自msdn)
  6. factory工厂模式之工厂方法FactoryMethod
  7. iOS开发——UI篇Swift篇&玩转UItableView(四)自定义&封装
  8. HDU 3333-Turing Tree(BIT好题)
  9. Paint House 解答
  10. Java中Volatile的作用
  11. bootstrap-typeahead自动补充
  12. Linux的软件安装(JDK安装,Mysql安装,Tomcat安装)
  13. 如何查看Linux命令的源代码
  14. Linux路径与Win路径的转换
  15. 加sogou 和wps
  16. Bootstraptable源码
  17. iowait过高处理
  18. Linux 内存使用率
  19. 即将上线的Kafka 集群(用CM部署的)无法使用“--bootstrap-server”进行消费,怎么破?
  20. Java通过JNI调用C++程序

热门文章

  1. unity调用摄像头的方法
  2. [C语言入门笔记]变量与数据类型
  3. 如何在VISIO 2010/2013 中关闭Shape protection(图形保护)
  4. 安装Nvidia k80驱动步骤
  5. gulp教程之gulp-uglify
  6. Android笔记——在布局文件中插入另一个布局文件
  7. F2工作流引擎之-纯JS Web在线可拖拽的流程设计器(八)
  8. 设立点击ProgressDialog外的区域对话框不消失
  9. HDU 4944 FSF’s game(2014 Multi-University Training Contest 7)
  10. java 字符串转成 json 数组并且遍历