|
MAIN_PROMPT = """ |
|
Module 7: Understanding Non-Proportional Relationships |
|
|
|
Task Introduction |
|
"Welcome to this module on understanding non-proportional relationships! In this module, you’ll explore why certain relationships are not proportional, identify key characteristics, and connect these ideas to algebraic thinking. Let’s dive into some problems to analyze!" |
|
|
|
🚀 **Problems:** |
|
**Problem 1:** Ali drives at an average rate of 25 miles per hour for 3 hours to get to his house from work. How long will it take him if he is able to average 50 miles per hour? |
|
**Problem 2:** Tugce’s cell phone service charges her $22.50 per month for phone service, plus $0.35 for each text she sends or receives. Last month, she sent or received 30 texts, and her bill was $33. How much will she pay if she sends or receives 60 texts this month? |
|
**Problem 3:** Ali and Deniz both go for a run. When they run, both run at the same rate. Today, they started at different times. Ali had run 3 miles when Deniz had run 2 miles. How many miles had Deniz run when Ali had run 6 miles? |
|
|
|
💡 **Before receiving guidance, solve each problem and explain your reasoning.** |
|
🚀 **Let's start with Problem 1. What do you think—Is the relationship between speed and time proportional? Why or why not?** |
|
""" |
|
|
|
def get_prompt_for_problem(problem_number): |
|
if problem_number == "1": |
|
return """ |
|
### **Problem 1: Ali's Driving Speed** |
|
Great! Let’s analyze the relationship between speed and time. |
|
📌 **Before we discuss, solve the problem and explain your reasoning:** |
|
- How do you determine if a relationship is proportional? |
|
- What happens to travel time when speed increases? |
|
- Does the ratio between speed and time remain constant? |
|
🌊 **Describe your thought process first. I will ask follow-up questions before offering hints or solutions.** |
|
""" |
|
|
|
elif problem_number == "2": |
|
return """ |
|
### **Problem 2: Tugce's Cell Phone Bill** |
|
Nice choice! Let’s break this down step by step. |
|
📌 **Before we discuss, solve the problem and explain your reasoning:** |
|
- What is the fixed charge in the bill, and why does it matter? |
|
- How does the cost per text affect proportionality? |
|
- Does doubling the number of texts double the total bill? Why or why not? |
|
🌊 **Describe your thought process first. I will ask follow-up questions before offering hints or solutions.** |
|
""" |
|
|
|
elif problem_number == "3": |
|
return """ |
|
### **Problem 3: Ali and Deniz's Running** |
|
Good thinking! Let’s explore the relationship between their distances. |
|
📌 **Before we discuss, solve the problem and explain your reasoning:** |
|
- If both run at the same rate, why does their distance differ? |
|
- How can we determine the pattern in their distances over time? |
|
- Is there a constant ratio or a constant difference between their distances? |
|
🌊 **Describe your thought process first. I will ask follow-up questions before offering hints or solutions.** |
|
""" |
|
|
|
return "I didn’t understand your choice. Please select Problem 1, 2, or 3." |
|
|
|
def get_feedback_for_problem(problem_number, teacher_response): |
|
if problem_number == "1": |
|
return """ |
|
Great observation! Since speed and time vary inversely, increasing speed decreases time. However, does the ratio between speed and time remain constant? How would you verify it? |
|
""" |
|
|
|
elif problem_number == "2": |
|
return """ |
|
You're on the right track! The fixed charge prevents proportionality. How does the per-text charge fit into this? Can you compute the total cost for 60 texts? |
|
""" |
|
|
|
elif problem_number == "3": |
|
return """ |
|
Good thinking! The key here is the additive nature of their distances. Since Ali started earlier, his lead remains constant rather than proportional. Can you determine the difference in distance at another point in time? |
|
""" |
|
|
|
return "Interesting approach! Could you clarify your reasoning a bit more?" |
|
|
|
def additional_discussion(): |
|
return """ |
|
### **Extending the Discussion: Common Core and Creativity** |
|
|
|
Now, let’s reflect on the broader connections. **Before I provide details, what Common Core Practice Standards do you think we covered in this module?** |
|
|
|
Now that you've shared your thoughts, here are some key Common Core Practice Standards we engaged with: |
|
|
|
- **MP1: Make sense of problems and persevere in solving them.** You analyzed and worked through non-proportional relationships. |
|
- **MP2: Reason abstractly and quantitatively.** You interpreted relationships and represented them mathematically. |
|
- **MP4: Model with mathematics.** You created equations to describe real-world scenarios. |
|
- **MP7: Look for and make use of structure.** You identified patterns in proportional and non-proportional relationships. |
|
|
|
🌈 **Now, what creativity-directed practices do you think we covered?** |
|
|
|
Some creativity-directed practices we explored include: |
|
- **Problem-Solving:** Approaching non-proportional problems with different strategies. |
|
- **Modeling Real-World Situations:** Translating problems into mathematical equations. |
|
- **Connecting Concepts:** Linking ideas across different mathematical representations. |
|
- **Generating and Testing Hypotheses:** Predicting relationships and verifying solutions. |
|
|
|
### **Posing a Similar Task** |
|
Now that you’ve analyzed these problems, it’s your turn! **Can you create a non-proportional problem similar to the ones we explored?** |
|
- Describe the situation and explain why it is non-proportional. |
|
|
|
### **Final Summary: CK, PCK, and MC** |
|
To wrap up, let's summarize what we learned in terms of: |
|
- **Content Knowledge (CK):** Understanding and distinguishing non-proportional relationships. |
|
- **Pedagogical Content Knowledge (PCK):** Strategies for teaching proportional vs. non-proportional relationships. |
|
- **Mathematical Creativity (MC):** Using real-world modeling, problem-solving, and alternative representations. |
|
""" |
|
|
|
|
|
|
|
|
|
|
|
|