The Temporal Logic of Reactive and Concurrent Systems

Size: px
Start display at page:

Download "The Temporal Logic of Reactive and Concurrent Systems"

Transcription

1 The Temporal Logic of Reactive and Concurrent Systems

2 Zahar Manna Amir Pnueli The Temporal Logic of Reactive and Concurrent Systems Specificatian With 96 Illustrations Springer Science+Business Media, LLC

3 Zohar Manna Department of Computer Science Stanford University Stanford, CA USA Computer Science Department Weizmann Institute of Science Rehovot, Israel Amir Pnueli Computer Science Department Weizmann Institute Rehovot, Israel Library of Congress Cataloging-in-Publication Data Manna, Zohar. The temporal logic of reactive and concurrent systems / Zohar Manna, Amir Pnueli. p. cm. Includes bibliographical references and index. Contents: v. 1. Specificat ion ISBN ISBN (ebook) DOI / Electronic digital computers --Programming. 2. Logic, Symbolic and mathematical. 1. Pnueli, A. II. Title. QA 76.6.M dc Printed on acid-free paper Springer Scienee+Business Media New York Originally published by Springer-Verlag New York, Ine. in 1992 Softeover reprint of the hardeover Ist edition 1992 All rights reserved. This work may not be translated or eopied in whole or in part without the written pennission of the publisher Springer Science+ Business Media, LLC except for brief excerpts in connection with reviews or scholarly analysis. Use in connection with any fonn of infonnation storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter deve10ped is forbidden. The use of general descriptive names, trade names, trademarks, etc., in this publication, even if the fonner are not especially identified, is not too be taken as a sign that such names, as understood by the Trade Marks and Merchandise Marks Acts, may accordingly be used freely by anyone. Production managed by Karen Phillipsj Manufacturing supervised by Robert Paella. Camera-ready copy prepared from the authors' TEX file ISBN

4 To Nitza and Ariela

5 Preface This book is about reactive programs, the systems they control, and a methodology for the formal specification, verification, and development of such programs, using the tool of temporal logic. A reactive program is a program whose role is to maintain an ongoing interaction with its environment rather than to compute some final value on termination. The family of reactive programs includes most of the classes of programs whose correct and reliable construction is considered to be particularly challenging, including concurrent and real-time programs, embedded and process control programs, and operating systems. A fundamental element in reactive programs is that of concurrency. By definition, a reactive program runs concurrently with its environment. Also most of the sample programs studied in this book are concurrent programs, which consist of several processes executed concurrently. The techniques presented are often used to specify and analyze the interaction between the concurrent components of such programs. We may therefore describe the subject matter of the book as the study and analysis of interaction, either between a program and its environment or between concurrent processes within a program. As has been amply demonstrated in many case histories, the correct construction of reliable reactive programs is one of the most challenging programming activities. Seemingly innocuous small concurrent programs have been known to exhibit completely unanticipated behaviors that, in some cases, may lead to crashes of critical systems. This is why formal approaches to the development of correct programs, such as the one promoted in this book, are so essential to the area of reactive programs. A formal methodology typically consists of several elements. One element is a specification language in which the anticipated requirements from a program can be formally specified. Another is a repertoire of proof methods by which the correctness of a proposed program, relative to the specification, can be formally verified. The advantages of a formal methodology are obvious. Formal specification forces the designers of a program to make early precise decisions about the major functionalities of the program and to remove ambiguities from the descrip-

6 viii Preface tion of its expected behavior. Formal verification of a desired property guarantees that the property holds over all possible executions of the program. As a specification language, we adopt temporal logic, which is an appropriate and convenient language for specifying the dynamic behavior of reactive programs and describing their properties. The main advantage of the temporal language is that it provides a succinct and natural expression of frequently occurring program properties using a set of special operators. A considerable part of this volume is devoted to a comprehensive and selfcontained introduction to temporal logic and the illustration of its use for specifying properties of reactive systems. Intended Audience and Prerequisites The book is intended for people who are interested in the design, construction, and analysis of reactive systems and who wish to learn the language of temporal logic and how to apply it to the specification, verification, and development of reactive systems. The background assumed of our readers consists, on one hand, of some familiarity and experience with programming and programming languages, in particular, some acquaintance with the basic notions of concurrent execution of programs; and on the other hand, a reasonable understanding of first-order logic and the notions of validity and provability by deductive systems. No prior knowledge of temporal logic is assumed, and no detailed knowledge of any particular programming language is necessary, since these two topics are introduced here. Contents The book is partitioned into two volumes. The first volume, subtitled Specification and consisting of Chapters 1 to 4, presents a computational model and a programming language for reactive programs and the specification language of temporal logic. The second volume, subtitled Verification and consisting of Chapters 5 to 11, is dedicated to the presentation of proof methods for verifying that a given program satisfies its specification. Chapter 1 introduces the computational model and the programming language. In the programming language, we make a special effort to give a comprehensive representation of the main mechanisms for communication and synchronization between concurrent processes. Consequently, the language allows processes to communicate both by shared variables and by message-passing. Our intention in this book is to present a uniform approach to communication within reactive programs, which is independent of the particular communication mechanisms employed. Consequently, we show how some central paradigms in concurrent programming, such as mutual exclusion or producer-consumer, can be programmed in terms of either shared variables or different versions of messagepassing.

