Lesson Plan: The Lemon Battery Challenge
Subject Integration: Chemistry, Algebra, Data Analysis, and Computer Science
Focus: This project-based lesson moves beyond theory to the practical application of scientific and mathematical principles. You will build a real chemical battery, use algebra to model its performance, analyze the data you collect, and write a computer program to simulate its power.
Materials Needed
- From MEL Science Kits:
- MEL Chemistry "Corrosion" Kit (for the zinc-plated items)
- MEL Chemistry "Chemistry & Electricity" Kit (for alligator clips, copper wire/plates, and multimeter)
- Safety glasses and gloves
- Household Items:
- 3-4 fresh lemons (or potatoes/other acidic fruits)
- A knife and cutting board
- Paper towels
- Pen and paper (or a digital spreadsheet) for recording data
- Digital Resources:
- Computer with internet access
- Art of Problem Solving (AoPS) Prealgebra and Introduction to Algebra textbooks (for reference)
- Brilliant.org account (with access to Math, Science, Coding, and Data courses)
Lesson Procedure
Part 1: The Spark - Inquiry & Background (30 minutes)
The goal of this section is to build curiosity and review the core concepts before you start building.
- Driving Question: Start by thinking about this question: "How can we use everyday objects to create electricity, and how can we use math and code to predict and understand it?"
- Conceptual Warm-up: Go to Brilliant.org. Complete the first few sections of the Electricity & Magnetism course, focusing on "Voltage" and "Current." This will give you the foundational vocabulary for our experiment.
- Make a Prediction: On your paper or in a document, write down a hypothesis. How much voltage do you think one lemon can produce? What do you think will happen if we link three lemons together? Don't worry about being right; this is about thinking like a scientist!
Part 2: The Build - Hands-On Chemistry (60 minutes)
Now, let's get our hands dirty and build the power source. This is where chemical potential energy becomes electrical energy.
- Safety First! Put on your safety glasses and gloves.
- Prepare the Lemons: With adult supervision if needed, carefully roll each lemon on a table, pressing down firmly. This breaks up the internal vesicles and gets the juices flowing. Cut two small slits in the skin of each lemon, about an inch apart.
-
Create the Electrodes:
- From your MEL "Corrosion" kit, take a zinc-plated paperclip or screw. This will be your negative electrode (the anode).
- From your MEL "Chemistry & Electricity" kit, take a piece of copper wire or a small copper plate. This will be your positive electrode (the cathode).
- Assemble a Single Cell: Insert one zinc electrode into one slit of a lemon and one copper electrode into the other slit. Make sure the metals do not touch each other inside the lemon. Congratulations, you've just built a voltaic cell!
- Use the Multimeter: Turn your multimeter (from the MEL kit) to the DC Voltage setting (V-). Connect the red probe to the copper electrode and the black probe to the zinc electrode using the alligator clips. Record the voltage. How close was your prediction?
Part 3: The Numbers - Math & Data Analysis (45 minutes)
An experiment without data is just a hobby. Let's collect some data and use your AoPS algebra skills to make sense of it.
- Measure a Single Cell: You already have the voltage for one lemon. Now, if your multimeter supports it, measure the current (in milliamps, mA). Record both values.
-
Build a Series Circuit:
- Prepare two more lemons with electrodes.
- Connect the zinc electrode of the first lemon to the copper electrode of the second lemon using an alligator clip.
- You now have a free copper end on the first lemon and a free zinc end on the second. You've made a two-lemon battery!
- Measure the voltage across these two free ends. Record it.
- Add the third lemon to the chain in the same way and measure the new voltage.
-
Analyze the Data: Create a simple table with "Number of Lemons" (x-axis) and "Total Voltage" (y-axis).
- AoPS Prealgebra Connection (Ratios): Calculate the voltage per lemon for your 1, 2, and 3-lemon batteries. Is it roughly constant?
- AoPS Intro to Algebra Connection (Linear Equations): Your data should look like a line! Can you find the equation for this line in the form y = mx + b? What does 'm' (the slope) represent in this experiment?
- Data Science Moment (Brilliant.org): Look at the "Data Analysis Fundamentals" course on Brilliant.org. Think about how you would graph your results to show the relationship between lemons and voltage. Create a simple scatter plot on paper or using a free online tool.
Part 4: The Code - Simulation & Application (45 minutes)
Let's bring our experiment into the digital world. We'll use basic coding to model what we built.
- Coding Warm-up: Go to Brilliant.org and do a quick refresher in the "Programming with Python" course, focusing on variables, user input, and basic math operations.
-
Create a "Battery Calculator" Program:
- Open a simple online Python interpreter (like Replit).
- Write a short program that asks the user: "How many lemons do you want to use?"
- Using the slope ('m') from your y = mx + b equation as the average voltage per lemon, your program should calculate and print the estimated total voltage.
- Challenge: Add a feature that calculates the total power (in milliwatts) using the formula P = V * I (Power = Voltage * Current). You can use your measured current from the single lemon as a rough estimate for 'I'.
- Think Like a Coder: How could you improve this program? What other variables could you add? (e.g., type of fruit, size of electrodes). This is about creative problem-solving.
Part 5: The Grand Finale - Synthesis & Extension (30 minutes)
This is your chance to pull everything together and showcase what you've learned.
-
Create Your "Lab Report": Your report doesn't have to be a boring paper. Choose a format that you find fun:
- A short video where you explain the process and your results.
- A slideshow presentation with photos of your experiment and graphs of your data.
- A well-documented version of your Python code that includes comments explaining the science.
-
Your report should answer these key questions:
- What was the scientific principle that made the lemon battery work? (Hint: think about electrons, zinc, copper, and acid).
- How did your algebraic model (y=mx+b) match your real-world data?
- What did your code successfully demonstrate?
- What was the most challenging or surprising part of the project?
-
Extension Ideas (Optional): If you're excited to learn more, try one of these!
- The Parallel Circuit: Try connecting your lemons in parallel (all zinc electrodes connected, all copper electrodes connected) instead of in series. What happens to the voltage and current? Why?
- The Veggie Challenge: Try the same experiment with potatoes, apples, or other items. Which one makes the best battery?
- Advanced Coding: Use a library like Matplotlib in Python to have your program graph the data automatically.