Knaster-Tarski fixed point theorem for complete partial order **************** contents ****************  Who are Knaster-Tarski?  What is elementary.

Slides:



Advertisements
Similar presentations
Partial Orderings Section 8.6.
Advertisements

CSE 211- Discrete Structures1 Relations Ch 2 schaums, Ch 7 Rosen.
3.4 Inverse Functions & Relations
Introduction to Set Theory
Introduction The concept of transform appears often in the literature of image processing and data compression. Indeed a suitable discrete representation.
CSCI 115 Chapter 6 Order Relations and Structures.
Locally Decodable Codes from Nice Subsets of Finite Fields and Prime Factors of Mersenne Numbers Kiran Kedlaya Sergey Yekhanin MIT Microsoft Research.
Answer Set Programming Overview Dr. Rogelio Dávila Pérez Profesor-Investigador División de Posgrado Universidad Autónoma de Guadalajara
Models and interpretations in the fifties: Carnap and Kemeny Pierre Wagner Université Paris 1 Panthéon-Sorbonne.
Instructor: Hayk Melikya
– Alfred North Whitehead,
A Semantic Characterization of Unbounded-Nondeterministic Abstract State Machines Andreas Glausch and Wolfgang Reisig 1.
Programming Language Semantics Denotational Semantics Chapter 5.
7th Biennial Ptolemy Miniconference Berkeley, CA February 13, 2007 Causality Interfaces for Actor Networks Ye Zhou and Edward A. Lee University of California,
Programming Language Semantics Denotational Semantics Chapter 5 Based on a lecture by Martin Abadi.
1 9. Evaluation of Queries Query evaluation – Quantifier Elimination and Satisfiability Example: Logical Level: r   y 1,…y n  r’ Constraint.
Denoting the beginning
1 Iterative Program Analysis Part I Mooly Sagiv Tel Aviv University Textbook: Principles of Program.
Programming Language Semantics Denotational Semantics Chapter 5 Part II.
Probabilistic Methods in Coding Theory: Asymmetric Covering Codes Joshua N. Cooper UCSD Dept. of Mathematics Robert B. Ellis Texas A&M Dept. of Mathematics.
PART 8 Approximate Reasoning 1. Fuzzy expert systems 2. Fuzzy implications 3. Selecting fuzzy implications 4. Multiconditional reasoning 5. Fuzzy relation.
Theory and Applications
Programming Language Semantics Denotational Semantics Chapter 5 Part III Based on a lecture by Martin Abadi.
1 Program Analysis Mooly Sagiv Tel Aviv University Textbook: Principles of Program Analysis.
Survey of Mathematical Ideas Math 100 Chapter 2 John Rosson Thursday January 25, 2007.
Lecture 9 Illustrations Lattices. Fixpoints Abstract Interpretation.
Solving fixpoint equations
Discrete Structures – CNS2300
Program Analysis and Verification
Introduction to Real Analysis Dr. Weihu Hong Clayton State University 8/21/2008.
Propositional Logic Dr. Rogelio Dávila Pérez Profesor-Investigador División de Posgrado Universidad Autónoma Guadalajara
 期中测验时间:  10 月 31 日上午 9 : 40—11 : 30  第一到第四章  即,集合,关系,函数,组合数学.
