What makes a good question?

Research Methods — Week 1

Welcome

Research Methods

This module is about learning to do research honestly.

Two strands, woven together:

  1. Statistics — how to test claims with data
  2. Communication — how to present evidence so it can be trusted

Questions?

Submit questions anonymously throughout the session:

PollEv.com/geol

or text geol to 07480 781235

Top-voted questions rise to the top — we’ll address them at natural break points.

Two phases

Phase 1 (Weeks 1–4)

Scaffolded mini-project:

“Is UK biomass electricity carbon-neutral?”

Real data. Real ambiguity. Culminates in a peer-reviewed policy briefing — with a twist.

Phase 2 (Weeks 5–10)

Your investigation:

Choose a sustainable energy question. Design the study. Analyse the data. Write a 4-page policy report.

This is your summative assessment (30%).

What you already know

You’ve done GEOL1151 — you can code in Python, use Jupyter, work with data.

This module uses R instead of Python.

Why? R is built for statistics. The syntax is different, but the ideas are identical. You’ve done pre-term preparation to bridge the gap.

The scientific method

🎓 Concept block 1

What is science?

  • Not a body of facts
  • A process for reducing uncertainty
  • We never prove anything — we accumulate evidence

The cycle

flowchart LR
    A[Observation] --> B[Question]
    B --> C[Hypothesis]
    C --> D[Prediction]
    D --> E[Test]
    E --> F[Revise]
    F --> B
    style A fill:#2471a3,color:#fff
    style E fill:#c0392b,color:#fff

Observation → Question → Hypothesis → Prediction → Test → Revise

Two directions of reasoning

Deductive

General → Specific

If plate tectonics is correct, then we predict matching fossils on separated continents.

We test the prediction.

Inductive

Specific → General

We observe matching fossils on separated continents. We infer the continents were once joined.

We build toward a theory.

Wegener’s continental drift

  • 1912: Alfred Wegener proposes continents move
  • Right conclusion (they do move)
  • Wrong mechanism (he proposed centrifugal force)
  • Decades of resistance — then plate tectonics

The lesson: good science can survive a wrong mechanism. What matters is whether the evidence accumulates.

Testable or not?

✏️ Exercise 1

Instructions

I’ll show you some statements.

For each one, decide: Is this a testable hypothesis?

Think for 30 seconds, then discuss with your neighbour.

“The Earth is approximately 4.5 billion years old”

Testable — and extensively tested (radiometric dating, meteorite ages, lunar samples). One of the best-constrained numbers in geoscience.

“Earthquakes are caused by divine punishment”

Not testable as stated — no observable prediction that distinguishes this from natural causes.

“Wind turbines cause headaches in nearby residents”

Testable — but tricky. How do you control for the nocebo effect? Awareness bias? The design of the study matters enormously.

“CO₂ emissions from burning biomass should be counted as zero”

Testable? It depends.

  • What timescale?
  • What system boundary?
  • “Carbon-neutral” is partly a scientific claim and partly a policy choice.

This is the question that will drive the next four weeks.

Falsifiability

🎓 Concept block 2

Popper’s insight

We can never prove a theory.

We can only fail to disprove it.

Every test that could have disproven our hypothesis but didn’t makes us a little more confident — but never certain.

Confirmation bias

We naturally seek evidence for what we already believe.

This is not a character flaw — it’s how human cognition works.

Science is a set of tools for overcoming this tendency.

The Wason selection task

Each card has a letter on one side and a number on the other.

Rule: “If a card shows a vowel, then the other side has an even number.”

A

K

4

7

Which cards must you turn over to test the rule?

Cast your vote

PollEv.com/geol

text geol to 07480 781235

Why A and 7?

A ✓

K

4

7 ✓

  • A (vowel): if the other side is odd, the rule is broken
  • 7 (odd): if the other side is a vowel, the rule is broken
  • K (consonant): the rule says nothing about consonants
  • 4 (even): whether the other side is a vowel or not, nothing is disproved

Why is this hard?

Humans are wired to confirm, not disconfirm.

In this module, you’ll learn to:

  • Ask “what evidence would change my mind?”
  • Seek comparisons, not just supporting cases
  • Treat uncertainty as information, not failure

Meet R

🎓💻 Concept block 3

Why R?

You know Python (NumPy, Jupyter, pandas)

Same ideas. Different syntax.

R is built for statistics

  • t.test(), lm(), aov() — one line each
  • ggplot2 — the grammar of graphics
  • Built-in data manipulation

You’ll see why this matters starting in Week 2.

Live demo

🖥️ Switching to WebR

head(df) · summary(df) · plot(df$x, df$y)

The biomass question

✏️💬 Integrative exercise

The setup

The UK burns millions of tonnes of imported wood pellets for electricity.

Most come from forests in the southeastern United States.

Under international carbon accounting rules, the CO₂ released at the chimney is counted as zero.

Is that reasonable?

Work in pairs. You have 10 minutes.

  1. Write one testable hypothesis about biomass energy
  2. What data would you need to test it?
  3. What evidence would disprove your hypothesis?

What you came up with

Collect 3–4 examples from the room.

Wrap-up

Key points

  1. Science is a process for reducing uncertainty, not a collection of facts
  2. We test hypotheses by seeking disconfirmation, not confirmation
  3. The biomass question — “Is it carbon-neutral?” — is genuinely open, and the answer depends on choices you’ll learn to identify

Next time

Application session: “Meet the data (and Git)”

You’ll:

  • Load real UK energy data in WebR
  • Make your first plots
  • Set up your GitHub repo and make your first commit

If you haven’t done the pre-term preparation, do it before the next session.