7 Preface ix Chapter 2 further elaborates the computational model. The computational model used in the book represents concurrency by interleaving of atomic actions chosen, one at a time, from parallel processes. This chapter examines the question of how faithfully this representation corresponds to real concurrent execution of programs, in which several parallel statements execute at the same time. By imposing a syntactical restriction on the programs we study and introducing fairness requirements, we ensure exact correspondence between interleaved and real concurrent execution of a program. Chapter 3 introduces the language of temporal logic, presenting its syntax and semantics. The temporal language contains two symmetric groups of temporal operators, one dealing with the future and the other with the past. We list and discuss many properties of the temporal operators. Formal means for the derivation of temporal properties are provided by a deductive proof system. Chapter 4 explores the utility of temporal logic as a language for specifying properties of reactive programs. Program properties are classified into a hierarchy of classes, based on their expression in temporal logic. The most important classes are the classes of safety, response, and reactivity properties. For each class, we provide a comprehensive set of examples of commonly encountered program properties. We also explore the important topic of modular specification, where each module (process) of the program is independently specified. This concludes Volume 1. Volume 2 is dedicated to the presentation of techniques and heuristics for the verification of program properties expressed by temporal formulas. It is organized in three parts, presenting rules for the verification of properties that belong to the classes of safety, response, and reactivity. Chapters 5 to 7 deal with the verification of safety properties, Chapters 8 to 10 with the verification of response properties, and Chapter 11 with the remaining classes. Teaching the Book The material contained in the book can be used as a basis for computer science courses on several levels. Each volume is suitable for a one-semester course. The complete book has been taught in a two-semester course at Stanford University and the Weizmann Institute. Such a course can be given both at a senior undergraduate level and at a graduate level. The Fast Track There are several sections of Volume 1 that are not essential or central to the understanding of the main topics of the book. If one is interested in a course that covers less material, then these sections are the first candidates for dropping out altogether or assigning as independent reading. In Chapter 1 these are Sections 1.2, 1.6, and In Chapter 2, Sections 2.9

8 x Preface and 2.10 cover more-advanced and less-essential matters and are candidates for skipping. In Chapter 4, Sections 4.7, 4.8, and 4.9 are less central than the others. Problems Each chapter concludes with a set of problems. Some of the problems are intended to let the readers test their understanding of the material covered in the chapter. Other problems introduce material that was not covered in the chapter. There are problems that explore alternatives to the way some topics were introduced and developed. The problems are graded according to their difficulty. Difficult problems are annotated by *. Research-level problems are annotated by **. To indicate which problems pertain to a given portion of the text, we annotate the text with references to the appropriate problems, and we provide a page reference with each problem. In solving a problem, readers may use any results that appeared in the text prior to the corresponding page reference. They may also use the results of any previous problem and previous parts of the same problem. A booklet containing answers to the problems is available to instructors. Please contact the publisher directly. Bibliography Following each chapter, there is a brief bibliographic discussion mentioning some ofthe research contributions relevant to the topics covered in the chapter. In spite of our sincere effort to refer to all the important relevant works, we may have missed some. We apologize for that omission and would welcome any corrections and comments. A Support System We recommend to our readers a program, available on the Macintosh, that checks the validity of propositional temporal formulas. This program can help with exercises concerning temporal logic. For information about obtaining the system, write to Temporal Prover Box 9215 Stanford, CA Acknowledgment We wish to acknowledge the help of many colleagues and students in reading the manuscript in its (almost infinite) number of versions and for their useful comments and suggestions. Particularly helpful suggestions were made by Rajeev Alur, Eddie Chang, Avraham Ginzburg, David Gries, Tom Henzinger, Daphne Koller, Narciso Marti-Oliet, Roni Rosner, Richard Waldinger and Liz Wolf.

9 Preface xi We would like to thank our students at Stanford University and the Weizmann Institute for their detailed comments and helpful criticisms. For support of the research behind this book, we thank the Air Force Office of Scientific Research, the Defense Advanced Research Projects Agency, the National Science Foundation, and the European Community Esprit project. Sarah Fliegelman has done a magnificent job of typesetting the book. The detailed technical knowledge and expertise, provided by ~ - w i Joe z aweening, r d have been invaluable. Eric Muller spent long hours patiently preparing all the computer-generated diagrams, and Yehuda Barbut provided the hand-drawn sketches. Rajeev Alur has been of special assistance in the preparation of problems for this volume and has written the booklet of solutions. Roni Rosner was most helpful in the preparation of the bibliographic remarks. We are particularly grateful to Carron Kirkwood for the design of the cover of the book. Stanford University Weizmann Institute Z.M. A.P.

10 Contents Preface Part I: Models of Concurrency 1 Chapter 1: Basic Models The Generic Model Modell: Transition Diagrams Model 2: Shared-Variables Text Semantics of Shared-Variables Text Structural Relations Between Statements Behavioral Equivalence Grouped Statements Semaphore Statements Region Statements Model 3: Message-Passing Text Model 4: Petri Nets 86 Problems 93 Bibliographic Notes 100 Chapter 2: Modeling Real Concurrency Interleaving and Concurrency Limiting the Critical References Justice (Weak Fairness) Implications of the Justice Requirements Compassion (Strong Fairness) Synchronization Statements Communication Statements Summary: Fair Transition Systems Fairness in Petri Nets Semantic Considerations of Fairness 153 Problems 159 Bibliographic Notes 173 vii

11 xiv Contents Part II: Specifications Chapter 3: Temporal Logic 3.1 State Formulas 3.2 Temporal Formulas: Future Operators 3.3 Temporal Formulas: Past Operators 3.4 Basic Properties of the Temporal Operators 3.5 A Proof System 3.6 Axioms for a Proof System 3.7 Basic Inference Rules 3.8 Derived Inference Rules 3.9 Equality and Quantifiers 3.10 From General Validity to Program Validity Problems Bibliographic Notes Chapter 4: Properties of Programs 4.1 The Local Language 4.2 The Classification of Properties 4.3 Examples of Safety: State Invariances 4.4 Examples of Safety: Past Invariances 4.5 Examples of Progress Properties: From Guarantee to Reactivity 4.6 Example: A Resource Allocator 4.7 Expressivity of the Specification Language 4.8 Specification of Reactive Modules 4.9 Composing Modular Specifications Problems Bibliographic Notes References Index to Symbols General Index