Sequences and Summations
Advanced Higher Mathematics Methods in Algebra and Calculus Geometry, Proof and Systems of Equations Applications of Algebra and Calculus AH.
Universidad Nacional de ColombiaUniversidad Nacional de Colombia Facultad de IngenieríaFacultad de Ingeniería Departamento de Sistemas- 2002Departamento.
CS 267: Automated Verification Lecture 3: Fixpoints and Temporal Properties Instructor: Tevfik Bultan.
Key Concepts Representation Inference Semantics Discourse Pragmatics Computation.
The modal logic of planar polygons
1 Introduction to Abstract Mathematics Sets Section 2.1 Basic Notions of Sets Section 2.2 Operations with sets Section 2.3 Indexed Sets Instructor: Hayk.
Module Code MA1032N: Logic Lecture for Week Autumn.
DISCRETE COMPUTATIONAL STRUCTURES CSE 2353 Fall 2010 Most slides modified from Discrete Mathematical Structures: Theory and Applications by D.S. Malik.
DISCRETE COMPUTATIONAL STRUCTURES
Sequence Control Syntax and Semantics Jian Xu March 3, 2004 CS706, CAS McMaster.
Web Science & Technologies University of Koblenz ▪ Landau, Germany Models of Definite Programs.
CSCI 115 Course Review.
Thinking Mathematically Venn Diagrams and Subsets.
CDC Relative Entropy Applied to Optimal Control of Stochastic Uncertain Systems on Hilbert Space Nasir U. Ahmed School of Information Technology.
Program Analysis Mooly Sagiv Tel Aviv University Sunday Scrieber 8 Monday Schrieber.
1 Iterative Program Analysis Part II Mathematical Background Mooly Sagiv Tel Aviv University
Chaotic Iterations Mooly Sagiv Tel Aviv University Textbook: Principles of Program Analysis.
Chaotic Iterations Mooly Sagiv Tel Aviv University Textbook: Principles of Program Analysis.
Alfred Tarski. Alfred Tarski ( January 14, 1901 – October 26, 1983) was a Polish logician, mathematician and philosopher.
Mathematicians The greatest minds the world's ever seen!
case study on Laplace transform
Department of Mathematics
Beginning 1956  Associate of Science Degree included 27 credits of mathematics  Math 12 Plane Trigonometry  Math 13 Analytical Geometry  Math 91 Calculus.
Partial Orderings: Selected Exercises
Chapter 6 Order Relations and Structures
Lecture 04 Set Theory Profs. Koike and Yukita
Department of Mathematics
Advanced Higher Mathematics
Ch. 6 – The Definite Integral
Chapter 3 The Real Numbers.
Set Topology MTH 251 Lecture # 8.
Ch. 6 – The Definite Integral
Sequences (9.1) February 23rd, 2017.
Discrete Math (2) Haiming Chen Associate Professor, PhD
Concurrent Models of Computation
Formal methods in software development
Formal methods in software development
Presentation transcript:

Knaster-Tarski fixed point theorem for complete partial order **************** contents ****************  Who are Knaster-Tarski?  What is elementary fixed point theorem?  What is complete partial order?  What is Knaster-Tarski fixed point theorem for complete partial order?  Why do we have to know it? (applications in CS)

Who are Knaster-Tarski? ** Bronisław Knaster (1893–1990 ) Polish mathematician He worked on topology, continuum.topologycontinuum set theory.set theory He was famous for his sense of humour. ** Alfred Tarski original name Alfred Teitelbaum ( ) Polish logicianlogician Tarski made contributions to algebra,algebra mathematical logicmathematical logic, set theoryset theory symbolic logicsymbolic logic.

Elementary Fixed Point Theorem

What is complete partial order? Let (P, ≤) be a partial order –There is, in general, no reason for greatest lower bounds and least upper bounds to exist. –P is a complete partial order if every subset has both greatest lower bounds and least upper bounds

What is Knaster-Tarski fixed point theorem Let(P,≤) be a complete ordered set and F: P  P monotone. Then the set of fixed points of F, Fix(F), is not empty, that is F has a fixed point. Moreover, Fix(F) is a complete ordered subset of P. In particular, it has the least and greatest elements.

Why do we have to know it? (applications in CS) System of equations in knowledge – base systems( database) Denotational semantics in programming languages ex) S ds [if b then S 1 else S 2 ] =cond( B[b], S ds [S 1 ], S ds [S 2 ]) while b do S  if b then (S; while b do S) else skip S ds [ while b do S]= cond( B[b], S ds [ while b do S] o S ds [S], id) S ds [ while b do S]= FIX F where F g = cond( B[b], g o S ds [S],id)