Problem-Solving Fundamentals
Problem-solving is goal-directed thinking: you recognize an obstacle between where you are and where you want to be, then work to close that gap. Cognitive psychologists study it because it sits at the intersection of memory, reasoning, and decision-making.
This section covers the core process, the two main strategy types (algorithms and heuristics), specific heuristics you need to know, and how these strategies show up in real-world contexts.
Components of the Problem-Solving Process
Newell and Simon's classic framework describes problem-solving as moving through a problem space, from an initial state to a goal state, by applying operators (actions that change the state). In practice, that process breaks down into stages:
- Problem identification — Recognizing that a problem exists and defining it clearly. A vague problem ("something feels off with this data") needs to be sharpened before you can solve it.
- Goal setting — Establishing what a successful outcome looks like, including any constraints (deadlines, limited resources, ethical boundaries).
- Information gathering — Collecting relevant data and assessing what you already know versus what you still need.
- Strategy selection — Choosing an approach. This is where algorithms and heuristics come in.
- Implementation — Executing the chosen strategy while monitoring whether you're making progress.
- Evaluation — Checking whether the solution actually works. If it doesn't, you loop back to an earlier stage.
These stages aren't always linear. You'll often cycle between them, especially when your first approach fails.

Algorithms vs. Heuristics
These are the two broad categories of problem-solving strategies, and the distinction between them is one of the most testable concepts in this unit.
Algorithms are step-by-step procedures that, if followed correctly, guarantee a correct solution. Long division is a classic example: every time you follow the steps, you get the right answer. The trade-off is that algorithms can be slow and resource-intensive. Trying every possible combination to crack a 4-digit lock (10,000 combinations) is an algorithm. It will work, but it takes a while.
Heuristics are mental shortcuts that simplify a problem and let you reach a solution quickly, but without any guarantee of accuracy. They draw on past experience, pattern recognition, and intuition. Heuristics are how people actually solve most everyday problems, because we rarely have the time or cognitive resources to run a full algorithm.
The core trade-off: Algorithms sacrifice speed for accuracy. Heuristics sacrifice accuracy for speed. Neither is inherently better; the right choice depends on the situation.

Key Problem-Solving Heuristics
You need to know each of these heuristics, what makes them useful, and where they go wrong.
Availability heuristic — You judge how likely something is based on how easily examples come to mind. If you can quickly recall plane crashes from the news, you'll overestimate the probability of a crash. This heuristic is fast and often reasonable (common events are easier to recall), but it's biased toward vivid, recent, or emotionally charged information. That's why people tend to fear flying more than driving, even though driving is statistically far more dangerous.
Representativeness heuristic — You judge whether something belongs to a category based on how closely it matches your mental prototype of that category. If someone is described as quiet, detail-oriented, and loves books, you might guess "librarian" over "salesperson," even though salespeople vastly outnumber librarians. The problem here is base-rate neglect: you focus on how well the description fits the stereotype and ignore the actual statistical likelihood. This heuristic also leads people to see patterns in small samples that are really just random variation (the "hot hand" fallacy).
Anchoring and adjustment — You start with an initial value (the "anchor") and adjust from there to reach your estimate. In salary negotiations, the first number on the table heavily influences the final outcome, even if that number was arbitrary. The consistent finding is that people adjust insufficiently from the anchor. Tversky and Kahneman demonstrated this by having participants spin a rigged wheel showing either 10 or 65, then estimate the percentage of African countries in the UN. Those who saw 65 gave significantly higher estimates, even though the wheel was obviously random.
Means-ends analysis — You compare your current state to the goal state, identify the biggest difference, and create a subgoal to reduce that difference. Then you repeat. For example, if your goal is to write a research paper and the biggest gap is that you have no sources, your first subgoal becomes "find sources." Once that's done, you reassess. This heuristic is powerful for complex, multi-step problems, but it can lead you to focus on the most obvious gap rather than the most efficient path. Sometimes the best move actually increases the distance from the goal temporarily (like disassembling part of a puzzle to reassemble it correctly).
Applying Problem-Solving Strategies
Real-world problem-solving almost always involves a mix of algorithms and heuristics. Here's how that plays out across domains:
- Business decisions often rely on algorithmic approaches like cost-benefit analysis to provide a quantitative basis for choices. These are thorough but time-consuming, which is why executives also rely on heuristic "gut feelings" shaped by experience.
- Emergency medicine uses triage, a heuristic system that rapidly categorizes patients by severity. It's fast enough to save lives in a disaster, but occasionally misclassifies a patient's condition.
- Scientific research combines both: researchers use intuition and heuristics to generate hypotheses (where to look), then use algorithmic methods like controlled experiments and statistical testing to verify them.
- Personal finance blends budgeting algorithms (tracking income minus expenses) with heuristics like mental accounting, where you mentally assign money to categories ("this is my vacation fund") even though all dollars are technically interchangeable.
The pattern across all of these: heuristics help you navigate uncertainty and make fast decisions, while algorithms provide rigor when accuracy matters most. Strong problem-solvers know which tool fits the situation.