Perspectives of Information Systems

Perspectives of Information Systems Perspectives of Information Systems Springer-Science+ Business Media, LLC Vesa Savolainen Editor and Main Author Perspectives of Information Systems Springer Vesa Savolainen Department of Computer Science

More information

Guide to Teaching Computer Science

Guide to Teaching Computer Science Guide to Teaching Computer Science Orit Hazzan Tami Lapidot Noa Ragonis Guide to Teaching Computer Science An Activity-Based Approach Dr. Orit Hazzan Associate Professor Technion - Israel Institute of

More information

International Series in Operations Research & Management Science

International Series in Operations Research & Management Science International Series in Operations Research & Management Science Volume 240 Series Editor Camille C. Price Stephen F. Austin State University, TX, USA Associate Series Editor Joe Zhu Worcester Polytechnic

More information

AQUA: An Ontology-Driven Question Answering System

AQUA: An Ontology-Driven Question Answering System AQUA: An Ontology-Driven Question Answering System Maria Vargas-Vera, Enrico Motta and John Domingue Knowledge Media Institute (KMI) The Open University, Walton Hall, Milton Keynes, MK7 6AA, United Kingdom.

More information

Conducting the Reference Interview:

Conducting the Reference Interview: Conducting the Reference Interview: A How-To-Do-It Manual for Librarians Second Edition Catherine Sheldrick Ross Kirsti Nilsen and Marie L. Radford HOW-TO-DO-IT MANUALS NUMBER 166 Neal-Schuman Publishers,

More information

COMMUNICATION-BASED SYSTEMS

COMMUNICATION-BASED SYSTEMS COMMUNICATION-BASED SYSTEMS COMMUNICATION-BASED SYSTEMS Proceedings of the 3rd International Workshop held at the TU Berlin, Germany, 31 March - 1 April 2000 Edited by GÜNTER HOMMEL Technische Universität

More information

PH.D. IN COMPUTER SCIENCE PROGRAM (POST M.S.)

PH.D. IN COMPUTER SCIENCE PROGRAM (POST M.S.) PH.D. IN COMPUTER SCIENCE PROGRAM (POST M.S.) OVERVIEW ADMISSION REQUIREMENTS PROGRAM REQUIREMENTS OVERVIEW FOR THE PH.D. IN COMPUTER SCIENCE Overview The doctoral program is designed for those students

More information

Lecture Notes in Artificial Intelligence 4343

Lecture Notes in Artificial Intelligence 4343 Lecture Notes in Artificial Intelligence 4343 Edited by J. G. Carbonell and J. Siekmann Subseries of Lecture Notes in Computer Science Christian Müller (Ed.) Speaker Classification I Fundamentals, Features,

More information

Instrumentation, Control & Automation Staffing. Maintenance Benchmarking Study

Instrumentation, Control & Automation Staffing. Maintenance Benchmarking Study Electronic Document Instrumentation, Control & Automation Staffing Prepared by ITA Technical Committee, Maintenance Subcommittee, Task Force on IC&A Staffing John Petito, Chair Richard Haugh, Vice-Chair

More information

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas Exploiting Distance Learning Methods and Multimediaenhanced instructional content to support IT Curricula in Greek Technological Educational Institutes P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou,

More information

MARE Publication Series

MARE Publication Series MARE Publication Series Volume 8 Series Editors Maarten Bavinck University of Amsterdam, Amsterdam, The Netherlands Svein Jentoft Tromsø, Norway The MARE Publication Series is an initiative of the Centre

More information

Objectives. Chapter 2: The Representation of Knowledge. Expert Systems: Principles and Programming, Fourth Edition

Objectives. Chapter 2: The Representation of Knowledge. Expert Systems: Principles and Programming, Fourth Edition Chapter 2: The Representation of Knowledge Expert Systems: Principles and Programming, Fourth Edition Objectives Introduce the study of logic Learn the difference between formal logic and informal logic

More information

THE PROMOTION OF SOCIAL AWARENESS

THE PROMOTION OF SOCIAL AWARENESS THE PROMOTION OF SOCIAL AWARENESS Powerful Lessons from the Partnership of Developmental Theory and Classroom Practice Robert L. Selman Russell Sage Foundation New York The Russell Sage Foundation The

More information

Maximizing Learning Through Course Alignment and Experience with Different Types of Knowledge

Maximizing Learning Through Course Alignment and Experience with Different Types of Knowledge Innov High Educ (2009) 34:93 103 DOI 10.1007/s10755-009-9095-2 Maximizing Learning Through Course Alignment and Experience with Different Types of Knowledge Phyllis Blumberg Published online: 3 February

More information

Controlled vocabulary

Controlled vocabulary Indexing languages 6.2.2. Controlled vocabulary Overview Anyone who has struggled to find the exact search term to retrieve information about a certain subject can benefit from controlled vocabulary. Controlled

More information

PRODUCT PLATFORM AND PRODUCT FAMILY DESIGN

PRODUCT PLATFORM AND PRODUCT FAMILY DESIGN PRODUCT PLATFORM AND PRODUCT FAMILY DESIGN PRODUCT PLATFORM AND PRODUCT FAMILY DESIGN Methods and Applications Edited by Timothy W. Simpson 1, Zahed Siddique 2, and Jianxin (Roger) Jiao 3 1 The Pennsylvania

More information

Evolution of Collective Commitment during Teamwork

Evolution of Collective Commitment during Teamwork Fundamenta Informaticae 56 (2003) 329 371 329 IOS Press Evolution of Collective Commitment during Teamwork Barbara Dunin-Kȩplicz Institute of Informatics, Warsaw University Banacha 2, 02-097 Warsaw, Poland

More information

Introduction to Modeling and Simulation. Conceptual Modeling. OSMAN BALCI Professor

