# MathPal Learning Content > Full content export of 7 math learning articles at https://mathpal.study/learn/. Generated for AI crawlers that deep-index content (Perplexity, Cursor, GitHub Copilot). Generated: 2026-09-08 Total articles: 7 --- ## Box Plots — How to Make and Read a Box-and-Whisker Plot URL: https://mathpal.study/learn/box-plots Description: Learn to create and interpret box-and-whisker plots using the five-number summary. Find quartiles, IQR, and compare data sets. Grade 6–7 statistics with examples. Keywords: box plot, box and whisker plot, how to make a box plot, five number summary, quartiles, interquartile range, IQR Tags: grade-6, grade-7, statistics # Box Plots — How to Make and Read a Box-and-Whisker Plot > **Grade:** 6–7 | **Topic:** Statistics ## What You Will Learn By the end of this page, you will be able to find the five-number summary of a data set, draw a box-and-whisker plot, calculate the interquartile range (IQR), and interpret what a box plot reveals about the shape and spread of data. ## Theory ### The Five-Number Summary A **box plot** (box-and-whisker plot) is built from five key values: 1. **Minimum** — smallest value in the data set 2. **Q1** (Lower Quartile) — median of the lower half of the data (25th percentile) 3. **Median (Q2)** — middle value of the whole data set (50th percentile) 4. **Q3** (Upper Quartile) — median of the upper half of the data (75th percentile) 5. **Maximum** — largest value in the data set ### How to Find Q1, Median, Q3 1. **Sort** the data from smallest to largest 2. **Find the median:** the middle value (or average of two middle values for even-sized sets) 3. **Find Q1:** the median of all values *below* the overall median 4. **Find Q3:** the median of all values *above* the overall median ### Structure of a Box Plot - **Whiskers:** lines from the minimum to Q1, and from Q3 to the maximum - **Box:** rectangle from Q1 to Q3 - **Line inside the box:** the median (Q2) The box covers the **middle 50%** of the data. ### Interquartile Range (IQR) $$\text{IQR} = Q3 - Q1$$ IQR measures the spread of the middle half of the data. It is more reliable than range for describing spread because it ignores extreme outliers. ## Worked Examples ### Example 1: Finding the Five-Number Summary **Problem:** Find the five-number summary for this data set: 4, 8, 3, 14, 7, 9, 11, 6, 12 **Step 1:** Sort the data. $$3, 4, 6, 7, 8, 9, 11, 12, 14$$ **Step 2:** Find the median. There are 9 values — the middle (5th) value is **8**. **Step 3:** Lower half (values below the median): 3, 4, 6, 7. Q1 = average of 4 and 6. $$Q1 = \frac{4 + 6}{2} = 5$$ **Step 4:** Upper half (values above the median): 9, 11, 12, 14. Q3 = average of 11 and 12. $$Q3 = \frac{11 + 12}{2} = 11.5$$ **Five-number summary:** - Minimum = 3, Q1 = 5, Median = 8, Q3 = 11.5, Maximum = 14 **IQR** $= 11.5 - 5 = 6.5$ --- ### Example 2: Drawing the Box Plot **Problem:** Draw the box plot for the data from Example 1. **Step 1:** Draw a number line covering the range (3 to 14). **Step 2:** Mark the five values above the number line: - Whisker start at 3 (minimum) - Left edge of box at Q1 = 5 - Vertical line at median = 8 - Right edge of box at Q3 = 11.5 - Whisker end at 14 (maximum) **Step 3:** Draw the box from Q1 to Q3, the median line, and the two whiskers. --- ### Example 3: Interpreting a Box Plot **Problem:** A box plot for exam scores shows: - Minimum = 42, Q1 = 58, Median = 70, Q3 = 80, Maximum = 95 Answer: (a) What is the IQR? (b) What fraction of students scored between 58 and 80? (c) Was the distribution skewed? **(a)** IQR = $80 - 58 = \mathbf{22}$ marks. **(b)** The box spans Q1 to Q3, which contains **50%** of students — half the class scored between 58 and 80. **(c)** The median (70) is closer to Q3 (80) than to Q1 (58), and the lower whisker is longer. The data is **left-skewed** (skewed towards lower scores). --- ### Example 4: Comparing Two Box Plots **Problem:** Class A has median 65, IQR 10. Class B has median 72, IQR 25. What conclusions can you draw? **Conclusion 1:** Class B has a higher median score (72 vs 65) — Class B performed better overall. **Conclusion 2:** Class A's IQR is much smaller (10 vs 25) — Class A's results are more consistent; Class B has a wider spread of abilities. ## Common Mistakes **Mistake 1: Including the Median in Both Halves When Finding Q1 and Q3** ❌ For odd-numbered data sets, including the median value itself in both the lower and upper halves. ✅ For an odd number of values, exclude the median when splitting into halves. Q1 and Q3 are medians of the lower and upper halves only. **Mistake 2: Confusing IQR with Range** ❌ IQR = Maximum − Minimum. ✅ IQR = Q3 − Q1 (middle 50%). Range = Maximum − Minimum (total spread). They measure different things. **Mistake 3: Drawing the Whiskers to the Wrong Values** ❌ Drawing whiskers to Q1 and Q3 (making the box disappear). ✅ The **whiskers** go from the minimum to Q1, and from Q3 to the maximum. The **box** spans from Q1 to Q3. ## Practice Problems Try these on your own before checking the answers: 1. Find the five-number summary for: 12, 5, 20, 8, 15, 10, 18, 3, 7. 2. Using your answer from Problem 1, what is the IQR? 3. A box plot shows Q1 = 30 and Q3 = 54. What percentage of data lies between 30 and 54? 4. Two basketball players' point scores are compared. Player A: median = 18, IQR = 4. Player B: median = 15, IQR = 12. Which player is more consistent? 5. A data set has minimum 10, maximum 90, median 40. The lower whisker is much longer than the upper whisker. Is the data left-skewed or right-skewed? Click to see answers 1. Sorted: 3, 5, 7, 8, 10, 12, 15, 18, 20. Median = 10. Lower half: 3, 5, 7, 8 → Q1 = (5+7)/2 = 6. Upper half: 12, 15, 18, 20 → Q3 = (15+18)/2 = 16.5. **Five-number summary: 3, 6, 10, 16.5, 20** 2. IQR = 16.5 − 6 = **10.5** 3. The box (Q1 to Q3) always contains **50%** of the data. 4. Player A is more consistent (smaller IQR = 4 vs 12), meaning their scores vary less from game to game. 5. A longer lower whisker means values are spread further on the left side — the data is **left-skewed**. ## Summary - The five-number summary: Minimum, Q1, Median (Q2), Q3, Maximum. - Build the box from Q1 to Q3, with the median line inside; whiskers extend to min and max. - IQR = Q3 − Q1 measures the spread of the middle 50% of data. - A longer whisker or box section on one side indicates skew in that direction. - Box plots are ideal for comparing two or more data sets side by side. ## Related Topics - [Data Collection and Analysis](/learn/data-collection-analysis) --- **Need help with box plots or statistics?** Take a photo of your math problem and MathPal will solve it step by step. [Open MathPal](https://mathpal.study) --- ## Data Collection and Analysis — Tables, Charts, and Surveys URL: https://mathpal.study/learn/data-collection-analysis Description: Learn data collection and analysis in math: surveys, frequency tables, tally charts, and how to organize and interpret data for grades 6-7. Keywords: data collection and analysis in math, frequency table, how to organize data, tally chart, survey data math, data analysis for students Tags: grade-6, grade-7, statistics # Data Collection and Analysis — Tables, Charts, and Surveys > **Grade:** 6-7 | **Topic:** Statistics ## What You Will Learn After this lesson you will know how data is collected through surveys, observations, and experiments. You will be able to organize raw data into frequency tables and tally charts, identify the difference between categorical and numerical data, and draw conclusions by analyzing organized data. These skills form the foundation for all statistics work. ## Theory ### Types of Data Before collecting data, you need to understand what kind of data you are working with. **Categorical data** (also called qualitative data) describes qualities or groups: - Favorite subject: Math, Science, English - Type of pet: Dog, Cat, Fish - Transportation mode: Bus, Walk, Car **Numerical data** (also called quantitative data) consists of numbers: - Test scores: 75, 82, 91 - Heights in cm: 148, 155, 162 - Number of siblings: 0, 1, 2, 3 Numerical data can be further divided: - **Discrete** — countable, whole numbers (number of students, number of pets) - **Continuous** — measurable, can include decimals (height, weight, time) ### Methods of Data Collection | Method | What It Is | Example | |--------|-----------|---------| | **Survey / Questionnaire** | Ask people questions | "What is your favorite sport?" | | **Observation** | Watch and record what happens | Counting cars at an intersection | | **Experiment** | Test something under controlled conditions | Measuring plant growth with different amounts of water | | **Existing data** | Use records that already exist | Census data, school attendance records | ### Designing a Good Survey A good survey gives reliable results. Follow these rules: 1. **Use a large enough sample** — asking 5 people is not enough; ask at least 30 if possible. 2. **Choose a representative sample** — make sure the people you ask reflect the whole group. 3. **Avoid leading questions** — "Don't you think pizza is the best lunch?" pushes people toward a specific answer. 4. **Keep questions clear** — avoid double-barreled questions like "Do you like math and science?" 5. **Use closed-ended questions for easy analysis** — "What is your favorite subject: Math, Science, English, or Other?" ### Organizing Data: Tally Charts and Frequency Tables Raw data is hard to interpret. Organizing it makes patterns visible. **Tally chart:** Uses tally marks (groups of 5, written as four strokes with a diagonal cross-stroke) to count occurrences as you collect data. **Frequency table:** Lists each category or value with its frequency (count). | Value/Category | Tally | Frequency | |---------------|-------|-----------| | Category A | IIIII II | 7 | | Category B | IIIII | 5 | | Category C | III | 3 | | **Total** | | **15** | **Relative frequency** shows each category as a fraction or percentage of the total: $$\text{Relative frequency} = \frac{\text{Frequency of category}}{\text{Total frequency}}$$ ### Drawing Conclusions from Data Once data is organized, you can: 1. **Identify the mode** — the category or value with the highest frequency 2. **Calculate the mean** — the average of numerical data 3. **Find the range** — the spread from smallest to largest 4. **Spot trends** — patterns or changes over time 5. **Compare groups** — see if one group differs from another ## Worked Examples ### Example 1: Building a Frequency Table (Easy) **Problem:** A teacher asked 20 students about their favorite fruit. The responses were: Apple, Banana, Apple, Orange, Banana, Apple, Grape, Banana, Apple, Orange, Banana, Grape, Apple, Banana, Orange, Apple, Banana, Orange, Grape, Apple. Build a frequency table and find the mode. **Step 1:** Count each fruit: | Fruit | Frequency | |-------|-----------| | Apple | 7 | | Banana | 6 | | Orange | 4 | | Grape | 3 | | **Total** | **20** | **Step 2:** The mode is the fruit with the highest frequency. **Answer:** The mode is **Apple** (frequency 7). Apple is the most popular fruit. ### Example 2: Calculating Relative Frequency (Easy) **Problem:** Using the fruit data above, what is the relative frequency of Banana? **Step 1:** Apply the formula: $$\text{Relative frequency of Banana} = \frac{6}{20} = \frac{3}{10} = 0.3 = 30\%$$ **Answer:** The relative frequency of Banana is **30%** — almost one-third of the students prefer bananas. ### Example 3: Grouped Frequency Table for Numerical Data (Medium) **Problem:** Test scores for 15 students: 52, 67, 71, 45, 88, 73, 61, 95, 78, 82, 56, 69, 84, 77, 63. Organize into groups of 10 (40-49, 50-59, etc.) and identify which range has the most students. **Step 1:** Sort into groups: | Score Range | Tally | Frequency | |------------|-------|-----------| | 40-49 | $|$ | 1 | | 50-59 | $||$ | 2 | | 60-69 | $||||$ | 4 | | 70-79 | $||||$ | 4 | | 80-89 | $|||$ | 3 | | 90-99 | $|$ | 1 | | **Total** | | **15** | **Step 2:** The ranges 60-69 and 70-79 are tied with 4 students each. **Answer:** The most common score ranges are **60-69** and **70-79** (4 students each). Most students scored between 60 and 79. ### Example 4: Identifying Bias in a Survey (Medium) **Problem:** A student wants to know the most popular after-school activity at their school of 500 students. They survey 10 students from the basketball team. Is this a good survey? **Step 1 — Sample size:** 10 out of 500 is only 2% — too small. **Step 2 — Representativeness:** All 10 are from the basketball team. They are much more likely to say "Sports" than students from music club or art class. **Step 3 — Conclusion:** This survey is **biased** because: - The sample is too small - The sample is not representative of the whole school **Answer:** This is a **biased survey**. A better approach would be to randomly select at least 50 students from different clubs and grades. ### Example 5: Comparing Two Data Sets (Challenging) **Problem:** Class A test scores: 72, 78, 80, 85, 90. Class B test scores: 60, 75, 82, 88, 95. Compare the two classes using mean and range. **Step 1 — Class A mean:** $$\text{Mean}_A = \frac{72 + 78 + 80 + 85 + 90}{5} = \frac{405}{5} = 81$$ **Step 2 — Class B mean:** $$\text{Mean}_B = \frac{60 + 75 + 82 + 88 + 95}{5} = \frac{400}{5} = 80$$ **Step 3 — Ranges:** $$\text{Range}_A = 90 - 72 = 18$$ $$\text{Range}_B = 95 - 60 = 35$$ **Step 4 — Analysis:** The means are nearly equal (81 vs 80), so both classes performed similarly on average. However, Class B's range (35) is almost double Class A's range (18), meaning Class B's scores are much more spread out — some students did very well while others struggled. **Answer:** Both classes have a similar average ($\approx 80$), but Class B has a much wider range (35 vs 18), indicating more variation in student performance. ## Common Mistakes **Mistake 1: Using a biased sample and thinking the results are reliable** ❌ Surveying only your friends about the best school lunch and presenting the results as "what everyone thinks." ✅ Use a **random sample** that includes students from different grades, interests, and backgrounds. Why this matters: Biased samples produce results that only represent one group, not the whole population. **Mistake 2: Confusing frequency with relative frequency** In a survey of 50 people, 15 chose "Math." ❌ "The relative frequency of Math is 15." ✅ The frequency is 15. The relative frequency is $\frac{15}{50} = 0.30 = 30\%$. Why this matters: Frequency is a count. Relative frequency is a proportion (fraction, decimal, or percentage). They answer different questions. **Mistake 3: Choosing wrong group intervals for numerical data** Data ranges from 40 to 100. ❌ Using groups 40-50, 50-60, 60-70... (overlapping — does 50 go in the first or second group?). ✅ Use non-overlapping groups: 40-49, 50-59, 60-69, 70-79, 80-89, 90-99. Why this matters: Overlapping intervals mean some values could be counted twice, making your frequency table inaccurate. ## Practice Problems Try these on your own before checking the answers: 1. Classify each as categorical or numerical: (a) Favorite color (b) Number of books read (c) Shoe size (d) Type of pet. 2. A survey of 25 students shows: Soccer = 8, Basketball = 6, Tennis = 4, Swimming = 7. What is the relative frequency of Swimming? 3. Create a grouped frequency table for these ages: 11, 14, 12, 16, 13, 15, 12, 11, 14, 13, 16, 15, 12, 14, 11. Use groups 11-12, 13-14, 15-16. 4. A researcher wants to know if students prefer online or in-person learning. They only survey students in the computer lab. Is this sample biased? Explain. 5. Data set A: 10, 10, 10, 10, 10 (mean = 10, range = 0). Data set B: 2, 6, 10, 14, 18 (mean = 10, range = 16). Both have the same mean but very different ranges. What does this tell you? Click to see answers 1. (a) Categorical (b) Numerical (discrete) (c) Numerical (d) Categorical. 2. Relative frequency $= \frac{7}{25} = 0.28 = 28\%$. 3. Ages 11-12: frequency 6. Ages 13-14: frequency 5. Ages 15-16: frequency 4. Total: 15. 4. Yes, it is biased. Students in the computer lab are more likely to prefer online learning since they are already comfortable with computers. 5. While both sets have the same average, Set A has no variation (all values are identical) while Set B has values spread far from the mean. The range reveals differences that the mean alone cannot show. ## Summary - Data can be **categorical** (qualities) or **numerical** (numbers, either discrete or continuous). - Common collection methods: surveys, observations, experiments, existing records. - A good survey uses a **large, representative, unbiased sample** with clear questions. - **Frequency tables** organize raw data by counting occurrences; **relative frequency** expresses counts as proportions. - Use group intervals for numerical data when there are many distinct values — make sure intervals do not overlap. - Always compare data sets using multiple measures (mean, range) for a complete picture. --- ## Fractions — Complete Guide to Understanding and Solving Fractions URL: https://mathpal.study/learn/fractions Description: Master fractions with clear explanations, KaTeX formulas, worked examples, and practice problems for grade 6-7 students. Keywords: fractions, how to solve fractions, adding fractions, multiplying fractions, simplifying fractions, fraction examples Tags: grade-6, grade-7, arithmetic, pillar # Fractions — Complete Guide to Understanding and Solving Fractions > **Grade:** 6-7 | **Topic:** Arithmetic ## What You Will Learn A **fraction** represents a part of a whole, written as numerator over denominator (example: 3/4 means 3 parts out of 4 equal parts). This guide covers reading and comparing fractions, adding, subtracting, multiplying, and dividing them, simplifying to lowest terms, and converting between fractions, decimals, and percentages for grades 6-7 students. ## Theory ### What is a fraction? A fraction represents a part of a whole. It is written as one number over another, separated by a horizontal bar: $$\frac{a}{b}$$ - **Numerator** ($a$): the number of parts you have. - **Denominator** ($b$): the total number of equal parts the whole is divided into. For example, $\frac{3}{8}$ means you have 3 out of 8 equal parts. A fraction where the numerator is smaller than the denominator is called a **proper fraction** (e.g. $\frac{2}{5}$). When the numerator is equal to or greater than the denominator it is an **improper fraction** (e.g. $\frac{7}{4}$), which can also be written as a **mixed number** ($1\frac{3}{4}$). ### Equivalent fractions Two fractions are equivalent when they represent the same value. You create an equivalent fraction by multiplying or dividing both the numerator and denominator by the same non-zero number: $$\frac{a}{b} = \frac{a \times k}{b \times k} \quad (k \neq 0)$$ For instance, $\frac{1}{2} = \frac{2}{4} = \frac{3}{6} = \frac{50}{100}$. Each pair was produced by multiplying numerator and denominator by the same factor. ### Simplifying fractions To simplify (or reduce) a fraction, divide both the numerator and denominator by their **Greatest Common Divisor (GCD)**: $$\frac{a}{b} = \frac{a \div \gcd(a,b)}{b \div \gcd(a,b)}$$ For example, to simplify $\frac{12}{18}$: the GCD of 12 and 18 is 6, so $\frac{12}{18} = \frac{12 \div 6}{18 \div 6} = \frac{2}{3}$. ### Adding and subtracting fractions When fractions share the same denominator, add or subtract the numerators directly: $$\frac{a}{c} + \frac{b}{c} = \frac{a + b}{c}$$ When the denominators differ, first rewrite each fraction with the **Least Common Denominator (LCD)**, then combine: $$\frac{a}{b} + \frac{c}{d} = \frac{a \times d + c \times b}{b \times d}$$ More precisely, find the LCD (the least common multiple of $b$ and $d$), convert each fraction, then add the numerators. The general formula above works when $b$ and $d$ share no common factor; using the LCD keeps numbers smaller. ### Multiplying fractions Multiply numerators together and denominators together: $$\frac{a}{b} \times \frac{c}{d} = \frac{a \times c}{b \times d}$$ Tip: simplify (cross-cancel) before multiplying to keep numbers manageable. ### Dividing fractions To divide by a fraction, multiply by its **reciprocal** (flip the second fraction): $$\frac{a}{b} \div \frac{c}{d} = \frac{a}{b} \times \frac{d}{c} = \frac{a \times d}{b \times c}$$ This works because division asks "how many groups of $\frac{c}{d}$ fit into $\frac{a}{b}$?", and multiplying by the reciprocal answers exactly that question. ## Worked Examples ### Example 1: Simplifying a fraction (easy) **Problem:** Simplify $\frac{18}{24}$ to lowest terms. **Step 1:** Find the GCD of 18 and 24. Factors of 18: 1, 2, 3, 6, 9, 18. Factors of 24: 1, 2, 3, 4, 6, 8, 12, 24. The greatest common factor is 6. **Step 2:** Divide both numerator and denominator by 6. $$\frac{18}{24} = \frac{18 \div 6}{24 \div 6} = \frac{3}{4}$$ **Answer:** $\dfrac{3}{4}$ ### Example 2: Adding fractions with unlike denominators (medium) **Problem:** Calculate $\frac{2}{5} + \frac{3}{4}$. **Step 1:** Find the LCD of 5 and 4. Multiples of 5: 5, 10, 15, **20**, ... Multiples of 4: 4, 8, 12, 16, **20**, ... The LCD is 20. **Step 2:** Rewrite each fraction with denominator 20. $$\frac{2}{5} = \frac{2 \times 4}{5 \times 4} = \frac{8}{20}$$ $$\frac{3}{4} = \frac{3 \times 5}{4 \times 5} = \frac{15}{20}$$ **Step 3:** Add the numerators. $$\frac{8}{20} + \frac{15}{20} = \frac{23}{20}$$ **Step 4:** Convert to a mixed number if desired. $$\frac{23}{20} = 1\frac{3}{20}$$ **Answer:** $\dfrac{23}{20}$ or $1\dfrac{3}{20}$ ### Example 3: Multiplying fractions with cross-cancellation (medium) **Problem:** Multiply $\frac{9}{14} \times \frac{7}{12}$. **Step 1:** Before multiplying, look for common factors between any numerator and any denominator. - 9 and 12 share a factor of 3: simplify to $\frac{3}{14} \times \frac{7}{4}$. - 7 and 14 share a factor of 7: simplify to $\frac{3}{2} \times \frac{1}{4}$. **Step 2:** Multiply the simplified fractions. $$\frac{3}{2} \times \frac{1}{4} = \frac{3 \times 1}{2 \times 4} = \frac{3}{8}$$ **Answer:** $\dfrac{3}{8}$ ### Example 4: Dividing fractions (medium) **Problem:** Divide $\frac{5}{6} \div \frac{10}{9}$. **Step 1:** Flip the second fraction to get its reciprocal. $$\frac{5}{6} \div \frac{10}{9} = \frac{5}{6} \times \frac{9}{10}$$ **Step 2:** Cross-cancel before multiplying. - 5 and 10 share a factor of 5: simplify to $\frac{1}{6} \times \frac{9}{2}$. - 9 and 6 share a factor of 3: simplify to $\frac{1}{2} \times \frac{3}{2}$. **Step 3:** Multiply. $$\frac{1}{2} \times \frac{3}{2} = \frac{3}{4}$$ **Answer:** $\dfrac{3}{4}$ ### Example 5: Mixed-number subtraction (challenging) **Problem:** Calculate $3\frac{1}{3} - 1\frac{3}{4}$. **Step 1:** Convert each mixed number to an improper fraction. $$3\frac{1}{3} = \frac{3 \times 3 + 1}{3} = \frac{10}{3}$$ $$1\frac{3}{4} = \frac{1 \times 4 + 3}{4} = \frac{7}{4}$$ **Step 2:** Find the LCD of 3 and 4, which is 12. $$\frac{10}{3} = \frac{40}{12}, \quad \frac{7}{4} = \frac{21}{12}$$ **Step 3:** Subtract. $$\frac{40}{12} - \frac{21}{12} = \frac{19}{12}$$ **Step 4:** Convert back to a mixed number. $$\frac{19}{12} = 1\frac{7}{12}$$ **Answer:** $1\dfrac{7}{12}$ ## Common Mistakes **Mistake 1: Adding numerators and denominators directly** ❌ $\frac{1}{3} + \frac{1}{4} = \frac{2}{7}$ ✅ $\frac{1}{3} + \frac{1}{4} = \frac{4}{12} + \frac{3}{12} = \frac{7}{12}$ Why this matters: Fractions can only be added when they share the same denominator. Adding across both the top and bottom treats them like ratios being combined, which is mathematically incorrect and produces a wrong answer. **Mistake 2: Forgetting to simplify the final answer** ❌ $\frac{4}{6}$ left as the final answer. ✅ $\frac{4}{6} = \frac{2}{3}$ Why this matters: Answers in lowest terms are expected in most math courses. Always check whether the numerator and denominator share a common factor before writing your final result. **Mistake 3: Not flipping the second fraction when dividing** ❌ $\frac{2}{3} \div \frac{4}{5} = \frac{2 \times 4}{3 \times 5} = \frac{8}{15}$ ✅ $\frac{2}{3} \div \frac{4}{5} = \frac{2}{3} \times \frac{5}{4} = \frac{10}{12} = \frac{5}{6}$ Why this matters: Division and multiplication are different operations. You must take the reciprocal of the divisor first, then multiply. Skipping the flip gives a completely different (and incorrect) result. ## Practice Problems Try these on your own before checking the answers: 1. Simplify $\frac{24}{36}$ to lowest terms. 2. Add $\frac{5}{6} + \frac{2}{9}$. 3. Multiply $\frac{8}{15} \times \frac{5}{12}$. 4. Divide $\frac{7}{8} \div \frac{3}{4}$. 5. Subtract $4\frac{2}{5} - 2\frac{4}{5}$. Click to see answers 1. GCD of 24 and 36 is 12. $\frac{24}{36} = \frac{2}{3}$ 2. LCD is 18. $\frac{15}{18} + \frac{4}{18} = \frac{19}{18} = 1\frac{1}{18}$ 3. Cross-cancel (5 with 15, 8 with 12): $\frac{8}{15} \times \frac{5}{12} = \frac{2}{9}$ 4. Flip and multiply: $\frac{7}{8} \times \frac{4}{3} = \frac{28}{24} = \frac{7}{6} = 1\frac{1}{6}$ 5. Convert: $\frac{22}{5} - \frac{14}{5} = \frac{8}{5} = 1\frac{3}{5}$ ## Summary - A fraction $\frac{a}{b}$ represents $a$ parts out of $b$ equal parts of a whole. - To add or subtract fractions, first convert them to a common denominator, then combine the numerators. - To multiply fractions, multiply numerators together and denominators together; cross-cancel first to keep numbers small. - To divide fractions, multiply by the reciprocal of the divisor (flip and multiply). - Always simplify your final answer by dividing numerator and denominator by their GCD. --- ## Line Plots and Histograms — How to Read and Create Them URL: https://mathpal.study/learn/line-plots-histograms Description: Learn how to make a histogram and line plot (dot plot) with frequency tables, bin width, and step-by-step examples for grade 6-7 students. Keywords: how to make a histogram, line plot, dot plot, frequency table, bin width, reading histograms, statistics for kids Tags: grade-6, grade-7, statistics # Line Plots and Histograms — How to Read and Create Them > **Grade:** 6-7 | **Topic:** Statistics ## What You Will Learn Graphs turn raw numbers into pictures you can understand at a glance. In this guide you will learn two important types of data displays: **line plots** (also called dot plots) for small data sets with individual values, and **histograms** for larger data sets grouped into ranges. You will also learn how to build a frequency table, choose a good bin width, and interpret what these graphs tell you. ## Theory ### Line plots (dot plots) A **line plot** uses dots (or Xs) stacked above a number line to show how often each value appears. Each dot represents one data point. **When to use a line plot:** Line plots work best for small data sets (roughly 10-30 values) where the values are discrete — things like shoe sizes, quiz scores out of 10, or number of siblings. **How to create a line plot:** 1. Draw a horizontal number line covering the range of your data. 2. For each data value, place a dot above that number. 3. Stack dots vertically when the same value appears more than once. 4. Add a title and label the number line. ### Frequency tables Before building a histogram, you often organize data into a **frequency table**. This table lists each category (or range) and counts how many data points fall into it. | Score range | Tally | Frequency | |---|---|---| | 60-69 | III | 3 | | 70-79 | IIII I | 6 | | 80-89 | IIII IIII | 9 | | 90-100 | IIII | 4 | ### Histograms A **histogram** looks similar to a bar chart, but it displays **numerical data grouped into intervals** (called **bins**). The bars touch each other because the ranges are continuous — there are no gaps between them. **Key features of a histogram:** - The **x-axis** shows the intervals (bins). - The **y-axis** shows the frequency (count) for each bin. - The **bars touch** — no gaps. - Each bar includes the left endpoint but not the right (for example, the bin 70-80 includes 70 but not 80). ### Choosing bin width The **bin width** is the size of each interval. To choose it: 1. Find the **range**: largest value minus smallest value. 2. Decide on a number of bins (5 to 10 is typical). 3. Divide: bin width = range / number of bins. 4. Round to a convenient number. For example, if test scores range from 52 to 98, the range is 46. With 5 bins: $46 \div 5 = 9.2$, so a bin width of 10 is a nice choice. ## Worked Examples ### Example 1 — Creating a line plot A teacher recorded the number of books 12 students read last month: 2, 3, 1, 4, 3, 2, 5, 3, 2, 1, 3, 4. **Step 1:** The values range from 1 to 5. Draw a number line from 1 to 5. **Step 2:** Count each value: - 1 appears 2 times - 2 appears 3 times - 3 appears 4 times - 4 appears 2 times - 5 appears 1 time **Step 3:** Stack dots above each number accordingly. **Interpretation:** The most common number of books read is 3 (the tallest stack). Most students read 2-4 books. ### Example 2 — Reading a histogram A histogram shows student heights in centimeters with these bins and frequencies: 140-145 (2 students), 145-150 (5 students), 150-155 (8 students), 155-160 (6 students), 160-165 (3 students). **Questions and answers:** - How many students total? $2 + 5 + 8 + 6 + 3 = 24$ students. - Which height range is most common? 150-155 cm (the tallest bar, 8 students). - How many students are shorter than 150 cm? $2 + 5 = 7$ students. ### Example 3 — Building a histogram from raw data Here are the ages of 20 people at a community event: 8, 12, 15, 22, 25, 27, 30, 31, 33, 35, 38, 40, 42, 45, 48, 50, 55, 60, 62, 70. **Step 1:** Range = $70 - 8 = 62$. Choose bin width of 10 with bins starting at 0. **Step 2:** Build the frequency table: | Age range | Frequency | |---|---| | 0-9 | 1 | | 10-19 | 2 | | 20-29 | 3 | | 30-39 | 5 | | 40-49 | 4 | | 50-59 | 2 | | 60-69 | 2 | | 70-79 | 1 | **Step 3:** Draw the histogram — 8 bars, tallest at 30-39. **Interpretation:** The event attracted mainly adults in their 30s and 40s, with fewer children and seniors. ### Example 4 — Comparing bin widths Using the same age data, what happens if we use a bin width of 20 instead of 10? | Age range | Frequency | |---|---| | 0-19 | 3 | | 20-39 | 8 | | 40-59 | 6 | | 60-79 | 3 | The histogram now has only 4 bars. It still shows the general shape (most people aged 20-59), but we lose the detail that 30-39 was the peak group. Smaller bins give more detail; larger bins give a smoother, simpler picture. ## Common Mistakes ### Mistake 1 — Leaving gaps in a histogram ❌ Drawing spaces between histogram bars like a bar chart. ✅ Histogram bars must touch because the data ranges are continuous. A gap would imply values that belong to no bin. ### Mistake 2 — Using unequal bin widths without adjusting ❌ Making one bin 60-70 and the next 70-100, then comparing their bar heights directly. ✅ Either keep all bins the same width, or use **frequency density** (frequency divided by bin width) on the y-axis for unequal bins. ### Mistake 3 — Confusing histograms with bar charts ❌ Using a histogram for categorical data like "favorite color." ✅ Histograms are for numerical data grouped into ranges. Use a **bar chart** for categories, where bars do not touch. ## Practice Problems **Problem 1:** A class recorded daily temperatures (in degrees F) for a week: 72, 75, 68, 74, 71, 73, 76. Create a line plot. What is the most frequent temperature? Show Answer Each temperature appears exactly once, so no value is more frequent than another. The line plot has one dot above each value: 68, 71, 72, 73, 74, 75, 76. **Problem 2:** A histogram has bins 0-10, 10-20, 20-30, 30-40 with frequencies 5, 12, 8, 3. How many data points are there in total? Show Answer $5 + 12 + 8 + 3 = 28$ data points. **Problem 3:** Data ranges from 15 to 85. Suggest a reasonable bin width if you want about 7 bins. Show Answer Range $= 85 - 15 = 70$. Bin width $= 70 \div 7 = 10$. A bin width of 10 works perfectly. **Problem 4:** From this frequency table, which interval has the highest frequency? | Interval | Frequency | |---|---| | 0-4 | 3 | | 5-9 | 7 | | 10-14 | 11 | | 15-19 | 5 | Show Answer The interval 10-14 has the highest frequency at 11. **Problem 5:** True or false: A histogram and a bar chart are the same thing. Show Answer **False.** A histogram displays numerical data in continuous ranges (bars touch), while a bar chart displays categorical data (bars are separated by gaps). ## Summary - A **line plot** (dot plot) shows individual data values as dots above a number line — best for small, discrete data sets. - A **histogram** groups numerical data into bins and shows frequency with touching bars — best for larger or continuous data. - Always build a **frequency table** before drawing a histogram. - **Bin width** affects the level of detail: smaller bins reveal more patterns, larger bins simplify the picture. - Histograms and bar charts look similar but serve different purposes — histograms are for numerical ranges, bar charts for categories. ## Related Topics - [Data Collection and Analysis](/learn/data-collection-analysis) — designing surveys and organizing data --- **Need help with histograms and data displays?** Take a photo of your math problem and MathPal will solve it step by step. [Open MathPal](https://mathpal.study) --- ## Pythagorean Theorem — Formula, Proof, and Examples URL: https://mathpal.study/learn/pythagorean-theorem Description: Learn the Pythagorean theorem with clear explanations, a visual proof, worked examples, and practice problems for grades 8-9. Keywords: pythagorean theorem, pythagorean theorem formula, pythagorean theorem examples, pythagorean theorem proof, right triangle sides, a squared plus b squared Tags: grade-8, grade-9, geometry, pillar # Pythagorean Theorem — Formula, Proof, and Examples > **Grade:** 8-9 | **Topic:** Geometry ## What You Will Learn The **Pythagorean theorem** states that in any right triangle, the square of the hypotenuse equals the sum of squares of the other two sides: **a² + b² = c²**. It applies only to triangles with exactly one 90° angle. This guide covers the formula, a visual proof, five worked examples, common mistakes, and practice problems for grade 8-9 students. ## Theory ### The theorem and its formula The **Pythagorean theorem** is one of the most important results in all of mathematics. It describes the relationship between the three sides of a **right triangle** — a triangle that contains exactly one 90-degree angle. In a right triangle the longest side, opposite the right angle, is called the **hypotenuse** ($c$). The other two sides are called the **legs** ($a$ and $b$). The theorem states: $$a^2 + b^2 = c^2$$ In words: **the sum of the squares of the legs equals the square of the hypotenuse.** For example, a right triangle with legs $a = 3$ and $b = 4$ has a hypotenuse of: $$c = \sqrt{a^2 + b^2} = \sqrt{9 + 16} = \sqrt{25} = 5$$ This is the famous **3-4-5** right triangle, the simplest example of a Pythagorean triple. ### A visual proof (rearrangement proof) Imagine a large square with side length $(a + b)$. You can fill this square two different ways: **Way 1 — four triangles and a small square:** Place four copies of the right triangle (each with legs $a$ and $b$ and hypotenuse $c$) inside the big square so that they form a tilted square in the center. The area of the big square is $(a + b)^2$. The four triangles together have area $4 \times \frac{1}{2}ab = 2ab$, and the inner square has area $c^2$. So: $$(a + b)^2 = 2ab + c^2$$ **Way 2 — expand the left side:** $$(a + b)^2 = a^2 + 2ab + b^2$$ Setting the two expressions equal: $$a^2 + 2ab + b^2 = 2ab + c^2$$ Subtract $2ab$ from both sides: $$a^2 + b^2 = c^2$$ This elegant proof shows that the theorem is not just a formula to memorize — it is a geometric fact about how areas relate in a right triangle. ### Finding a missing side The formula $a^2 + b^2 = c^2$ can be rearranged depending on which side is unknown: **Finding the hypotenuse** (when you know both legs): $$c = \sqrt{a^2 + b^2}$$ **Finding a leg** (when you know the hypotenuse and one leg): $$a = \sqrt{c^2 - b^2}$$ Always remember: the hypotenuse $c$ is the longest side. If you solve for a side and get a value larger than the hypotenuse, you have mixed up which side is which. ### Checking if a triangle is a right triangle Given three side lengths, you can verify whether they form a right triangle by testing the Pythagorean equation. Label the longest side as $c$ and check: - If $a^2 + b^2 = c^2$, the triangle **is** a right triangle. - If $a^2 + b^2 > c^2$, the triangle is **acute** (all angles less than 90 degrees). - If $a^2 + b^2 < c^2$, the triangle is **obtuse** (one angle greater than 90 degrees). ## Worked Examples ### Example 1: Finding the hypotenuse (easy) **Problem:** A right triangle has legs of length 6 cm and 8 cm. Find the hypotenuse. **Step 1:** Write the Pythagorean theorem. $$a^2 + b^2 = c^2$$ **Step 2:** Substitute the known values. $$6^2 + 8^2 = c^2$$ $$36 + 64 = c^2$$ $$100 = c^2$$ **Step 3:** Take the square root of both sides. $$c = \sqrt{100} = 10 \text{ cm}$$ **Answer:** The hypotenuse is **10 cm**. ### Example 2: Finding a missing leg (medium) **Problem:** A right triangle has a hypotenuse of 13 m and one leg of 5 m. Find the other leg. **Step 1:** Write the formula solved for the unknown leg. $$a = \sqrt{c^2 - b^2}$$ **Step 2:** Substitute the known values. $$a = \sqrt{13^2 - 5^2} = \sqrt{169 - 25} = \sqrt{144}$$ **Step 3:** Simplify. $$a = 12 \text{ m}$$ **Answer:** The missing leg is **12 m**. ### Example 3: Checking if a triangle is a right triangle (medium) **Problem:** A triangle has sides of 7, 24, and 25. Is it a right triangle? **Step 1:** Identify the longest side as the potential hypotenuse. $c = 25$, $a = 7$, $b = 24$. **Step 2:** Check whether $a^2 + b^2 = c^2$. $$7^2 + 24^2 = 49 + 576 = 625$$ $$25^2 = 625$$ **Step 3:** Compare. $$625 = 625 \checkmark$$ **Answer:** Yes, this **is** a right triangle because $a^2 + b^2 = c^2$. ### Example 4: Real-world ladder problem (challenging) **Problem:** A 10-foot ladder leans against a wall. The base of the ladder is 6 feet from the wall. How high up the wall does the ladder reach? **Step 1:** Visualize the right triangle. The ladder is the hypotenuse ($c = 10$ ft), the distance from the wall is one leg ($b = 6$ ft), and the height up the wall is the unknown leg ($a$). **Step 2:** Apply the formula. $$a = \sqrt{c^2 - b^2} = \sqrt{10^2 - 6^2} = \sqrt{100 - 36} = \sqrt{64}$$ **Step 3:** Simplify. $$a = 8 \text{ ft}$$ **Answer:** The ladder reaches **8 feet** up the wall. ### Example 5: Distance between two points (challenging) **Problem:** Find the distance between the points $A(1, 2)$ and $B(4, 6)$ on a coordinate plane. **Step 1:** The horizontal distance is the difference in $x$-coordinates, and the vertical distance is the difference in $y$-coordinates. These form the two legs of a right triangle. $$\Delta x = 4 - 1 = 3$$ $$\Delta y = 6 - 2 = 4$$ **Step 2:** Apply the Pythagorean theorem (this is how the distance formula is derived). $$d = \sqrt{(\Delta x)^2 + (\Delta y)^2} = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25}$$ **Step 3:** Simplify. $$d = 5$$ **Answer:** The distance between $A$ and $B$ is **5 units**. ## Common Mistakes **Mistake 1: Forgetting to take the square root as the final step** ❌ $c = 6^2 + 8^2 = 36 + 64 = 100$ (stopping here and claiming $c = 100$) ✅ $c = \sqrt{6^2 + 8^2} = \sqrt{100} = 10$ Why this matters: The formula gives you $c^2$, not $c$. You must take the square root to get the actual side length. Forgetting this step gives an answer that is far too large and has incorrect units (square units instead of linear units). **Mistake 2: Using the formula on non-right triangles** ❌ A triangle with sides 5, 7, and 9: assuming $5^2 + 7^2 = 9^2$ and "solving" for a missing angle. ✅ First check: $25 + 49 = 74$, but $9^2 = 81$. Since $74 \neq 81$, this is **not** a right triangle. The Pythagorean theorem does not apply directly. Why this matters: The theorem only works for right triangles. Applying it to other triangles gives incorrect results. Always confirm the triangle has a 90-degree angle before using $a^2 + b^2 = c^2$. **Mistake 3: Subtracting when you should add (or vice versa)** ❌ Finding the hypotenuse: $c = \sqrt{13^2 - 5^2}$ (subtracting instead of adding) ✅ Finding the hypotenuse: $c = \sqrt{a^2 + b^2}$. Only subtract when finding a **leg**: $a = \sqrt{c^2 - b^2}$. Why this matters: You add the squares of the two legs to find the hypotenuse, and you subtract a leg's square from the hypotenuse's square to find the other leg. Mixing these up gives a wrong (and sometimes impossible) answer. ## Practice Problems Try these on your own before checking the answers: 1. A right triangle has legs of 9 cm and 12 cm. Find the hypotenuse. 2. A right triangle has a hypotenuse of 17 m and one leg of 8 m. Find the other leg. 3. Do the sides 11, 60, and 61 form a right triangle? 4. A rectangular TV screen is 48 inches wide and 36 inches tall. What is the diagonal measurement (screen size)? 5. Find the distance between points $P(-2, 3)$ and $Q(4, -5)$. Click to see answers 1. $c = \sqrt{9^2 + 12^2} = \sqrt{81 + 144} = \sqrt{225} = 15$ cm. 2. $a = \sqrt{17^2 - 8^2} = \sqrt{289 - 64} = \sqrt{225} = 15$ m. 3. Check: $11^2 + 60^2 = 121 + 3600 = 3721$. And $61^2 = 3721$. Yes, it **is** a right triangle. 4. $d = \sqrt{48^2 + 36^2} = \sqrt{2304 + 1296} = \sqrt{3600} = 60$ inches. 5. $d = \sqrt{(4-(-2))^2 + (-5-3)^2} = \sqrt{6^2 + (-8)^2} = \sqrt{36 + 64} = \sqrt{100} = 10$ units. ## Summary - The **Pythagorean theorem** states that in a right triangle, $a^2 + b^2 = c^2$, where $c$ is the hypotenuse and $a$, $b$ are the legs. - To find the hypotenuse, **add** the squares of the legs and take the square root: $c = \sqrt{a^2 + b^2}$. - To find a missing leg, **subtract** and take the square root: $a = \sqrt{c^2 - b^2}$. - You can test whether three side lengths form a right triangle by checking if $a^2 + b^2 = c^2$. - The theorem is the foundation for the **distance formula** used in coordinate geometry. --- ## Ratio Word Problems with Step-by-Step Solutions URL: https://mathpal.study/learn/ratio-word-problems Description: Solve ratio word problems confidently with a clear strategy, worked examples, and practice problems. Covers sharing, mixing, scaling, and comparison for grades 6-7. Keywords: ratio word problems with answers, ratio word problems, ratio problems step by step, sharing in a given ratio, ratio and proportion word problems, ratio problems grade 6 7 Tags: grade-6, grade-7, arithmetic # Ratio Word Problems with Step-by-Step Solutions > **Grade:** 6-7 | **Topic:** Arithmetic ## What You Will Learn After this lesson you will be able to solve common types of ratio word problems including sharing a quantity in a given ratio, finding missing amounts, scaling recipes, and comparing quantities. You will master the "parts method" — a reliable strategy that works on every ratio word problem. ## Theory ### The "parts" method Most ratio word problems ask you to divide a total into parts described by a ratio. The strategy is always the same: 1. **Add** the ratio parts to find the total number of parts. 2. **Divide** the actual total by the number of parts to find the **value of one part**. 3. **Multiply** to find each share. For a ratio $a : b$ sharing a total $T$: $$\text{Total parts} = a + b$$ $$\text{Value of one part} = \frac{T}{a + b}$$ $$\text{First share} = a \times \frac{T}{a + b} \qquad \text{Second share} = b \times \frac{T}{a + b}$$ ### When only part of the total is known Sometimes the problem gives you one share instead of the total. In that case: 1. Set up the ratio parts. 2. Use the known share to find the value of one part. 3. Multiply to find the unknown share(s) or the total. For example, if the ratio is $3 : 5$ and the first share is 24: $$3 \text{ parts} = 24 \implies 1 \text{ part} = 8$$ $$\text{Second share} = 5 \times 8 = 40$$ ### When the difference is known If you are told the **difference** between two shares: $$\text{Difference in parts} = |a - b|$$ $$\text{Value of one part} = \frac{\text{difference}}{|a - b|}$$ Then multiply each ratio part by the value of one part to find the actual amounts. ## Worked Examples ### Example 1: Sharing money in a ratio (easy) **Problem:** Sarah and Tom share \$60 in the ratio $2 : 3$. How much does each person get? **Step 1:** Total parts = $2 + 3 = 5$. **Step 2:** Value of one part = $\frac{60}{5} = 12$. **Step 3:** Calculate each share. $$\text{Sarah} = 2 \times 12 = \$24$$ $$\text{Tom} = 3 \times 12 = \$36$$ **Answer:** Sarah gets **\$24** and Tom gets **\$36**. **Check:** $24 + 36 = 60$ ✓ and $24 : 36 = 2 : 3$ ✓ ### Example 2: Three-way split (medium) **Problem:** Three friends share 180 stickers in the ratio $2 : 3 : 4$. How many stickers does each friend get? **Step 1:** Total parts = $2 + 3 + 4 = 9$. **Step 2:** Value of one part = $\frac{180}{9} = 20$. **Step 3:** Calculate each share. $$\text{Friend A} = 2 \times 20 = 40$$ $$\text{Friend B} = 3 \times 20 = 60$$ $$\text{Friend C} = 4 \times 20 = 80$$ **Answer:** The friends get **40**, **60**, and **80** stickers respectively. **Check:** $40 + 60 + 80 = 180$ ✓ ### Example 3: Finding the total from one share (medium) **Problem:** The ratio of boys to girls in a club is $5 : 3$. If there are 20 boys, how many girls are there and how many members are in the club? **Step 1:** Boys represent 5 parts, and 5 parts = 20. $$\text{Value of one part} = \frac{20}{5} = 4$$ **Step 2:** Girls represent 3 parts. $$\text{Girls} = 3 \times 4 = 12$$ **Step 3:** Total members. $$\text{Total} = 20 + 12 = 32$$ **Answer:** There are **12 girls** and **32 members** total. ### Example 4: Using the difference (medium) **Problem:** Two brothers share an inheritance in the ratio $7 : 4$. The older brother receives \$1,500 more than the younger brother. How much does each receive? **Step 1:** Difference in parts = $7 - 4 = 3$ parts. **Step 2:** 3 parts = \$1,500, so one part = $\frac{1500}{3} = 500$. **Step 3:** Calculate each share. $$\text{Older brother} = 7 \times 500 = \$3{,}500$$ $$\text{Younger brother} = 4 \times 500 = \$2{,}000$$ **Answer:** The older brother gets **\$3,500** and the younger brother gets **\$2,000**. **Check:** $3500 - 2000 = 1500$ ✓ and $3500 : 2000 = 7 : 4$ ✓ ### Example 5: Recipe scaling with a ratio (challenging) **Problem:** A fruit punch recipe mixes orange juice, apple juice, and water in the ratio $3 : 2 : 5$. If you want to make 4 liters of punch, how many milliliters of each ingredient do you need? **Step 1:** Convert to milliliters: 4 liters = 4000 mL. **Step 2:** Total parts = $3 + 2 + 5 = 10$. **Step 3:** Value of one part = $\frac{4000}{10} = 400$ mL. **Step 4:** Calculate each ingredient. $$\text{Orange juice} = 3 \times 400 = 1200 \text{ mL}$$ $$\text{Apple juice} = 2 \times 400 = 800 \text{ mL}$$ $$\text{Water} = 5 \times 400 = 2000 \text{ mL}$$ **Answer:** **1200 mL** of orange juice, **800 mL** of apple juice, and **2000 mL** of water. **Check:** $1200 + 800 + 2000 = 4000$ mL ✓ ## Common Mistakes **Mistake 1: Using the ratio numbers as the actual amounts** ❌ "The ratio is $2 : 3$, so Sarah gets \$2 and Tom gets \$3." ✅ The ratio tells you the relative sizes, not the actual amounts. You need to calculate the value of one part first. Why this matters: Ratio numbers represent parts, not quantities. A ratio of $2 : 3$ means "for every 2 one person gets, the other gets 3" — the actual amounts depend on the total. **Mistake 2: Adding instead of multiplying to find each share** ❌ One part = 12, so Sarah's share = $12 + 2 = 14$ ✅ Sarah's share = $12 \times 2 = 24$ Why this matters: Each person gets their number of parts times the value of one part. Addition gives a meaningless result. **Mistake 3: Using the total instead of the difference** ❌ Problem says "A has \$100 more than B" with ratio $5 : 3$. Student does $\frac{100}{8} = 12.5$ per part. ✅ The difference is $5 - 3 = 2$ parts. One part = $\frac{100}{2} = 50$. Why this matters: When the problem gives a difference (not a total), divide by the difference in parts, not the sum. Read the problem carefully to identify what number represents. ## Practice Problems Try these on your own before checking the answers: 1. Divide 72 in the ratio $4 : 5$. 2. A painter mixes red and white paint in the ratio $1 : 4$. How much of each color is needed to make 15 liters? 3. The ratio of cats to dogs at a shelter is $3 : 7$. If there are 21 cats, how many dogs are there? 4. Two workers split their earnings in the ratio $5 : 3$. If the first worker earned \$200 more than the second, how much did each earn? 5. A map uses a scale of $1 : 50{,}000$. If two towns are 8 cm apart on the map, what is the real distance in km? Click to see answers 1. Total parts = 9. One part = $\frac{72}{9} = 8$. Shares: $4 \times 8 = 32$ and $5 \times 8 = 40$. 2. Total parts = $1 + 4 = 5$. One part = $\frac{15}{5} = 3$ L. Red: 3 L, White: 12 L. 3. 3 parts = 21, so one part = 7. Dogs = $7 \times 7 = 49$. 4. Difference in parts = $5 - 3 = 2$. One part = $\frac{200}{2} = 100$. First: \$500, Second: \$300. 5. $8 \text{ cm} \times 50{,}000 = 400{,}000 \text{ cm} = 4 \text{ km}$. ## Summary - Use the **parts method**: add ratio parts, divide the total to find one part's value, then multiply. - When only **one share** is known, use it to find the value of one part, then scale to the others. - When the **difference** between shares is given, divide by the difference in ratio parts (not the sum). - Always **check** that your shares add up to the total and simplify to the original ratio. --- ## Two-Way Tables — How to Organize and Interpret Data URL: https://mathpal.study/learn/two-way-tables Description: Learn how to read and create two-way frequency tables, calculate joint and marginal frequencies, and find conditional relative frequencies with examples. Keywords: two way tables math, two-way frequency table, joint frequency, marginal frequency, relative frequency table, interpreting two-way tables Tags: grade-7, grade-8, statistics # Two-Way Tables — How to Organize and Interpret Data > **Grade:** 7-8 | **Topic:** Statistics ## What You Will Learn A **two-way table** lets you see how two categorical variables interact — for example, sport preference broken down by gender. In this guide you will learn to read existing tables, complete missing cells, convert counts to relative frequencies, and answer probability questions from table data. ## Theory ### Structure of a two-way table A two-way frequency table has: - **Rows** for one categorical variable (e.g., Gender: Boy / Girl) - **Columns** for another categorical variable (e.g., Sport: Soccer / Basketball / Tennis) - **Cells** showing how many people fall into each combination - **Marginal totals** in the last row and last column Example structure: | | Soccer | Basketball | Tennis | **Total** | |---|---|---|---|---| | Boy | 30 | 18 | 12 | **60** | | Girl | 20 | 25 | 15 | **60** | | **Total** | **50** | **43** | **27** | **120** | ### Types of frequency **Joint frequency:** the count in one cell — how many people fit both categories. E.g., 30 boys prefer soccer. **Marginal frequency:** the total for a row or column. E.g., 60 boys total, 50 students prefer soccer. **Relative frequency:** a count expressed as a fraction or percentage of the grand total. $$\text{Relative frequency} = \frac{\text{cell count}}{\text{grand total}}$$ **Conditional relative frequency:** a cell count expressed as a fraction of its row or column total. $$\text{Conditional relative frequency (row)} = \frac{\text{cell count}}{\text{row total}}$$ ### Reading the table To find the number of girls who prefer basketball, locate the Girl row and Basketball column: **25**. To find the total who prefer tennis: look at the Tennis column total: **27**. ## Worked Examples ### Example 1 — Completing a two-way table A survey of 80 students asked whether they prefer cats or dogs, split by grade 7 and grade 8. | | Cats | Dogs | Total | |---|---|---|---| | Grade 7 | 18 | 22 | 40 | | Grade 8 | ? | 25 | 40 | | **Total** | ? | ? | 80 | **Step 1:** Grade 8 cats = 40 - 25 = **15**. **Step 2:** Total cats = 18 + 15 = **33**. **Step 3:** Total dogs = 22 + 25 = **47**. **Check:** 33 + 47 = 80 ✓. ### Example 2 — Relative frequency Using the completed table above, what fraction of all students prefer cats? $$\frac{33}{80} = 0.4125 \approx 41.3\%$$ ### Example 3 — Conditional relative frequency What proportion of grade 7 students prefer dogs? $$\frac{22}{40} = 0.55 = 55\%$$ This is a **conditional** relative frequency because the condition is "given the student is in grade 7." ### Example 4 — Comparing groups Is there a difference in cat preference between grades? - Grade 7: $\frac{18}{40} = 45\%$ prefer cats. - Grade 8: $\frac{15}{40} = 37.5\%$ prefer cats. Grade 7 students prefer cats at a higher rate. A two-way table makes this comparison visible. ## Common Mistakes ### Mistake 1 — Adding marginal totals incorrectly ❌ Adding all the row totals and column totals to find the grand total, counting each number twice. ✅ The grand total equals the sum of **all row totals** (or all column totals) — not both. The grand total appears only once, in the bottom-right corner. ### Mistake 2 — Confusing joint and conditional frequency ❌ "30 boys prefer soccer" means 30 out of all boys prefer soccer. ✅ The **joint** frequency is 30 (out of the grand total 120). The conditional frequency of soccer given boy is $\frac{30}{60} = 50\%$ of boys. ### Mistake 3 — Dividing by the wrong total for conditional frequency ❌ Finding the probability that a soccer fan is a boy: dividing 30 by 120 (grand total). ✅ Divide by the **soccer column total**: $\frac{30}{50} = 60\%$ of soccer fans are boys. ## Practice Problems **Problem 1:** Complete the table. | | Morning | Evening | Total | |---|---|---|---| | Monday | 15 | 20 | ? | | Tuesday | 12 | ? | 30 | | **Total** | ? | ? | ? | Show Answer Monday total = 35; Tuesday evening = 18; Total morning = 27; Total evening = 38; Grand total = 65. **Problem 2:** Using the sports table from the Theory section, what percentage of all students prefer basketball? Show Answer $\dfrac{43}{120} \approx 35.8\%$ **Problem 3:** In the sports table, what proportion of girls prefer soccer? Show Answer $\dfrac{20}{60} = \dfrac{1}{3} \approx 33.3\%$ **Problem 4:** A student is chosen at random. What is the probability they are a boy who prefers tennis? Show Answer $\dfrac{12}{120} = \dfrac{1}{10} = 10\%$ **Problem 5:** Do boys or girls show a stronger preference for basketball? Show Answer Boys: $\dfrac{18}{60} = 30\%$. Girls: $\dfrac{25}{60} \approx 41.7\%$. **Girls** show a stronger preference for basketball. ## Summary - A **two-way table** organises counts for two categorical variables — rows for one, columns for the other. - **Joint frequency:** a single cell count. **Marginal frequency:** a row or column total. - **Relative frequency:** divide any count by the grand total. - **Conditional relative frequency:** divide a cell count by its row or column total, depending on the condition. - Two-way tables make it easy to compare groups and identify patterns in categorical data. ## Related Topics - [Data Collection and Analysis](/learn/data-collection-analysis) — how to organise raw data before building a table --- **Need help with two-way tables?** Take a photo of your math problem and MathPal will solve it step by step. [Open MathPal](https://mathpal.study) ---