neuro 240 lecture 19 - problem solving

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/18

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

problem

consists of some initial state in which a person begins and a goal state that is to be obtained, PLUS a non-obviosu way of getting from the initial to goal state

2
New cards

name the 2 types of problems

  1. well-structured/defined — specified starting conditions, goal, and methods to achieve the goal

  2. ill-structured/defined — some aspects are not completely specified

3
New cards

which example matches what problem: geometry proofs, choosing a career

well-structured = geometry proofs

ill-structured = choosing a career

4
New cards

the stages of problem solving defined by polya (6)

  1. form a representation

  2. construct a plan

  3. execute said plan

  4. check/evaluate

  5. reformulate

  6. repeat

5
New cards

name the 5 problem solving concepts

  1. initial/goal states

  2. intermediate states

  3. representation of the problem

  4. operators (actions that move between states)

  5. problem space (range of possible states and operators) — only some get you to the goal state

6
New cards

isomorphs

equivalent problems, different representations

  • analogy — retrieving a representation of a problem from memory that is similar to the problem you’re currently facing

7
New cards

what did the candle problem show us?

we have a fixed idea for a certain items usage in our heads that can hinder our ability to solve a problem — thinking out of the box is harder to do

8
New cards

top-down perceptions

when we look at a new problem, we tend to encode it in a way consistent with long-term memory

9
New cards

functional fixedness

see an object as having only a fixed, familiar function

  • seen in the mayer’s rope problem

10
New cards

algorithms

completely specified sequence of steps that is guaranteed to produce an answer — slow and laborious but provides the right answer

11
New cards

heuristics

short cut/rule of thumb — quick and easy but doesnt guarantee the right answer

12
New cards

means end analysis

identifying the largest difference between current state and goal state and reducing it

13
New cards

subgoal in terms of means end analysis

a step created to reduce a major difference

14
New cards

operator in terms of means end analysis

a action used to reduce a difference

15
New cards

what if an operator cannot be used

create a subgoal to remove the obstacle

16
New cards

working backward is useful for what

well-defined problems (maze, geometry)

17
New cards

hill climbing

at any point, select the operator that moves you closest to the goal state

  • the new state should be more similar to the goal, you cna never choose an opeator that moves you away

18
New cards

true or false: hill climbing works for ALL problems

false! not all problems can be solved by moving closer to the goals (linearly)

19
New cards