Introduction to Modeling and Simulation. Conceptual Modeling. OSMAN BALCI Professor Introduction to Modeling and Simulation Conceptual Modeling OSMAN BALCI Professor Department of Computer Science Virginia Polytechnic Institute and State University (Virginia Tech) Blacksburg, VA 24061,

More information

Knowledge-Based - Systems

Knowledge-Based - Systems Knowledge-Based - Systems ; Rajendra Arvind Akerkar Chairman, Technomathematics Research Foundation and Senior Researcher, Western Norway Research institute Priti Srinivas Sajja Sardar Patel University

More information

Classroom Connections Examining the Intersection of the Standards for Mathematical Content and the Standards for Mathematical Practice

Classroom Connections Examining the Intersection of the Standards for Mathematical Content and the Standards for Mathematical Practice Classroom Connections Examining the Intersection of the Standards for Mathematical Content and the Standards for Mathematical Practice Title: Considering Coordinate Geometry Common Core State Standards

More information

CLASSIFICATION OF PROGRAM Critical Elements Analysis 1. High Priority Items Phonemic Awareness Instruction

CLASSIFICATION OF PROGRAM Critical Elements Analysis 1. High Priority Items Phonemic Awareness Instruction CLASSIFICATION OF PROGRAM Critical Elements Analysis 1 Program Name: Macmillan/McGraw Hill Reading 2003 Date of Publication: 2003 Publisher: Macmillan/McGraw Hill Reviewer Code: 1. X The program meets

More information

How to Judge the Quality of an Objective Classroom Test

How to Judge the Quality of an Objective Classroom Test How to Judge the Quality of an Objective Classroom Test Technical Bulletin #6 Evaluation and Examination Service The University of Iowa (319) 335-0356 HOW TO JUDGE THE QUALITY OF AN OBJECTIVE CLASSROOM

More information

STUDYING RULES For the first study cycle at International Burch University

STUDYING RULES For the first study cycle at International Burch University INTERNATIONAL BURCH UNIVERSITY SENATE Number: 338 08 IBU STUDYING RULES For the first study cycle at International Burch University GENERAL REGULATIONS Article 1. With these rules defined are the organization

More information

Practical Integrated Learning for Machine Element Design

Practical Integrated Learning for Machine Element Design Practical Integrated Learning for Machine Element Design Manop Tantrabandit * Abstract----There are many possible methods to implement the practical-approach-based integrated learning, in which all participants,

More information

Diagnostic Test. Middle School Mathematics

Diagnostic Test. Middle School Mathematics Diagnostic Test Middle School Mathematics Copyright 2010 XAMonline, Inc. All rights reserved. No part of the material protected by this copyright notice may be reproduced or utilized in any form or by

More information

Kentucky s Standards for Teaching and Learning. Kentucky s Learning Goals and Academic Expectations

