How does a box work?.

Slides:



Advertisements
Similar presentations
Model building. Primary purpose of modelling Quantitative and qualitative external models Model construction versus model use.
Advertisements

Observation/Data  What is an observation?  Collecting data to help solve a problem using your 5 senses  What is an inference?  A conclusion formed.
An Introduction to Physics
color code vocabulary words and definitions
Chapter 14 Simulation. 2 What Is Simulation?  Simulation: A model of a complex system and the experimental manipulation of the model to observe the results.
Artificial Intelligence Inference in first-order logic Fall 2008 professor: Luigi Ceccaroni.
A Physics Toolkit Chapter Physics Energy, matter and their relationship Understanding the physical world Careers –Scientists, astronomers, engineers,
Solving Equations = 4x – 5(6x – 10) -132 = 4x – 30x = -26x = -26x 7 = x.
WHAT STUDENTS KNOW AND CAN DO OECD Test for Schools (based on PISA)--Mathematics FAIRFAX COUNTY PUBLIC SCHOOLS APRIL 2013.
Section 1: Significant Figures
Rule Based Systems Alford Academy Business Education and Computing
Case Studies Class 5. Computational Chemistry Structure of molecules and their reactivities Two major areas –molecular mechanics –electronic structure.
Why does the box stop? F=MA.
Commonsense Reasoning and Science. Understanding variants What would happen if: There were no test tubes? The test tubes were right side up? The test.
The Islamic University of Gaza Faculty of Engineering Numerical Analysis ECIV 3306 Introduction.
Grade 8 – Module 5 Module Focus Session
Chapter 14 Simulation. 2 What Is Simulation?  Simulation: A model of a complex system and the experimental manipulation of the model to observe the results.
SCIENTIFIC SKILLS SCIENCE PROCESS SKILLS MANIPULATIVE SKILLS Observing Classifying Measuring and using numbers Making inferences Predicting Communicating.
Introduction to Biology Fall Taking Cornell Notes Biology Introduction What is science? Answer or Definition for the Question/Main Idea.
Taxonomies and Laws Lecture 10. Taxonomies and Laws Taxonomies enumerate scientifically relevant classes and organize them into a hierarchical structure,
Objective- To recognize symbols, variables, and types of sentences used in algebra. Equalities Inequalities = Equals- is the same as Congruent- same size.
1 Issues in Assessment in Higher Education: Science Higher Education Forum on Scientific Competencies Medellin-Colombia Nov 2-4, 2005 Dr Hans Wagemaker.
Objectives: Write equations that represent real-world situations. Solve 2-step equations. Standards Addressed: C: Create and interpret equations.
NUS CS5247 Deadlock-Free and Collision-Free Coordination of Two Robot Manipulators By Patrick A. O’Donnell and Tomás Lozano-Pérez MIT Artificial Intelligence.
LEARNING DISABILITIES IMPACTING MATHEMATICS Ann Morrison, Ph.D.
Science & Technology Ch.1.
WORD WALL Sections 1 – 3 Key Terms & Info. 1. WORD WALL Thinking Like a Scientist!!! Section 1 Pages
The Scientific Method. What is chemistry? The study of matter, its structure, properties, and composition, and the changes it undergoes.
Introduction to Earth Science Section 2 Section 2: Science as a Process Preview Key Ideas Behavior of Natural Systems Scientific Methods Scientific Measurements.
National Council of Teachers of Mathematics Principles and Standards for grades pre-K-2.
The Language of Science.  Hypothesis: a prediction that can be tested; an educated guess base on observations and prior knowledge  Theory: a well tested.
Becoming a Scientist Practicing with Skills and Tools.
Accelerated Motion. Newton’s Second Law of Motion (Law of Force)- Net force acting on an object causes the object to accelerate in the direction of the.
LEARNING DISABILITIES IMPACTING MATHEMATICS Ann Morrison, Ph.D.
2.6 Problem solving strategies. Problem-solving skills are essential to success in physics. the ability to apply broad physical principles, usually represented.
Rational Exponents Use the rules for combining fractions when the exponents are rational numbers X 2 3 X 1 2 (()) = X = X = X 7.
Introduction to ScienceSection 1 Section 1: The Nature of Science Preview Key Ideas Bellringer How Science Takes Place The Branches of Science Scientific.
Scientific Method Making observations, doing experiments, and creating models or theories to try to explain your results or predict new answers form the.
Today: (Ch. 3) Tomorrow: (Ch. 4) Apparent weight Friction Free Fall Air Drag and Terminal Velocity Forces and Motion in Two and Three Dimensions.
Geometry 7-R Unit 7 Area Review Problems
TEERAWIT TINPRAPA M.Ed(mathematics education).  Pre-K-2  Grades 3-5  Grades 6-8  Grades 9-12.
Scientific Method.
Nature of Science.
Assessment Fall Quarter 2007.
BELL WORK 8/8/11 What are the 5 Steps to the Scientific Method?
Section 2: Science as a Process
a) Identify what is mechanics / statics.
Section 1: The Nature of Science
Strengths and Weaknesses
Introduction Artificial Intelligent.
What is Operations Research?
Introduction.
Introduction.
Devil physics The baddest class on campus AP Physics
What is Science? A method for studying the natural world.
Qualitative Observation
Ernest Davis Automating Commonsense Reasoning for Science
Deep and Wide: Domain & Range
#1 Make sense of problems and persevere in solving them
Scientific Method—designing an experiment.
1: multiple representations
Scientific Method—designing an experiment.
전문가 시스템(Expert Systems)
1.3 Classifying Engineering Tasks
Spatial Discretisation
Key Ideas How do scientists explore the world?
Solving Systems of Equations By Substitution
Assessment Fall Quarter 2007.
Trigonometric Equations
Presentation transcript:

How does a box work?

Starting state: Objects OO and box B are at L. Goal: Objects OO are at M. Plan: for (O in OO) putin(O,B); move(B,L,M); repeat{choose(OX|removable(OX,B)), takeout(OX,B)} until(empty(B)).

STRIPS representation Action: putin(O,B,L) Preconditions: at(O,L), at(B,L), box(B) Effects: in(O,B), ~at(O,L) Action: move(B,L,M) Preconditions: at(B,L) Effects: at(B,M), ~at(B,L) Action: takeout(O,B,L) Preconditions: in(O,B), at(B,L) Effects: at(O,L), ~in(O,B)

Limitations of STRIPS representation No geometry. Discrete atomic actions. Does not generalize or share knowledge with similar situations.

Scientific Computing Equations: Newton’s laws, impact model. Boundary conditions: Shapes of objects External forces on manipulators. Solve (numerically) for trajectories.

Scientific Computing: Limitations Requires exact specifications for shape and action. Cannot handle incomplete knowledge or generalization. Unstable. Answer is not reliable. Generates lots of useless intermediate states Only supports prediction, not other types of reasoning: postdiction, diagnosis, design.

Knowledge-based qualitative physical reasoning Representation for partial specifications of shape and action: 3D shape, continuous time Rules to characterize dynamics of domain sufficient to support commonsense inferences Effective reasoning strategies for different tasks.

Variants Objects can be carried on a tray but greater care is needed. Large objects can be carried in a milkcrate, but small objects will fall through. A box with a lid is safe against objects fallling out in transit. etc. Share knowledge.

Sample rule [holds(S,openBox(B,INTERIOR,TOP)) ^ forall(O in OO) [holds(S,in(place(O),INTERIOR)) ^ value(S,zeroVelocity(O))] ^ long([S,S1]) ^ throughout([S,S1], isolated(OO,B)) ^ throughout([S,S1], motionless(B))] => holds(S1,stable(OO U {B})) ^ forall(O in OO) holds(S1,in(place(O),INTERIOR))

And when we’ve finished boxes How do pails and dippers work?