Problem Solving How do people solve problems? What factors influence the ways they solve different types of problems?

Slides:



Advertisements
Similar presentations
Artificial Intelligence
Advertisements

Presentation on Artificial Intelligence
Artificial Intelligence Presentation
1 CS 201 Compiler Construction Lecture 3 Data Flow Analysis.
Search in Python Chapter 3.
DAILY MATH REVIEW BASE TEN 3. Week 1 MONDAY Fill in the missing numbers
Linear Algebra 1.4. This is about writing equations, Drawing straight line graphs Solving simultaneously Substituting in values into equations Writing.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
UNINFORMED SEARCH Problem - solving agents Example : Romania  On holiday in Romania ; currently in Arad.  Flight leaves tomorrow from Bucharest.
©2005, Pearson Education/Prentice Hall CHAPTER 5 Experimental Strategies.
READY, GO! Hare and Snail Challenges. 1. What are some design considerations to make a fast robot? 2. What are some design considerations to make a slow.
Problem Solving and Creativity Chapter 11. Outline 1.The Problem-Solving Cycle 2.Types of Problems 1.Well-Structured Problems 2.Ill-Structured Problems.
Computer Simulation (1). 8 A (8) Initial State 44 Goal State B (5) C (3) A (8) B (5) C (3) Step 1 Step 2 Step 3 Step 4 Step 5 Step 6 Step 7.
Penn ESE Fall DeHon 1 ESE (ESE534): Computer Organization Day 19: March 26, 2007 Retime 1: Transformations.
Cognitive Processes PSY 334 Chapter 8 – Problem Solving May 21, 2003.
CS294-6 Reconfigurable Computing Day 16 October 15, 1998 Retiming.
Problem Solving. Well-defined problems –Much studied in AI –Requires search –Domain general heuristics for solving problems What about ill-defined problems?
Efficient Path Determining Robot RIT Computer Engineering Senior Design Project Jamie Greenberg Jason Torre October 26, 2004 A motorized robot will navigate.
To see, to move, to know HUM 201 Autumn 2005 Day 6.
Cognitive Processes PSY 334 Chapter 8 – Problem Solving.
PHY131H1F – Introduction to Physics I Class 2
Problem-solving when you are trying to a achieve a goal, but the solution is not immediately obvious e.g., 2 X 5 = ? –not a problem, solution is immediately.
Kunstmatige Intelligentie / RuG KI Reinforcement Learning Sander van Dijk.
Traveling Salesman Problem Continued. Heuristic 1 Ideas? –Go from depot to nearest delivery –Then to delivery closest to that –And so on until we are.
1 Problem Solving We view many situations in life as problems we need to solve Also, much of human behavior can be considered problem solving, even if.
SAT Algebra strategies By The Seamen. 2X+5=15 or 5X-54=130 How would you solve the following two equations? What would be the recommended strategy to.
Brute Force Search Depth-first or Breadth-first search
Addition and Subtraction of Integers
Structure of Language phonemes: basic speech soundsphonemes: basic speech sounds morphemes: smallest unit of language that contains meaningmorphemes: smallest.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Psychology: An Introduction Charles A. Morris & Albert A. Maisto © 2005 Prentice Hall Cognition and Language Chapter 7B.
Cognition and Language Chapter 7. Building Blocks of Thought Language –A flexible system of symbols that enables us to communicate our ideas, thoughts,
Thinking & Problem Solving
The Laws of Motion Chapter 4.
Representing Money Values in Different Ways Unit of Study: Money and Time Global Concept Guide: 3 of 5.
Psychology of Thinking: Embedding Artifice in Nature.
Connective Leadership
WHS AP Psychology Unit 6: Cognition Essential Task 6-2: Identify problem-solving techniques (algorithms and heuristics) as well as factors that influence.
 R + 3 > 4M + 6 < 10  T – 4 < 9Y – 11 ≤ 3  Two inequalities joined by the word “and” or the word “or”.
Working Backwards Finding Circumference From Area.
Properties of Light and Reflection
Motion. Motion- the change in the position of an object with respect to time and its reference point Motion is RELATIVE Reference point/ frame of reference:
1 Solving problems by searching 171, Class 2 Chapter 3.
Problem solving What is problem solving? Weak and strong methods.
RATE OF CHANGE AND DIRECT VARIATION
PROBLEM-SOLVING TECHNIQUES Rocky K. C. Chang November 10, 2015.
PROBLEM SOLVING. ALGORITHM Specific procedure that when used properly will always lead to the solution Ex: recipes, math formulas S P L O Y O C H Y G.
Chapter 2: Linear Motion Kinematics. Kinematics Kinematics is the science of describing the motion of objects using words, diagrams, numbers, graphs,
By J. Hoffmann and B. Nebel
Do Now  Why do you think the planets orbit the sun? (Like what causes them to travel in a circle around the sun?)
What will you learn? In this lesson, you will learn that any two factors and their product can be read as a comparison. You will learn how to make a comparison.
Unit 6: Cognition WHS AP Psychology
Unit 6 Probability.
Artificial Intelligence
Problem Solving A Major Category of Human Cognition
Solve: 1. 4<
Addition Strategies 2nd Grade Parent Help.
Distance & Displacement
Unit 7: Cognition AP Psychology
Year 1 Spring Block 2 : Place Value within 50
Blay Whitby 2003 Search Blay Whitby 2003
Matter.
Unit 7: Cognition AP Psychology
Cognitive Processes PSY 334
№96 сонли умумий ўрта мактабининг ўқитувчиси Эшанкулова феруза
6.1a The Net Change in Position, Displacement and Distance Traveled by a Moving Body Rita Korsunsky.
Progressive Deepening
Types of Errors And Error Analysis.
Position and speed as a function of time
Presentation transcript:

Problem Solving How do people solve problems? What factors influence the ways they solve different types of problems?

Problem Representation What kinds of information do we need to know in order to solve a problem? –Problem states: The status of all the various elements of a problem. –Operators: The valid ways you can manipulate the elements of a problem; also called the legal moves.

The Problem Space The problem space is the collection of all of the possible problem states and the operators that connect them. All problem spaces have at least two states: –Start state: The initial state of the problem –Goal state: The state you need to be in to deem the problem as “solved.”

What problem solving is. Problem solving is, psychologically, the process of finding a path through the problem space from the start state to the goal state. This path can only utilize legal operators to travel from one state to another. The study of problem solving today is the study of how people find this path.

Problem solving strategies Generate-and-test: a.k.a trial and error Working forward: Start at the start state and use operators that seem to be moving closer to the goal state. Working backwards: Start at the goal state and use the operators in reverse to move backwards to the start state. Hill climbing: Always use an operator that appears to take the largest step towards the goal state. Means-ends Analysis: Always take steps that reduce the distance between the current state and the goal state.