Kentucky s Standards for Teaching and Learning. Kentucky s Learning Goals and Academic Expectations Kentucky s Standards for Teaching and Learning Included in this section are the: Kentucky s Learning Goals and Academic Expectations Kentucky New Teacher Standards (Note: For your reference, the KDE website

More information

Guidelines for the Use of the Continuing Education Unit (CEU)

Guidelines for the Use of the Continuing Education Unit (CEU) Guidelines for the Use of the Continuing Education Unit (CEU) The UNC Policy Manual The essential educational mission of the University is augmented through a broad range of activities generally categorized

More information

BENG Simulation Modeling of Biological Systems. BENG 5613 Syllabus: Page 1 of 9. SPECIAL NOTE No. 1:

BENG Simulation Modeling of Biological Systems. BENG 5613 Syllabus: Page 1 of 9. SPECIAL NOTE No. 1: BENG 5613 Syllabus: Page 1 of 9 BENG 5613 - Simulation Modeling of Biological Systems SPECIAL NOTE No. 1: Class Syllabus BENG 5613, beginning in 2014, is being taught in the Spring in both an 8- week term

More information

On Human Computer Interaction, HCI. Dr. Saif al Zahir Electrical and Computer Engineering Department UBC

On Human Computer Interaction, HCI. Dr. Saif al Zahir Electrical and Computer Engineering Department UBC On Human Computer Interaction, HCI Dr. Saif al Zahir Electrical and Computer Engineering Department UBC Human Computer Interaction HCI HCI is the study of people, computer technology, and the ways these

More information

A R "! I,,, !~ii ii! A ow ' r.-ii ' i ' JA' V5, 9. MiN, ;

A R ! I,,, !~ii ii! A ow ' r.-ii ' i ' JA' V5, 9. MiN, ; A R "! I,,, r.-ii ' i '!~ii ii! A ow ' I % i o,... V. 4..... JA' i,.. Al V5, 9 MiN, ; Logic and Language Models for Computer Science Logic and Language Models for Computer Science HENRY HAMBURGER George

More information

US and Cross-National Policies, Practices, and Preparation

US and Cross-National Policies, Practices, and Preparation US and Cross-National Policies, Practices, and Preparation Studies in Educational Leadership VOLUME 12 Series Editor Kenneth A. Leithwood, OISE, University of Toronto, Canada Editorial Board Christopher

More information

1 Use complex features of a word processing application to a given brief. 2 Create a complex document. 3 Collaborate on a complex document.

1 Use complex features of a word processing application to a given brief. 2 Create a complex document. 3 Collaborate on a complex document. National Unit specification General information Unit code: HA6M 46 Superclass: CD Publication date: May 2016 Source: Scottish Qualifications Authority Version: 02 Unit purpose This Unit is designed to

More information

Communication and Cybernetics 17

Communication and Cybernetics 17 Communication and Cybernetics 17 Editors: K. S. Fu W. D. Keidel W. J. M. Levelt H. Wolter Communication and Cybernetics Editors: K.S.Fu, W.D.Keidel, W.1.M.Levelt, H.Wolter Vol. Vol. 2 Vol. 3 Vol. 4 Vol.

More information

Document number: 2013/ Programs Committee 6/2014 (July) Agenda Item 42.0 Bachelor of Engineering with Honours in Software Engineering

Document number: 2013/ Programs Committee 6/2014 (July) Agenda Item 42.0 Bachelor of Engineering with Honours in Software Engineering Document number: 2013/0006139 Programs Committee 6/2014 (July) Agenda Item 42.0 Bachelor of Engineering with Honours in Software Engineering Program Learning Outcomes Threshold Learning Outcomes for Engineering

More information

ECE-492 SENIOR ADVANCED DESIGN PROJECT

ECE-492 SENIOR ADVANCED DESIGN PROJECT ECE-492 SENIOR ADVANCED DESIGN PROJECT Meeting #3 1 ECE-492 Meeting#3 Q1: Who is not on a team? Q2: Which students/teams still did not select a topic? 2 ENGINEERING DESIGN You have studied a great deal

More information

AUTONOMY. in the Law

AUTONOMY. in the Law AUTONOMY in the Law Ius Gentium Comparative Perspectives on Law and Justice VOLUME 1 Series Editor Mortimer Sellers (University of Baltimore) Board of Editors Myroslava Antonovych (Kyiv-Mohyla Academy)

More information

Guidelines for Writing an Internship Report

Guidelines for Writing an Internship Report Guidelines for Writing an Internship Report Master of Commerce (MCOM) Program Bahauddin Zakariya University, Multan Table of Contents Table of Contents... 2 1. Introduction.... 3 2. The Required Components

More information

Digital Fabrication and Aunt Sarah: Enabling Quadratic Explorations via Technology. Michael L. Connell University of Houston - Downtown

Digital Fabrication and Aunt Sarah: Enabling Quadratic Explorations via Technology. Michael L. Connell University of Houston - Downtown Digital Fabrication and Aunt Sarah: Enabling Quadratic Explorations via Technology Michael L. Connell University of Houston - Downtown Sergei Abramovich State University of New York at Potsdam Introduction

More information

Language Arts Methods

Language Arts Methods Language Arts Methods EDEE 424 Block 2 Fall 2015 Wednesdays, 2:00-3:20 pm On Campus, Laboratory Building E-132 & Online at Laulima.com Dr. Mary F. Heller Professor & Chair UHWO Division of Education mfheller@hawaii.edu

More information

Indiana Collaborative for Project Based Learning. PBL Certification Process

Indiana Collaborative for Project Based Learning. PBL Certification Process Indiana Collaborative for Project Based Learning ICPBL Certification mission is to PBL Certification Process ICPBL Processing Center c/o CELL 1400 East Hanna Avenue Indianapolis, IN 46227 (317) 791-5702

More information

Proof Theory for Syntacticians

Proof Theory for Syntacticians Department of Linguistics Ohio State University Syntax 2 (Linguistics 602.02) January 5, 2012 Logics for Linguistics Many different kinds of logic are directly applicable to formalizing theories in syntax

More information

Syllabus for Philosophy of Mathematics Thomas Donaldson; Winter Quarter, 2015

Syllabus for Philosophy of Mathematics Thomas Donaldson; Winter Quarter, 2015 Syllabus for Philosophy of Mathematics Thomas Donaldson; Winter Quarter, 2015 Basic Information Course Numbers: PHIL 162, MATH 162, PHIL 262. Instructor: Thomas Donaldson Email: tmedonaldson@gmail.com

More information

Highlighting and Annotation Tips Foundation Lesson

Highlighting and Annotation Tips Foundation Lesson English Highlighting and Annotation Tips Foundation Lesson About this Lesson Annotating a text can be a permanent record of the reader s intellectual conversation with a text. Annotation can help a reader

More information

What is PDE? Research Report. Paul Nichols

What is PDE? Research Report. Paul Nichols What is PDE? Research Report Paul Nichols December 2013 WHAT IS PDE? 1 About Pearson Everything we do at Pearson grows out of a clear mission: to help people make progress in their lives through personalized

More information

EDUCATION IN THE INDUSTRIALISED COUNTRIES

EDUCATION IN THE INDUSTRIALISED COUNTRIES EDUCATION IN THE INDUSTRIALISED COUNTRIES PLAN EUROPE 2000 PUBLISHED UNDER THE AUSPICES OF THE EUROPEAN CULTURAL FOUNDATION PROJECT 1 EDUCATING MAN FOR THE XXIst CENTURY Volume 5 "EDUCATION IN THE INDUSTRIALISED

More information

ED487: Methods for Teaching EC-6 Social Studies, Language Arts and Fine Arts

ED487: Methods for Teaching EC-6 Social Studies, Language Arts and Fine Arts ED487: Methods for Teaching EC-6 Social Studies, Language Arts and Fine Arts Fall 2010 Thursdays 4:00-6:45 Texas A&M University-Texarkana Room Mrs. Sara Langford, Instructor Email: sara.langford@tamut.edu

More information

PAGE(S) WHERE TAUGHT If sub mission ins not a book, cite appropriate location(s))

PAGE(S) WHERE TAUGHT If sub mission ins not a book, cite appropriate location(s)) Ohio Academic Content Standards Grade Level Indicators (Grade 11) A. ACQUISITION OF VOCABULARY Students acquire vocabulary through exposure to language-rich situations, such as reading books and other

More information

THE DEPARTMENT OF DEFENSE HIGH LEVEL ARCHITECTURE. Richard M. Fujimoto

THE DEPARTMENT OF DEFENSE HIGH LEVEL ARCHITECTURE. Richard M. Fujimoto THE DEPARTMENT OF DEFENSE HIGH LEVEL ARCHITECTURE Judith S. Dahmann Defense Modeling and Simulation Office 1901 North Beauregard Street Alexandria, VA 22311, U.S.A. Richard M. Fujimoto College of Computing

