Cassandra. References:
|
|
|
- Cory Mavis Dalton
- 10 years ago
- Views:
Transcription
1 Cassandra References: Becker, Moritz; Sewell, Peter. Cassandra: Flexible Trust Management, Applied to Electronic Health Records Li, Ninghui; Mitchell, John. Datalog with Constraints: A Foundation for Trust Management Languages. Jan
2 Cassandra Cassandra is designed so that the expressiveness of the language can be tuned by selecting an appropriate constraint domain Research grounded in a substantial real-world example for a national Electronic Health Record (EHR) system based on the UK National Health Service procurement exercise Case study includes 310 rules with 58 roles Paper is a precursor to PhD thesis on the topic
3 Electronic Health Record (EHR) EHR schemes are now being developed in Europe, Canada and Australia to provide cradle-to-grave summaries of patients records. In England the National Health Service is developing a nationwide Integrated Care Records Service to provide patients with 24-hour on-line access to EHRs on a central data-spine. Deployment is scheduled between 2005 and Needless to say, the proposed system has proved highly controversial.
4 EHR Policy Concerns Patients will refuse to share their data if they do not trust the system or do not have sufficient control of use of their data. Physicians will not want to use the system if it is cumbersome to use, if the access restrictions are too strict, or the response times too high. Any policy system has to comply with relevant legislation and regulations such as the Data Protection Act, Mental Health Act, Human Fertilization and Embryology Act, the Abortion Regulations and the Venereal Diseases Regulations.
5 EHR Policy Concerns (cont.) It is evident that a policy must be adaptable enough not just to function when deployed, but to be adapted to incorporate emerging restrictions and extensions to reflect the evolution of the public debate Health organizations will likely have customized policies that are compatible but different from the nationally accepted one Other EHR countries may require radically different policy specifics and/or adopt separate policy systems
6 Trust Management Traditional access control relies on a notion of identity In decentralized, open, distributed systems the resource owner and requester are often unknown to one another Instead of identity access control decisions are based on policy statements made by multiple principles Some statements are digitally signed these are called credentials Some statements are stored in local trusted storage these are called access rules
7 Trust Management (cont.) Previous work on trust management suggests it is desirable to: factor out the policy from the application code express policy in terms of roles instead of individuals support distributed access control with policies that express automatic credential retrieval over the network and strategies to establish mutual trust between strangers be scalable to large numbers of sites and entities be adaptable to different administrative domains with independent policies or local adaptations of a default policy
8 Trust Management Scenario A requester submits a request, possibly supported by a set of credentials issued by other parties, to an authorizer, which specifies access rules governing access to the requested resource(s). The authorizer may have to contact the parties that issued the credentials to import additional policy considerations.
9 Tensions in the Design of a Real-World Policy Language It should: should be expressive so intended policies can be written naturally small and elegant avoid ad hoc features BUT, it should be efficiently computable in practical examples
10 Cassandra is a language and system for expressing access control policies supports credential-based access control and rules can refer to remote policies policy language is small and it has a formal semantics for query evaluation and for the access control engine policies are expressed in a language based on Datalog C (Datalog with constraints)
11 Cassandra Syntax
12 DATALOG DATALOG is often associated with database systems with its origins found in that field in the late 1970s. More generally, DATALOG is a restricted form of logic programming with variables, predicates, and constants, but without function symbols. DATALOG Prolog (syntactically)
13 DATALOG Rule R 0 (t 0,1,,t 0,k0 ) :- R 1 (t 1,1,,t 1,k1 ),, R 0 (t n,1,,t n,kn ) R 0,,R n are predicate relation symbols Each term t i,j is either a constant or a variable The formula R 0 (t 0,1,,t 0,k0 ) is called the head of the rule and the remainder is called the body If n = 0 then the rule is called a fact A DATALOG program is a finite set of such rules
14 DATALOG C The notion of constraint databases grew out of research on DATALOG and Constraint Logic Programming. The notion of constraint domains generalizes the relational model of data by allowing infinite relations that are finitely representable using constraints. DATALOG C is effectively DATALOG with constraints. The term refers to a wide range of specific languages since different constraint domains can be considered.
15 Constraint Domains DEF: A constraint domain Φ is a 3-tuple (Σ,D,L). Σ consists of a set of constants and a collection of k-ary predicate and function symbols D consists of a set D called the universe of the structure, a mapping from each constant to an element in D, a mapping from each k-ary predicate symbol in Σ to a k- ary relation over D, and a mapping from each k-ary function symbol in Σ to a function from D k into D. L is a class of quantifier-free first-order formulas over Σ
16 Constraint Domains Examples Equality: The signature Σ consists of a set of constants and one predicate =. A primitive constraint has the form x = y or x = c. DATALOG can be regarded as a specific instance of DATALOG C with this constraint domain. Order: The signature Σ has two predicates: = and <. A primitive constraint has the form x θ y, x θ c, or c θ x where θ Σ. Linear: The signature Σ has the function symbols + and * and the predicates {=,, <, >,, }. A primitive constraint has the form c 1 x c k x k θ b.
17 Constraint Database DEF: Let Φ be a constraint domain. 1. A constraint k-tuple is a finite conjunction φ 1 φ N where each φ i is a primitive constraint in Φ. 2. A k-ary constraint relation is a finite set r = {ψ 1,,ψ M }, where each ψ i is a constraint k-tuple over the same variables. 3. The formula corresponding to the constraint relation r is the disjunction ψ 1 ψ M. 4. A constraint database is a finite collection of constraint relations.
18 DATALOG C Rule R 0 (t 0,1,,t 0,k0 ) :- R 1 (t 1,1,,t 1,k1 ),, R 0 (t n,1,,t n,kn ),ψ 0 ψ 0 is a constraint in the set of all variables in the rule. If n = 0 then the rule is called a constraint fact A constraint rule with n hypotheses may be applied to n constraint facts to produce m facts. The process of applying a rule to a set of facts requires a form of quantifier elimination. Intuitively the head of the rule holds if the body holds.
19 Constraint Domains in Trust Management In TM languages it is often useful to appeal to constraints from several domain. Some useful constraint domains in trust management: Tree: Each constant takes the form <a 1,,a k >, which represents the node for which a 1,, a k are the strings on the path from the root to a given node. A primitive constraint is of the form x = y or xθ <a 1,,a k > in which θ {=, <,,, =}. x < <a 1,,a k > means x is a child of the specified node and x <a 1,,a k > means x is an ancestor of the specified node. Range: Syntactically sugared order domain. Discrete w/ sets: Syntactically sugared equality domain.
20 DATALOG C Example An entity A grants B permission to connect to machines in the domain neu.edu at port 80 with a validity period from t 1 to t 3. grantconnect(a, B, h, p, v) :- h <edu,neu>, p = 80, v [t 1,t 3 ]. An entity A grants B permission to delegate the same permissions. grantconnect(a, x, h, p, v) :- grantconnect(b, x, h, p, v), h <edu,neu>, p = 80, v [t 1,t 3 ]. An entity B grants D similar permissions for the ccs subdomain. grantconnect(b, D, h, p, v) :- h <edu,neu,ccs>, v [t 2,t 4 ]. From the above constraint facts and rules we can derive: grantconnect(a, D, h, p, v) :- h <edu,neu,ccs>, p = 80, v [t 2,t 3 ].
21 Cassandra Syntax (again)
22 Constraint Domain C 0 Atomic expressions can be variables, entities, integers, constants of various types, the empty set and the universal set Ω. Compound expressions can be built from atomic ones recursively: tuples (e 1,,e n ), tuple projections π n i(e), roles R(e 1,,e n ), actions A(e 1,,e n ), function applications f(e 1,,e n ), and the set expressions.
23 Constraint Domain C 0 (cont.) Constraints include equalities e = e, inequalities e e, integer orders e < e, set containments e e, and conjunctions and disjunctions of those. It also includes constraints that can be defined in terms of the existing ones such as non-membership e e and integer ranges e [e 1,e 2 ]. A type system where types τ are of the form int, entity, const, unit, τ 1 x x τ n, role(τ), action(τ), and set(τ).
24 Roles and Actions Roles and Actions are parameterized for higher expressiveness For example Clinician(org,spcty) has parameters for the health organization and the specialty of the clinician Cassandra s notion of role is more general than that typically used For example, the Access-denied-by-patient role may indicate that a record item is concealed by the patient
25 Predicates There are six special predicates in Cassandra: 1. canactivate(e,r) expresses the fact that the entity e can activate the role r 2. hasactivated(e,r) indicates that e has activated r 3. permits(e,a) says the entity e can perform action a
26 Predicates (cont.) 4. candeactivate(e 1,e 2,r) says e 1 can deactivate e 2 s activation r. This can cause cascading deactivation 5. isdeactivated(e,r) indicates the deactivation of entity e s role r 6. canreqcred(e 1,e 2.p(e )) says that e 1 is allowed to request credentials issued by e 2 and asserting the predicate p(e ) where e is a vector. Policy writers can also introduce user-defined predicates.
27 Rules Cassandra extends DATALOG C s predicates by adding a notion of an issuing entity and a storage location. E iss.p 0 (e 0 ) loc 1.p 1 (e 1 ),...,loc n.p n (e n ), c p i are the predicate names e i are (possibly empty) expression tuples c is a constraint from some fixed constraint domain E loc and E iss are the location and issuer of the rule loc i and iss i are entities or entity-typed variables
28 Rules (cont.) A policy rule of the form is called a credential. E iss.p 0 (e 0 ) c If it is sent over the network it can be though of as a certificate asserting p 0 (e 0 ), signed and issued by E iss, and belonging to and stored at E loc. Usually E loc = E iss A Cassandra policy of an entity E loc is a finite set of rules (including credentials) with location E loc.
29 Rules (cont.) A body predicate [email protected](e) can refer to a remote location. Say A is the local entity. If B A then A will contact B over the network and delegate authority to B to deduce the predicate. Before attempting the reduction B will first deduce [email protected](A,C.p(e))
30 Cassandra Example Suppose A s policy contains the rules: R 1 [email protected](A,x) [email protected](y,x), x y R 2 [email protected](B,A) true So, say A tries to deduce whether A likes herself: [email protected](y,A) A y Using R 2 A can deduce: [email protected](A,A)
31 Cassandra Example (cont.) Now say C s policy contains the rules: R 3 [email protected](D,C) true So, A tries to deduce whether she likes C. Assuming A cannot do this locally, A automatically requests from C: [email protected](y,C) C y C first must check whether A is honor the request: [email protected](A,y.likes(y,C)) C y
32 Cassandra Example (cont.) C first must check whether to honor the request: [email protected](A,y.likes(y,C)) C y The result will either be false or some constraint on the variable y. Perhaps C cannot reveal information from E to A, so it returns the constraint y E. So C tries to deduce: [email protected](y,C) C y y E C deduces this using R 3 and returns [email protected](D,C) to A, which allows A to deduce [email protected](A,C).
33 Questions?
Cassandra: Flexible Trust Management, Applied to Electronic Health Records
Cassandra: Flexible Trust Management, Applied to Electronic Health Records Moritz Y. Becker Peter Sewell Computer Laboratory, University of Cambridge JJ Thomson Avenue, Cambridge, United Kingdom {moritz.becker,
CHAPTER 7 GENERAL PROOF SYSTEMS
CHAPTER 7 GENERAL PROOF SYSTEMS 1 Introduction Proof systems are built to prove statements. They can be thought as an inference machine with special statements, called provable statements, or sometimes
Schema Mappings and Data Exchange
Schema Mappings and Data Exchange Phokion G. Kolaitis University of California, Santa Cruz & IBM Research-Almaden EASSLC 2012 Southwest University August 2012 1 Logic and Databases Extensive interaction
Monitoring Metric First-order Temporal Properties
Monitoring Metric First-order Temporal Properties DAVID BASIN, FELIX KLAEDTKE, SAMUEL MÜLLER, and EUGEN ZĂLINESCU, ETH Zurich Runtime monitoring is a general approach to verifying system properties at
Relational Calculus. Module 3, Lecture 2. Database Management Systems, R. Ramakrishnan 1
Relational Calculus Module 3, Lecture 2 Database Management Systems, R. Ramakrishnan 1 Relational Calculus Comes in two flavours: Tuple relational calculus (TRC) and Domain relational calculus (DRC). Calculus
Predicate Logic. For example, consider the following argument:
Predicate Logic The analysis of compound statements covers key aspects of human reasoning but does not capture many important, and common, instances of reasoning that are also logically valid. For example,
A logical approach to dynamic role-based access control
A logical approach to dynamic role-based access control Philippe Balbiani Yannick Chevalier Marwa El Houri Abstract Since its formalization RBAC has become the yardstick for the evaluation of access control
Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification
Chapter 5 More SQL: Complex Queries, Triggers, Views, and Schema Modification Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 5 Outline More Complex SQL Retrieval Queries
Regression Verification: Status Report
Regression Verification: Status Report Presentation by Dennis Felsing within the Projektgruppe Formale Methoden der Softwareentwicklung 2013-12-11 1/22 Introduction How to prevent regressions in software
Largest Fixed-Aspect, Axis-Aligned Rectangle
Largest Fixed-Aspect, Axis-Aligned Rectangle David Eberly Geometric Tools, LLC http://www.geometrictools.com/ Copyright c 1998-2016. All Rights Reserved. Created: February 21, 2004 Last Modified: February
Temporal Logics. Computation Tree Logic
Temporal Logics CTL: definition, relationship between operators, adequate sets, specifying properties, safety/liveness/fairness Modeling: sequential, concurrent systems; maximum parallelism/interleaving
Mathematical Induction. Lecture 10-11
Mathematical Induction Lecture 10-11 Menu Mathematical Induction Strong Induction Recursive Definitions Structural Induction Climbing an Infinite Ladder Suppose we have an infinite ladder: 1. We can reach
Scalable Automated Symbolic Analysis of Administrative Role-Based Access Control Policies by SMT solving
Scalable Automated Symbolic Analysis of Administrative Role-Based Access Control Policies by SMT solving Alessandro Armando 1,2 and Silvio Ranise 2, 1 DIST, Università degli Studi di Genova, Italia 2 Security
Fixed-Point Logics and Computation
1 Fixed-Point Logics and Computation Symposium on the Unusual Effectiveness of Logic in Computer Science University of Cambridge 2 Mathematical Logic Mathematical logic seeks to formalise the process of
Lecture 17 : Equivalence and Order Relations DRAFT
CS/Math 240: Introduction to Discrete Mathematics 3/31/2011 Lecture 17 : Equivalence and Order Relations Instructor: Dieter van Melkebeek Scribe: Dalibor Zelený DRAFT Last lecture we introduced the notion
Analyzing First-order Role Based Access Control
Analyzing First-order Role Based Access Control Carlos Cotrini, Thilo Weghorn, David Basin, and Manuel Clavel Department of Computer Science ETH Zurich, Switzerland {basin, ccarlos, thiloweghorn}@infethzch
A System for Interactive Authorization for Business Processes for Web Services
A System for Interactive Authorization for Business Processes for Web Services Hristo Koshutanski and Fabio Massacci Dip. di Informatica e Telecomunicazioni - Univ. di Trento via Sommarive 14-38050 Povo
Predicate logic. Logic in computer science. Logic in Computer Science (lecture) PART II. first order logic
PART II. Predicate logic first order logic Logic in computer science Seminar: INGK401-K5; INHK401; INJK401-K4 University of Debrecen, Faculty of Informatics [email protected] 1 / 19 Alphabets Logical
µz An Efficient Engine for Fixed points with Constraints
µz An Efficient Engine for Fixed points with Constraints Kryštof Hoder, Nikolaj Bjørner, and Leonardo de Moura Manchester University and Microsoft Research Abstract. The µz tool is a scalable, efficient
Data Integration: A Theoretical Perspective
Data Integration: A Theoretical Perspective Maurizio Lenzerini Dipartimento di Informatica e Sistemistica Università di Roma La Sapienza Via Salaria 113, I 00198 Roma, Italy [email protected] ABSTRACT
A first step towards modeling semistructured data in hybrid multimodal logic
A first step towards modeling semistructured data in hybrid multimodal logic Nicole Bidoit * Serenella Cerrito ** Virginie Thion * * LRI UMR CNRS 8623, Université Paris 11, Centre d Orsay. ** LaMI UMR
Algorithmic Software Verification
Algorithmic Software Verification (LTL Model Checking) Azadeh Farzan What is Verification Anyway? Proving (in a formal way) that program satisfies a specification written in a logical language. Formal
Software Modeling and Verification
Software Modeling and Verification Alessandro Aldini DiSBeF - Sezione STI University of Urbino Carlo Bo Italy 3-4 February 2015 Algorithmic verification Correctness problem Is the software/hardware system
Relational Databases
Relational Databases Jan Chomicki University at Buffalo Jan Chomicki () Relational databases 1 / 18 Relational data model Domain domain: predefined set of atomic values: integers, strings,... every attribute
History of SQL. Relational Database Languages. Tuple relational calculus ALPHA (Codd, 1970s) QUEL (based on ALPHA) Datalog (rule-based, like PROLOG)
Relational Database Languages Tuple relational calculus ALPHA (Codd, 1970s) QUEL (based on ALPHA) Datalog (rule-based, like PROLOG) Domain relational calculus QBE (used in Access) History of SQL Standards:
This asserts two sets are equal iff they have the same elements, that is, a set is determined by its elements.
3. Axioms of Set theory Before presenting the axioms of set theory, we first make a few basic comments about the relevant first order logic. We will give a somewhat more detailed discussion later, but
(LMCS, p. 317) V.1. First Order Logic. This is the most powerful, most expressive logic that we will examine.
(LMCS, p. 317) V.1 First Order Logic This is the most powerful, most expressive logic that we will examine. Our version of first-order logic will use the following symbols: variables connectives (,,,,
XML Data Integration
XML Data Integration Lucja Kot Cornell University 11 November 2010 Lucja Kot (Cornell University) XML Data Integration 11 November 2010 1 / 42 Introduction Data Integration and Query Answering A data integration
Using XACML Policies as OAuth Scope
Using XACML Policies as OAuth Scope Hal Lockhart Oracle I have been exploring the possibility of expressing the Scope of an OAuth Access Token by using XACML policies. In this document I will first describe
Using the Theory of Reals in. Analyzing Continuous and Hybrid Systems
Using the Theory of Reals in Analyzing Continuous and Hybrid Systems Ashish Tiwari Computer Science Laboratory (CSL) SRI International (SRI) Menlo Park, CA 94025 Email: [email protected] Ashish Tiwari
ML for the Working Programmer
ML for the Working Programmer 2nd edition Lawrence C. Paulson University of Cambridge CAMBRIDGE UNIVERSITY PRESS CONTENTS Preface to the Second Edition Preface xiii xv 1 Standard ML 1 Functional Programming
Bounded Treewidth in Knowledge Representation and Reasoning 1
Bounded Treewidth in Knowledge Representation and Reasoning 1 Reinhard Pichler Institut für Informationssysteme Arbeitsbereich DBAI Technische Universität Wien Luminy, October 2010 1 Joint work with G.
Computational Methods for Database Repair by Signed Formulae
Computational Methods for Database Repair by Signed Formulae Ofer Arieli ([email protected]) Department of Computer Science, The Academic College of Tel-Aviv, 4 Antokolski street, Tel-Aviv 61161, Israel.
Relations: their uses in programming and computational specifications
PEPS Relations, 15 December 2008 1/27 Relations: their uses in programming and computational specifications Dale Miller INRIA - Saclay & LIX, Ecole Polytechnique 1. Logic and computation Outline 2. Comparing
Trust but Verify: Authorization for Web Services. The University of Vermont
Trust but Verify: Authorization for Web Services Christian Skalka X. Sean Wang The University of Vermont Trust but Verify (TbV) Reliable, practical authorization for web service invocation. Securing complex
Introduction to tuple calculus Tore Risch 2011-02-03
Introduction to tuple calculus Tore Risch 2011-02-03 The relational data model is based on considering normalized tables as mathematical relationships. Powerful query languages can be defined over such
Discrete Optimization
Discrete Optimization [Chen, Batson, Dang: Applied integer Programming] Chapter 3 and 4.1-4.3 by Johan Högdahl and Victoria Svedberg Seminar 2, 2015-03-31 Todays presentation Chapter 3 Transforms using
On the Modeling and Verification of Security-Aware and Process-Aware Information Systems
On the Modeling and Verification of Security-Aware and Process-Aware Information Systems 29 August 2011 What are workflows to us? Plans or schedules that map users or resources to tasks Such mappings may
Testing LTL Formula Translation into Büchi Automata
Testing LTL Formula Translation into Büchi Automata Heikki Tauriainen and Keijo Heljanko Helsinki University of Technology, Laboratory for Theoretical Computer Science, P. O. Box 5400, FIN-02015 HUT, Finland
Enforcing Data Quality Rules for a Synchronized VM Log Audit Environment Using Transformation Mapping Techniques
Enforcing Data Quality Rules for a Synchronized VM Log Audit Environment Using Transformation Mapping Techniques Sean Thorpe 1, Indrajit Ray 2, and Tyrone Grandison 3 1 Faculty of Engineering and Computing,
Useful Mathematical Symbols
32 Useful Mathematical Symbols Symbol What it is How it is read How it is used Sample expression + * ddition sign OR Multiplication sign ND plus or times and x Multiplication sign times Sum of a few disjunction
Lecture 2: Universality
CS 710: Complexity Theory 1/21/2010 Lecture 2: Universality Instructor: Dieter van Melkebeek Scribe: Tyson Williams In this lecture, we introduce the notion of a universal machine, develop efficient universal
Chapter 8 The Enhanced Entity- Relationship (EER) Model
Chapter 8 The Enhanced Entity- Relationship (EER) Model Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 8 Outline Subclasses, Superclasses, and Inheritance Specialization
University of Ostrava. Reasoning in Description Logic with Semantic Tableau Binary Trees
University of Ostrava Institute for Research and Applications of Fuzzy Modeling Reasoning in Description Logic with Semantic Tableau Binary Trees Alena Lukasová Research report No. 63 2005 Submitted/to
High level conflict management strategies in advanced access control models
Replace this file with prentcsmacro.sty for your meeting, or with entcsmacro.sty for your meeting. Both can be found at the ENTCS Macro Home Page. High level conflict management strategies in advanced
Introduction to Logic in Computer Science: Autumn 2006
Introduction to Logic in Computer Science: Autumn 2006 Ulle Endriss Institute for Logic, Language and Computation University of Amsterdam Ulle Endriss 1 Plan for Today Now that we have a basic understanding
Relational model. Relational model - practice. Relational Database Definitions 9/27/11. Relational model. Relational Database: Terminology
COS 597A: Principles of Database and Information Systems elational model elational model A formal (mathematical) model to represent objects (data/information), relationships between objects Constraints
Extending Data Processing Capabilities of Relational Database Management Systems.
Extending Data Processing Capabilities of Relational Database Management Systems. Igor Wojnicki University of Missouri St. Louis Department of Mathematics and Computer Science 8001 Natural Bridge Road
Artificial Intelligence
Artificial Intelligence ICS461 Fall 2010 1 Lecture #12B More Representations Outline Logics Rules Frames Nancy E. Reed [email protected] 2 Representation Agents deal with knowledge (data) Facts (believe
Regular Expressions with Nested Levels of Back Referencing Form a Hierarchy
Regular Expressions with Nested Levels of Back Referencing Form a Hierarchy Kim S. Larsen Odense University Abstract For many years, regular expressions with back referencing have been used in a variety
Development of dynamically evolving and self-adaptive software. 1. Background
Development of dynamically evolving and self-adaptive software 1. Background LASER 2013 Isola d Elba, September 2013 Carlo Ghezzi Politecnico di Milano Deep-SE Group @ DEIB 1 Requirements Functional requirements
Mathematics for Computer Science/Software Engineering. Notes for the course MSM1F3 Dr. R. A. Wilson
Mathematics for Computer Science/Software Engineering Notes for the course MSM1F3 Dr. R. A. Wilson October 1996 Chapter 1 Logic Lecture no. 1. We introduce the concept of a proposition, which is a statement
Handout #1: Mathematical Reasoning
Math 101 Rumbos Spring 2010 1 Handout #1: Mathematical Reasoning 1 Propositional Logic A proposition is a mathematical statement that it is either true or false; that is, a statement whose certainty or
Data Structures Fibonacci Heaps, Amortized Analysis
Chapter 4 Data Structures Fibonacci Heaps, Amortized Analysis Algorithm Theory WS 2012/13 Fabian Kuhn Fibonacci Heaps Lacy merge variant of binomial heaps: Do not merge trees as long as possible Structure:
Computability Theory
CSC 438F/2404F Notes (S. Cook and T. Pitassi) Fall, 2014 Computability Theory This section is partly inspired by the material in A Course in Mathematical Logic by Bell and Machover, Chap 6, sections 1-10.
A Non-Linear Schema Theorem for Genetic Algorithms
A Non-Linear Schema Theorem for Genetic Algorithms William A Greene Computer Science Department University of New Orleans New Orleans, LA 70148 bill@csunoedu 504-280-6755 Abstract We generalize Holland
A Framework of Personalized Intelligent Document and Information Management System
A Framework of Personalized Intelligent and Information Management System Xien Fan Department of Computer Science, College of Staten Island, City University of New York, Staten Island, NY 10314, USA Fang
FUNDAMENTALS OF ARTIFICIAL INTELLIGENCE KNOWLEDGE REPRESENTATION AND NETWORKED SCHEMES
Riga Technical University Faculty of Computer Science and Information Technology Department of Systems Theory and Design FUNDAMENTALS OF ARTIFICIAL INTELLIGENCE Lecture 7 KNOWLEDGE REPRESENTATION AND NETWORKED
[Refer Slide Time: 05:10]
Principles of Programming Languages Prof: S. Arun Kumar Department of Computer Science and Engineering Indian Institute of Technology Delhi Lecture no 7 Lecture Title: Syntactic Classes Welcome to lecture
Semester Review. CSC 301, Fall 2015
Semester Review CSC 301, Fall 2015 Programming Language Classes There are many different programming language classes, but four classes or paradigms stand out:! Imperative Languages! assignment and iteration!
HOMEWORK 5 SOLUTIONS. n!f n (1) lim. ln x n! + xn x. 1 = G n 1 (x). (2) k + 1 n. (n 1)!
Math 7 Fall 205 HOMEWORK 5 SOLUTIONS Problem. 2008 B2 Let F 0 x = ln x. For n 0 and x > 0, let F n+ x = 0 F ntdt. Evaluate n!f n lim n ln n. By directly computing F n x for small n s, we obtain the following
Mining the Software Change Repository of a Legacy Telephony System
Mining the Software Change Repository of a Legacy Telephony System Jelber Sayyad Shirabad, Timothy C. Lethbridge, Stan Matwin School of Information Technology and Engineering University of Ottawa, Ottawa,
NP-Completeness and Cook s Theorem
NP-Completeness and Cook s Theorem Lecture notes for COM3412 Logic and Computation 15th January 2002 1 NP decision problems The decision problem D L for a formal language L Σ is the computational task:
Security Analysis in Role-Based Access Control
Security Analysis in Role-Based Access Control NINGHUI LI Purdue University and MAHESH V. TRIPUNITARA Motorola Labs The administration of large role-based access control (RBAC) systems is a challenging
InvGen: An Efficient Invariant Generator
InvGen: An Efficient Invariant Generator Ashutosh Gupta and Andrey Rybalchenko Max Planck Institute for Software Systems (MPI-SWS) Abstract. In this paper we present InvGen, an automatic linear arithmetic
Fun with Henry. Dirk Pattinson Department of Computing Imperial College London
Fun with Henry Dirk Pattinson Department of Computing Imperial College London 1 Example: The Tudors Henry VIII Henry Carey Mary Boleyn There have been speculation that Mary s two children, Catherine and
Jairson Vitorino. PhD Thesis, CIn-UFPE February 2009. Supervisor: Prof. Jacques Robin. Ontologies Reasoning Components Agents Simulations
CHROME: A Model-Driven Component- Based Rule Engine Jairson Vitorino PhD Thesis, CIn-UFPE February 2009 Supervisor: Prof. Jacques Robin Ontologies Reasoning Components Agents Simulations Contents 1. Context
STRATEGIC CAPACITY PLANNING USING STOCK CONTROL MODEL
Session 6. Applications of Mathematical Methods to Logistics and Business Proceedings of the 9th International Conference Reliability and Statistics in Transportation and Communication (RelStat 09), 21
Transformation Techniques for Constraint Logic Programs with Applications to Protocol Verification
UNIVERSITÀ DEGLI STUDI DI ROMA TOR VERGATA FACOLTÀ DI INGEGNERIA DOTTORATO DI RICERCA IN INFORMATICA ED INGEGNERIA DELL AUTOMAZIONE XX CICLO Transformation Techniques for Constraint Logic Programs with
Data Integration and Exchange. L. Libkin 1 Data Integration and Exchange
Data Integration and Exchange L. Libkin 1 Data Integration and Exchange Traditional approach to databases A single large repository of data. Database administrator in charge of access to data. Users interact
Aikaterini Marazopoulou
Imperial College London Department of Computing Tableau Compiled Labelled Deductive Systems with an application to Description Logics by Aikaterini Marazopoulou Submitted in partial fulfilment of the requirements
3. Mathematical Induction
3. MATHEMATICAL INDUCTION 83 3. Mathematical Induction 3.1. First Principle of Mathematical Induction. Let P (n) be a predicate with domain of discourse (over) the natural numbers N = {0, 1,,...}. If (1)
Overview Motivating Examples Interleaving Model Semantics of Correctness Testing, Debugging, and Verification
Introduction Overview Motivating Examples Interleaving Model Semantics of Correctness Testing, Debugging, and Verification Advanced Topics in Software Engineering 1 Concurrent Programs Characterized by
