AIL C4 一阶逻辑 在一阶逻辑的框架下研究知识的表示和推理:谓词和量词的概念一阶语言与对一阶语言的解释一阶语义蕴涵,形式推演,算法和计算复杂性等。 谓语和量词 论域 : 所有被讨论对象的集合。 个体:域中的元素,即被讨论的对象。 常元:用于表示确定对象的符号。 变元:用于表示给定论域上的任意一个对象的符号。 函词:给定一个论域,从一组个体到一个个体的映射关系。 2023-04-14 AI > Logic #AI
CN C5 Neural Information Encoding Information Theory and Neural Code The rare of the symbol conveys the information. Enti=Pilog1Pi=−PilogPiEnt_i = P_i\log{\frac{1}{P_i}} = -P_i\log{P_i} Enti=PilogPi1=−PilogPi The lower the p 2023-04-07 AI > Cognitive Neuroscience #AI
OOP C5 Constant and Static Constant Const const declares a variable to have a constant value. Constants are variables observing scoping rules declared with const type modifier. A const in C++ defaults to internal linkage. the 2023-04-04 Computer Science > Object-Oriented #Programming
DB C5 Entity-Relationship Model Requirements 绘制E-R图 将E-R图转化为模型 ref Database System Design and Concepts P241-294 The entity-relationship (E-R) data model was developed to facilitate database design by allowing specification of an 2023-04-03 Database system #Database
CO C4 Hardware and Software RECALL The organization of a computer: Introduction & Logic Design Conventions recallCPU performance factors:Instruction count determined by ISA and compiler;CPI and Cycle time dete 2023-04-03 Computer Science > Computer Organization #Computer Hardware
DS C4 Heaps Leftist Heaps Skew Heaps and Binomial Heaps. 2023-04-01 Computer Science > Data Structures #DataStructures
AIL C3 命题逻辑 由于LaTeX\LaTeXLATEX 的符号限制,本章笔记中使用 ≡\equiv≡ 代替 ∣ = ∣|\!=\!|∣=∣ ,以避免输入符号过程过于冗杂。请注意不要将本章笔记中的 ≡\equiv≡ 与一阶逻辑中的 ≡\equiv≡ 混淆。 命题和联结词 命题:有真假值的句子/ 陈述句。 反问句被接受为命题,因为它可以 2023-03-31 AI > Logic #AI
MA4 贝多芬“命运”交响曲 贝多芬第五交响曲 第5交响曲 简介 贝多芬第五交响曲,用五年时间构思,最终完成于1807年末至1808年初。原是一部无标题作品,后人根据贝多芬对音乐主导动机所做的说明为它取名为《命运》。 《命运》交响曲揭示了在生活中遇到的失败和胜利,痛苦和欢乐,生活的道路艰难曲折。但人们对社会所负有的崇高责任感使他们不断建立功勋。人们打碎束缚他们的锁链,朝着欢乐和幸福的目标胜利前进。***“从黑暗到光明,通过 2023-03-29 Interests > Music Admiring #Art
OOP C4 Function Variables local variable Local variables are defined inside a method, have a scope limited to the method to which they belong. A local variable of the same name as a field will prevent the field bein 2023-03-28 Computer Science > Object-Oriented #Programming