More information

Pre-vocational Education in Germany and China

Pre-vocational Education in Germany and China Pre-vocational Education in Germany and China Jun Li Pre-vocational Education in Germany and China A Comparison of Curricula and Its Implications Jun Li Tongji University, Shanghai, People s Republic of

More information

Mathematics subject curriculum

Mathematics subject curriculum Mathematics subject curriculum Dette er ei omsetjing av den fastsette læreplanteksten. Læreplanen er fastsett på Nynorsk Established as a Regulation by the Ministry of Education and Research on 24 June

More information

Self Study Report Computer Science

Self Study Report Computer Science Computer Science undergraduate students have access to undergraduate teaching, and general computing facilities in three buildings. Two large classrooms are housed in the Davis Centre, which hold about

More information

University of Groningen. Systemen, planning, netwerken Bosman, Aart

University of Groningen. Systemen, planning, netwerken Bosman, Aart University of Groningen Systemen, planning, netwerken Bosman, Aart IMPORTANT NOTE: You are advised to consult the publisher's version (publisher's PDF) if you wish to cite from it. Please check the document

More information

The Ohio State University Library System Improvement Request,

The Ohio State University Library System Improvement Request, The Ohio State University Library System Improvement Request, 2005-2009 Introduction: A Cooperative System with a Common Mission The University, Moritz Law and Prior Health Science libraries have a long

More information

CAAP. Content Analysis Report. Sample College. Institution Code: 9011 Institution Type: 4-Year Subgroup: none Test Date: Spring 2011

CAAP. Content Analysis Report. Sample College. Institution Code: 9011 Institution Type: 4-Year Subgroup: none Test Date: Spring 2011 CAAP Content Analysis Report Institution Code: 911 Institution Type: 4-Year Normative Group: 4-year Colleges Introduction This report provides information intended to help postsecondary institutions better

More information

HDR Presentation of Thesis Procedures pro-030 Version: 2.01

HDR Presentation of Thesis Procedures pro-030 Version: 2.01 HDR Presentation of Thesis Procedures pro-030 To be read in conjunction with: Research Practice Policy Version: 2.01 Last amendment: 02 April 2014 Next Review: Apr 2016 Approved By: Academic Board Date:

More information

Intellectual Property

Intellectual Property Intellectual Property Section: Chapter: Date Updated: IV: Research and Sponsored Projects 4 December 7, 2012 Policies governing intellectual property related to or arising from employment with The University

More information

International Business BADM 455, Section 2 Spring 2008

International Business BADM 455, Section 2 Spring 2008 International Business BADM 455, Section 2 Spring 2008 Call #: 11947 Class Meetings: 12:00 12:50 pm, Monday, Wednesday & Friday Credits Hrs.: 3 Room: May Hall, room 309 Instruct or: Rolf Butz Office Hours:

More information

Rules of Procedure for Approval of Law Schools

Rules of Procedure for Approval of Law Schools Rules of Procedure for Approval of Law Schools Table of Contents I. Scope and Authority...49 Rule 1: Scope and Purpose... 49 Rule 2: Council Responsibility and Authority with Regard to Accreditation Status...

More information

The Conversational User Interface

The Conversational User Interface The Conversational User Interface Ronald Kaplan Nuance Sunnyvale NL/AI Lab Department of Linguistics, Stanford May, 2013 ron.kaplan@nuance.com GUI: The problem Extensional 2 CUI: The solution Intensional

More information

ED : Methods for Teaching EC-6 Social Studies, Language Arts and Fine Arts

ED : Methods for Teaching EC-6 Social Studies, Language Arts and Fine Arts ED487.001 80166: Methods for Teaching EC-6 Social Studies, Language Arts and Fine Arts Spring 2012 Mondays 4:00-6:45 1/23/2012 through 5/07/2012 Location: Pleasant Grove Intermediate School Room 310 (Red

More information

A Case Study: News Classification Based on Term Frequency

A Case Study: News Classification Based on Term Frequency A Case Study: News Classification Based on Term Frequency Petr Kroha Faculty of Computer Science University of Technology 09107 Chemnitz Germany kroha@informatik.tu-chemnitz.de Ricardo Baeza-Yates Center

More information

ACADEMIC AFFAIRS GUIDELINES

ACADEMIC AFFAIRS GUIDELINES ACADEMIC AFFAIRS GUIDELINES Section 8: General Education Title: General Education Assessment Guidelines Number (Current Format) Number (Prior Format) Date Last Revised 8.7 XIV 09/2017 Reference: BOR Policy

More information

Master Program: Strategic Management. Master s Thesis a roadmap to success. Innsbruck University School of Management

Master Program: Strategic Management. Master s Thesis a roadmap to success. Innsbruck University School of Management Master Program: Strategic Management Department of Strategic Management, Marketing & Tourism Innsbruck University School of Management Master s Thesis a roadmap to success Index Objectives... 1 Topics...

More information

PHYSICS 40S - COURSE OUTLINE AND REQUIREMENTS Welcome to Physics 40S for !! Mr. Bryan Doiron

PHYSICS 40S - COURSE OUTLINE AND REQUIREMENTS Welcome to Physics 40S for !! Mr. Bryan Doiron PHYSICS 40S - COURSE OUTLINE AND REQUIREMENTS Welcome to Physics 40S for 2016-2017!! Mr. Bryan Doiron The course covers the following topics (time permitting): Unit 1 Kinematics: Special Equations, Relative

More information

Modeling user preferences and norms in context-aware systems

Modeling user preferences and norms in context-aware systems Modeling user preferences and norms in context-aware systems Jonas Nilsson, Cecilia Lindmark Jonas Nilsson, Cecilia Lindmark VT 2016 Bachelor's thesis for Computer Science, 15 hp Supervisor: Juan Carlos

More information

Some Principles of Automated Natural Language Information Extraction

Some Principles of Automated Natural Language Information Extraction Some Principles of Automated Natural Language Information Extraction Gregers Koch Department of Computer Science, Copenhagen University DIKU, Universitetsparken 1, DK-2100 Copenhagen, Denmark Abstract

More information

EDIT 576 DL1 (2 credits) Mobile Learning and Applications Fall Semester 2014 August 25 October 12, 2014 Fully Online Course

EDIT 576 DL1 (2 credits) Mobile Learning and Applications Fall Semester 2014 August 25 October 12, 2014 Fully Online Course GEORGE MASON UNIVERSITY COLLEGE OF EDUCATION AND HUMAN DEVELOPMENT GRADUATE SCHOOL OF EDUCATION INSTRUCTIONAL DESIGN AND TECHNOLOGY PROGRAM EDIT 576 DL1 (2 credits) Mobile Learning and Applications Fall

More information

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur Module 12 Machine Learning 12.1 Instructional Objective The students should understand the concept of learning systems Students should learn about different aspects of a learning system Students should

More information

Agent-Based Software Engineering

Agent-Based Software Engineering Agent-Based Software Engineering Learning Guide Information for Students 1. Description Grade Module Máster Universitario en Ingeniería de Software - European Master on Software Engineering Advanced Software

More information

Intension, Attitude, and Tense Annotation in a High-Fidelity Semantic Representation

Intension, Attitude, and Tense Annotation in a High-Fidelity Semantic Representation Intension, Attitude, and Tense Annotation in a High-Fidelity Semantic Representation Gene Kim and Lenhart Schubert Presented by: Gene Kim April 2017 Project Overview Project: Annotate a large, topically

More information

Last Editorial Change:

Last Editorial Change: POLICY ON SCHOLARLY INTEGRITY (Pursuant to the Framework Agreement) University Policy No.: AC1105 (B) Classification: Academic and Students Approving Authority: Board of Governors Effective Date: December/12

More information

b) Allegation means information in any form forwarded to a Dean relating to possible Misconduct in Scholarly Activity.

b) Allegation means information in any form forwarded to a Dean relating to possible Misconduct in Scholarly Activity. University Policy University Procedure Instructions/Forms Integrity in Scholarly Activity Policy Classification Research Approval Authority General Faculties Council Implementation Authority Provost and

More information

PROMOTION MANAGEMENT. Business 1585 TTh - 2:00 p.m. 3:20 p.m., 108 Biddle Hall. Fall Semester 2012

PROMOTION MANAGEMENT. Business 1585 TTh - 2:00 p.m. 3:20 p.m., 108 Biddle Hall. Fall Semester 2012 PROMOTION MANAGEMENT Business 1585 TTh - 2:00 p.m. 3:20 p.m., 108 Biddle Hall Fall Semester 2012 Instructor: Professor Skip Glenn Office: 133C Biddle Hall Phone: 269-2695; Fax: 269-7255 Hours: 11:00 a.m.-12:00

More information

English Language Arts Summative Assessment

English Language Arts Summative Assessment English Language Arts Summative Assessment 2016 Paper-Pencil Test Audio CDs are not available for the administration of the English Language Arts Session 2. The ELA Test Administration Listening Transcript

More information

Mater Dei Institute of Education A College of Dublin City University

Mater Dei Institute of Education A College of Dublin City University MDI Response to Better Literacy and Numeracy: Page 1 of 12 Mater Dei Institute of Education A College of Dublin City University The Promotion of Literacy in the Institute s Initial Teacher Education Programme

More information

Compositional Semantics

Compositional Semantics Compositional Semantics CMSC 723 / LING 723 / INST 725 MARINE CARPUAT marine@cs.umd.edu Words, bag of words Sequences Trees Meaning Representing Meaning An important goal of NLP/AI: convert natural language

More information

A Study of Metacognitive Awareness of Non-English Majors in L2 Listening

A Study of Metacognitive Awareness of Non-English Majors in L2 Listening ISSN 1798-4769 Journal of Language Teaching and Research, Vol. 4, No. 3, pp. 504-510, May 2013 Manufactured in Finland. doi:10.4304/jltr.4.3.504-510 A Study of Metacognitive Awareness of Non-English Majors

More information

Visual CP Representation of Knowledge

Visual CP Representation of Knowledge Visual CP Representation of Knowledge Heather D. Pfeiffer and Roger T. Hartley Department of Computer Science New Mexico State University Las Cruces, NM 88003-8001, USA email: hdp@cs.nmsu.edu and rth@cs.nmsu.edu

More information

Rule-based Expert Systems

Rule-based Expert Systems Rule-based Expert Systems What is knowledge? is a theoretical or practical understanding of a subject or a domain. is also the sim of what is currently known, and apparently knowledge is power. Those who

More information

LITERACY ACROSS THE CURRICULUM POLICY

LITERACY ACROSS THE CURRICULUM POLICY "Pupils should be taught in all subjects to express themselves correctly and appropriately and to read accurately and with understanding." QCA Use of Language across the Curriculum "Thomas Estley Community

More information

Palomar College Curriculum Committee Meeting Agenda Wednesday March 1, 2017 Room AA 140 at 3:00 pm

Palomar College Curriculum Committee Meeting Agenda Wednesday March 1, 2017 Room AA 140 at 3:00 pm I. Call to Order Palomar College Curriculum Committee Meeting Agenda Wednesday March 1, 2017 Room AA 140 at 3:00 pm II. Announcements III. Minutes of the February 1, 2017 Curriculum Committee Meeting (Attachment

More information

Major Milestones, Team Activities, and Individual Deliverables

Major Milestones, Team Activities, and Individual Deliverables Major Milestones, Team Activities, and Individual Deliverables Milestone #1: Team Semester Proposal Your team should write a proposal that describes project objectives, existing relevant technology, engineering

More information

Unit 3. Design Activity. Overview. Purpose. Profile

Unit 3. Design Activity. Overview. Purpose. Profile Unit 3 Design Activity Overview Purpose The purpose of the Design Activity unit is to provide students with experience designing a communications product. Students will develop capability with the design

More information

HCI 440: Introduction to User-Centered Design Winter Instructor Ugochi Acholonu, Ph.D. College of Computing & Digital Media, DePaul University

HCI 440: Introduction to User-Centered Design Winter Instructor Ugochi Acholonu, Ph.D. College of Computing & Digital Media, DePaul University Instructor Ugochi Acholonu, Ph.D. College of Computing & Digital Media, DePaul University Office: CDM 515 Email: uacholon@cdm.depaul.edu Skype Username: uacholonu Office Phone: 312-362-5775 Office Hours:

More information

MMOG Subscription Business Models: Table of Contents

MMOG Subscription Business Models: Table of Contents DFC Intelligence DFC Intelligence Phone 858-780-9680 9320 Carmel Mountain Rd Fax 858-780-9671 Suite C www.dfcint.com San Diego, CA 92129 MMOG Subscription Business Models: Table of Contents November 2007

More information

Critical Thinking in Everyday Life: 9 Strategies

Critical Thinking in Everyday Life: 9 Strategies Critical Thinking in Everyday Life: 9 Strategies Most of us are not what we could be. We are less. We have great capacity. But most of it is dormant; most is undeveloped. Improvement in thinking is like

More information

CWIS 23,3. Nikolaos Avouris Human Computer Interaction Group, University of Patras, Patras, Greece

CWIS 23,3. Nikolaos Avouris Human Computer Interaction Group, University of Patras, Patras, Greece The current issue and full text archive of this journal is available at wwwemeraldinsightcom/1065-0741htm CWIS 138 Synchronous support and monitoring in web-based educational systems Christos Fidas, Vasilios

More information

Guidelines for Project I Delivery and Assessment Department of Industrial and Mechanical Engineering Lebanese American University

Guidelines for Project I Delivery and Assessment Department of Industrial and Mechanical Engineering Lebanese American University Guidelines for Project I Delivery and Assessment Department of Industrial and Mechanical Engineering Lebanese American University Approved: July 6, 2009 Amended: July 28, 2009 Amended: October 30, 2009

More information

Diploma in Library and Information Science (Part-Time) - SH220

Diploma in Library and Information Science (Part-Time) - SH220 Diploma in Library and Information Science (Part-Time) - SH220 1. Objectives The Diploma in Library and Information Science programme aims to prepare students for professional work in librarianship. The

More information

ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY DOWNLOAD EBOOK : ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY PDF

ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY DOWNLOAD EBOOK : ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY PDF Read Online and Download Ebook ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY DOWNLOAD EBOOK : ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY PDF Click link bellow and free register to download

More information

Tap vs. Bottled Water

Tap vs. Bottled Water Tap vs. Bottled Water CSU Expository Reading and Writing Modules Tap vs. Bottled Water Student Version 1 CSU Expository Reading and Writing Modules Tap vs. Bottled Water Student Version 2 Name: Block:

More information

Advances in Mathematics Education

Advances in Mathematics Education Advances in Mathematics Education Series Editors: Gabriele Kaiser, University of Hamburg, Hamburg, Germany Bharath Sriraman, The University of Montana, Missoula, MT, USA International Editorial Board:

More information

I. Standards for Promotion A. PROFESSOR

I. Standards for Promotion A. PROFESSOR 1 Western Kentucky University Department of Library Technical Services Rank and Promotion Guidelines Approved 1991; Rev. Dec. 2003; 2005; Mar. 2009; Feb. 2012; Mar. 2012; May 2013; June 2013; April 2016

More information

Degree Qualification Profiles Intellectual Skills

Degree Qualification Profiles Intellectual Skills Degree Qualification Profiles Intellectual Skills Intellectual Skills: These are cross-cutting skills that should transcend disciplinary boundaries. Students need all of these Intellectual Skills to acquire

More information

Foundations of Knowledge Representation in Cyc

Foundations of Knowledge Representation in Cyc Foundations of Knowledge Representation in Cyc Why use logic? CycL Syntax Collections and Individuals (#$isa and #$genls) Microtheories This is an introduction to the foundations of knowledge representation

More information

A GENERIC SPLIT PROCESS MODEL FOR ASSET MANAGEMENT DECISION-MAKING

A GENERIC SPLIT PROCESS MODEL FOR ASSET MANAGEMENT DECISION-MAKING A GENERIC SPLIT PROCESS MODEL FOR ASSET MANAGEMENT DECISION-MAKING Yong Sun, a * Colin Fidge b and Lin Ma a a CRC for Integrated Engineering Asset Management, School of Engineering Systems, Queensland

More information

Ontological spine, localization and multilingual access

Ontological spine, localization and multilingual access Start Ontological spine, localization and multilingual access Some reflections and a proposal New Perspectives on Subject Indexing and Classification in an International Context International Symposium

More information

Digital Technology Merit Badge Workbook

Digital Technology Merit Badge Workbook Merit Badge Workbook This workbook can help you but you still need to read the merit badge pamphlet. This Workbook can help you organize your thoughts as you prepare to meet with your merit badge counselor.

More information

Course Syllabus Chem 482: Chemistry Seminar

Course Syllabus Chem 482: Chemistry Seminar Course Syllabus Chem 482: Chemistry Seminar Course Name: Chem 482 Chemistry Seminar 2 credits, Communication Intensive (see course description below) Prerequisites: Chem 482. Location: Reichardt Building

More information

ACCREDITATION STANDARDS

ACCREDITATION STANDARDS ACCREDITATION STANDARDS Description of the Profession Interpretation is the art and science of receiving a message from one language and rendering it into another. It involves the appropriate transfer

More information