Tag: 统计

  • Quick Reference Handbook of Statistical Formulas and Theorems | 统计公式定理速查手册

    📚 Quick Reference Handbook of Statistical Formulas and Theorems | 统计公式定理速查手册

    This handbook provides a concise summary of key statistical formulas and theorems covered in the SQA Year 8 (Scottish CfE Level 2/3) curriculum. Use it to quickly revise definitions, calculation steps, and graph-drawing rules. Each section presents the essential knowledge you need to tackle data handling and probability questions with confidence.

    本手册简明归纳了 SQA 八年级(苏格兰卓越课程二级/三级)统计部分的核心公式和定理,供你快速回顾定义、计算步骤和绘图规则。每一节都提炼了攻克数据处理与概率题所必需的核心知识,助你自信迎考。


    1. Mean | 平均数

    The mean is the average value of a data set. To find the mean, add up all the data values and then divide the total by the number of values. The formula is:

    平均数是一组数据的平均值。求平均数时,先把所有数据值加起来,再用总和除以数据个数。其公式为:

    Mean = (Sum of values) ÷ (Number of values)

    For example, to calculate the mean of 4, 7, 9, 12 and 3: sum = 4+7+9+12+3 = 35, number = 5, so mean = 35 ÷ 5 = 7. The mean can be a decimal even if all data values are whole numbers.

    例如,计算 4、7、9、12 和 3 的平均数:和 = 4+7+9+12+3 = 35,个数 = 5,所以平均数 = 35 ÷ 5 = 7。即使所有数据值都是整数,平均数也可能为小数。


    2. Median | 中位数

    The median is the middle value when the data is arranged in ascending (or descending) order. If there is an odd number of values, the median is the one right in the middle. If there is an even number of values, the median is the mean of the two central values.

    中位数是指将数据按升序(或降序)排列后位于中间位置的数值。若数据个数为奇数,中位数就是正中间的那个数;若为偶数,中位数则是中间两个数的平均数。

    Example with odd count: for 3, 7, 8, 11, 15, the median is 8 (the 3rd value). Example with even count: for 2, 4, 5, 7, 9, 12, order is already correct; the two middle numbers are 5 and 7, so median = (5+7) ÷ 2 = 6.

    奇数个数据示例:3, 7, 8, 11, 15,中位数为 8(第 3 个数)。偶数个数据示例:2, 4, 5, 7, 9, 12 已排好序,中间两数为 5 和 7,因此中位数 = (5+7) ÷ 2 = 6。


    3. Mode | 众数

    The mode is the value that appears most frequently in a data set. A set may have one mode, more than one mode (bimodal or multimodal) or no mode at all if all values occur equally often. The mode is useful for categorical data (e.g. favourite colour).

    众数是数据集中出现次数最多的值。一个数据集可能有一个众数、多个众数(双众数或多众数),也可能没有众数(若所有值出现次数相同)。众数特别适用于分类数据(如最喜爱的颜色)。

    For instance, in the list 2, 3, 3, 5, 7, 7, 7, 9, the mode is 7 because it appears three times. For the list 4, 5, 6, 7, each number appears once, so there is no mode.

    例如,在数列 2, 3, 3, 5, 7, 7, 7, 9 中,众数是 7,因为 7 出现了三次。而数列 4, 5, 6, 7 中每个数字仅出现一次,因此没有众数。


    4. Range | 极差

    The range is a simple measure of spread. It shows how far apart the smallest and largest values are. The formula is:

    极差是一个简单的离散程度度量,显示数据中最小值与最大值之间的跨度。公式为:

    Range = Largest value – Smallest value

    The range is affected by outliers (extremely high or low values). For example, the temperatures 12 °C, 15 °C, 18 °C, 11 °C, 22 °C have a range of 22 – 11 = 11 °C.

    极差会受到异常值(极高或极低的数值)的影响。例如,气温 12 °C、15 °C、18 °C、11 °C、22 °C 的极差为 22 – 11 = 11 °C。


    5. Frequency Tables | 频率表

    A frequency table organises raw data by showing each value (or category) and how often it occurs (its frequency). The tally column helps count. A frequency table can be used for discrete data or grouped continuous data. The total of all frequencies equals the number of data items.

    频率表通过列出每个数值(或类别)及其出现次数(频率)来整理原始数据。计数栏有助于统计。频率表可用于离散数据或分组连续数据。所有频率之和等于数据总个数。

    Basic structure: first column ‘Data value’ (or ‘Class interval’ for grouped data), second column ‘Tally’, third column ‘Frequency’. Always check that the sum of frequencies matches the total number of data points.

    基本结构:第一列“数据值”(或分组数据的“组距”),第二列“计数”,第三列“频率”。务必检查频率总和是否等于数据点总数。


    6. Mean from a Frequency Table | 频率表求平均数

    When data is presented in a frequency table, the mean is calculated by multiplying each data value by its frequency, summing these products, and then dividing by the sum of the frequencies. The formula is:

    当数据以频率表呈现时,计算平均数的步骤是:将每个数据值乘以其频率,求这些乘积的总和,再除以频率总和。公式为:

    Mean = (Σ x × f) ÷ (Σ f)

    Here x represents the data value, f is the frequency, Σ means ‘sum of’. For grouped data, use the midpoint of each interval as x.

    其中 x 代表数据值,f 代表频率,Σ 表示“求和”。对于分组数据,用每个区间的中点作为 x。

    Example: value 2 (freq 3), value 5 (freq 4), value 8 (freq 2). Σfx = 2×3 + 5×4 + 8×2 = 6 + 20 + 16 = 42. Σf = 3+4+2 = 9. Mean = 42 ÷ 9 = 4.667 (approx.).

    示例:数值 2(频率 3),数值 5(频率 4),数值 8(频率 2)。Σfx = 2×3 + 5×4 + 8×2 = 6 + 20 + 16 = 42。Σf = 3+4+2 = 9。平均数 = 42 ÷ 9 ≈ 4.667。


    7. Bar Charts | 条形图

    A bar chart represents categorical or discrete data with rectangular bars. The height of each bar shows the frequency. Important rules: bars must be of equal width and there must be gaps between the bars (unless it is a histogram). Both axes must be labelled, and the chart must have a title.

    条形图用矩形条表示分类数据或离散数据,条的高度代表频率。重要规则:条宽必须相等,条与条之间要留空隙(直方图除外)。两条坐标轴必须标注,图表须有标题。

    When drawing a bar chart, use a pencil and ruler. Choose a sensible scale for the vertical axis so that the tallest bar fits on the grid. Label the horizontal axis with the categories or data values.

    绘制条形图时,使用铅笔和直尺。为纵轴选择合适的刻度,使最高的条能容纳在网格内。横轴标注类别或数据值。


    8. Pie Charts | 饼图

    A pie chart shows proportions of a whole. The angle of each sector is calculated using the formula:

    饼图用于展示整体中各部分的比例。每个扇形的角度用以下公式计算:

    Sector angle = (Category frequency ÷ Total frequency) × 360°

    Draw a circle using a compass, then use a protractor to measure and draw each angle from the centre. Label each sector or provide a key. The angles must sum to 360°.

    先用圆规画一个圆,再用量角器从圆心量出并绘制每个角度。为每个扇形添加标签或提供图例。所有角度之和须为 360°。


    9. Line Graphs | 折线图

    A line graph is used to display changes in data over time (time series). Points are plotted for each time interval and connected by straight lines. The horizontal axis shows time, and the vertical axis shows the quantity being measured. A line graph can reveal trends: increasing, decreasing or stable.

    折线图用于展示数据随时间(时间序列)的变化。在每个时间间隔上描点,再用直线连接各点。横轴表示时间,纵轴表示被测量的量。折线图能揭示趋势:上升、下降或平稳。

    When plotting, choose appropriate scales, mark points clearly, and label both axes. Do not connect points across gaps where data is missing unless you draw a dotted line to indicate estimation.

    绘图时,选择合适的刻度,清晰地标记坐标点,并标注两条坐标轴。若有数据缺失的断点,不要直接连直线,除非用虚线表示估算。


    10. Scatter Graphs & Correlation | 散点图与相关性

    A scatter graph shows the relationship between two numerical variables. Each point on the graph represents one data item, plotted according to its two values. Correlation describes the direction and strength of the relationship:

    散点图用于显示两个数值变量之间的关系。图中每个点代表一个数据项,根据其两个值定位。相关性描述这种关系的方向和强度:

    • Positive correlation: as one variable increases, the other also increases.
    • Negative correlation: as one variable increases, the other decreases.
    • No correlation: no clear pattern.
    • 正相关:一个变量增大时,另一个也增大。
    • 负相关:一个变量增大时,另一个减小。
    • 无相关性:没有明显规律。

    You can draw a line of best fit through the points if the correlation is strong. This line should have roughly equal numbers of points above and below it. Use the line to estimate unknown values (interpolation within the range, extrapolation beyond).

    若相关性较强,可以画一条最佳拟合线穿过散点。该线上下两边的点数应大致相等。可用这条线估算未知值(范围内插值,范围外推值)。


    11. Probability Scale & Simple Probability | 概率尺度与简单概率

    Probability is a measure of how likely an event is to happen. It can be expressed as a fraction, decimal or percentage. The probability scale runs from 0 (impossible) to 1 (certain). The formula for equally likely outcomes is:

    概率是衡量事件发生可能性大小的量,可用分数、小数或百分数表示。概率尺度从 0(不可能)到 1(必然)。等可能结果条件下的公式为:

    Probability = (Number of favourable outcomes) ÷ (Total number of possible outcomes)

    For example, the probability of rolling an even number on a fair six-sided die is 3/6 = 1/2. The complement rule states that the probability of an event not occurring is 1 minus the probability that it does occur: P(not A) = 1 – P(A).

    例如,掷一枚均匀六面骰子得到偶数的概率是 3/6 = 1/2。互补规则指出,某事件不发生的概率等于 1 减去它发生的概率:P(非 A) = 1 – P(A)。


    12. Sample Space Diagrams | 样本空间图

    A sample space is a list of all possible outcomes of an experiment. A sample space diagram (listing or table) helps ensure you count all outcomes correctly. For two events, a two-way table is useful to find combined probabilities.

    样本空间是试验所有可能结果的集合。样本空间图(列表或表格)有助于确保你正确计数所有结果。对于两个事件,可用双向表格来求组合概率。

    For example, when flipping a coin and rolling a die, the sample space has 2 × 6 = 12 outcomes. The table helps identify, for instance, the probability of getting a head and an odd number: count favourable cells and divide by 12.

    例如,抛一枚硬币并掷一次骰子,样本空间共有 2 × 6 = 12 种结果。通过表格可找出得到正面且奇数的概率:数出符合的格子数,再除以 12。

    Published by TutorHao | Statistics Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 SQA Statistics: Key Concepts Review | Year 8 SQA 统计:核心知识点梳理

    📚 Year 8 SQA Statistics: Key Concepts Review | Year 8 SQA 统计:核心知识点梳理

    Welcome to your essential guide to Year 8 SQA Statistics. This article breaks down the fundamental concepts you need to master, from collecting and presenting data to calculating averages and exploring the basics of probability. Each topic is explained clearly with examples to build your confidence and prepare you for assessments.

    欢迎来到 Year 8 SQA 统计核心指南。本文将拆解你需要掌握的基础概念,涵盖数据收集与展示、平均数计算以及概率入门。每个主题都辅以清晰说明和示例,帮你建立信心,为考试做好准备。


    1. Types of Data | 数据类型

    Data can be classified into two main types: qualitative and quantitative. Qualitative data describes qualities or categories, such as favourite colours or types of pet. Quantitative data involves numbers and can be further divided into discrete data (countable, like the number of students in a class) and continuous data (measurable, like height or time).

    数据主要分为两类:定性数据和定量数据。定性数据描述性质或类别,例如最喜欢的颜色或宠物类型。定量数据涉及数字,可进一步分为离散数据(可数的,如班级学生人数)和连续数据(可测量的,如身高或时间)。


    2. Collecting Data | 数据收集

    Reliable data collection is the first step in any statistical investigation. You can collect primary data yourself through surveys, experiments, or observations. Secondary data comes from sources that already exist, such as books, websites, or census records. When designing a survey, always write clear, unbiased questions and consider your sample size—a larger, random sample generally gives more trustworthy results.

    可靠的数据收集是任何统计调查的第一步。你可以通过问卷调查、实验或观察自行收集一手数据。二手数据则来自已有资料,如书籍、网站或人口普查记录。设计调查问卷时,一定要编写清晰、无偏见的题目,并考虑样本量——较大且随机的样本通常能给出更可信的结果。


    3. Frequency Tables | 频数表

    A frequency table organises raw data by showing how often each value or category appears. Tally marks are often used to record observations efficiently. The total of the frequency column gives you the number of data points. Frequency tables make it much easier to spot patterns and calculate statistics like the mode.

    频数表通过显示每个数值或类别出现的次数来整理原始数据。通常使用画“正”字(计数符号)来高效记录观察结果。频数列的总和就是数据点的总数。频数表能让你更容易发现模式并计算众数等统计量。


    4. Bar Charts and Pictograms | 条形图和象形图

    Bar charts display categorical data using rectangular bars, where the height of each bar represents the frequency. The bars must be of equal width and separated by gaps. Pictograms use symbols or pictures to represent data—always check the key to see what one symbol stands for. Both graphs need clear titles and labelled axes.

    条形图用长方形条展示类别数据,每条的高度代表频数。条形宽度必须相等,且条与条之间留有间隙。象形图用符号或图画表示数据——务必查看图例,了解每个符号代表多少数量。两种图都需要清晰的标题和坐标轴标签。

    • Example: If 1 apple picture represents 4 students and you have 3 apples, that represents 12 students who prefer apples.
    • 示例:如果 1 个苹果图案代表 4 名学生,有 3 个苹果,则表示 12 名学生喜欢苹果。

    5. Pie Charts | 饼图

    Pie charts show proportions of a whole. Each sector’s angle is calculated by the formula: Angle = (Frequency ÷ Total frequency) × 360°. A full circle is 360°, so you multiply the fraction of the whole by 360. Always include a key and use a protractor for accuracy. Pie charts are excellent for visualising relative sizes but can be tricky when there are too many categories.

    饼图展示整体的各个部分。每个扇形的角度通过公式计算:角度 = (频数 ÷ 总频数) × 360°。一整圈是 360°,所以你需要将所占整体的分数乘以 360。务必添加图例并使用量角器以确保精确。饼图非常适合呈现相对大小,但当类别过多时会变得棘手。

    Angle of sector = (Frequency ÷ Total) × 360°


    6. Mean, Median, Mode and Range | 平均数、中位数、众数和范围

    These four measures summarise a data set in different ways. The mean is the arithmetic average, found by adding all values and dividing by the number of values. The median is the middle value when data is ordered—if there are two middle numbers, take their mean. The mode is the most frequent value, and the range is the difference between the largest and smallest values, showing how spread out the data is.

    这四个度量以不同方式概括一组数据。平均数是算术平均值,计算方法是将所有数值相加再除以数值的个数。中位数是将数据排序后的中间值——如果有两个中间数,则取它们的平均数。众数是出现最频繁的数值,范围则是最大值与最小值的差,显示数据的分散程度。

    Mean = Σx ÷ n

    Range = Highest value – Lowest value

    • For data set 3, 7, 7, 9, 12: Mean = (3+7+7+9+12) ÷ 5 = 7.6, Median = 7, Mode = 7, Range = 12 – 3 = 9.
    • 对于数据组 3, 7, 7, 9, 12:平均数 = (3+7+7+9+12) ÷ 5 = 7.6,中位数 = 7,众数 = 7,范围 = 12 – 3 = 9。

    7. Comparing Data Sets | 比较数据集

    To compare two or more data sets, you should look at both an average (mean or median) and the spread (range or interquartile range). A higher mean suggests generally larger values, but a larger range indicates more variability. Always refer back to the context—for example, when comparing test scores, you might say ‘Class A has a higher median score but Class B’s scores are more consistent’.

    比较两组或更多数据时,应同时考察平均数(均值或中位数)和离散程度(范围或四分位距)。较高的平均数通常表明数值普遍更大,而较大的范围则表示数据变异性更强。一定要结合具体情境——例如,比较考试成绩时,你可能会说“A 班的中位数分数更高,但 B 班的成绩更稳定”。


    8. Introduction to Probability | 概率入门

    Probability measures how likely an event is to happen. It is calculated as: Probability of an event = Number of favourable outcomes ÷ Total number of possible outcomes. Probabilities can be written as fractions, decimals, or percentages. An event that is impossible has a probability of 0, while a certain event has a probability of 1.

    概率衡量一个事件发生的可能性大小。计算公式为:事件的概率 = 有利结果的数量 ÷ 所有可能结果的总数。概率可用分数、小数或百分数表示。不可能发生的事件概率为 0,必然发生的事件概率为 1。

    Probability (Event) = Number of favourable outcomes ÷ Total outcomes


    9. Probability Scale | 概率尺度

    The probability scale is a visual line from 0 to 1. Mark 0 as ‘impossible’, ½ as ‘even chance’, and 1 as ‘certain’. Words like ‘unlikely’, ‘likely’, and ‘very likely’ help describe positions on the scale. Placing events on this scale sharpens your ability to estimate likelihoods without exact calculation.

    概率尺度是一条从 0 到 1 的视觉标尺。标出 0 为“不可能”,½ 为“机会均等”,1 为“必然”。像“不太可能”“可能”“非常可能”这样的词汇有助于描述标尺上的位置。将事件放置在标尺上能提升你不经精确计算而估计可能性的能力。


    10. Simple Probability Experiments | 简单概率实验

    Experiments like flipping a coin, rolling a die, or spinning a spinner help you understand probability through action. For a fair coin, P(Heads) = ½. For a fair six-sided die, P(even number) = 3/6 = ½. Recording outcomes in a frequency table and comparing experimental probability to theoretical probability reveals how real-life results can vary from expected ideals.

    抛硬币、掷骰子或转动转盘等实验能通过实际操作帮你理解概率。对于一枚公平的硬币,P(正面) = ½。对于一颗公平的六面骰子,P(偶数) = 3/6 = ½。将结果记录在频数表中,并比较实验概率与理论概率,可以揭示现实结果与预期理想之间可能存在的差异。


    11. Expected Outcomes | 期望结果

    If you know the probability of an event and the number of trials, you can predict the expected frequency: Expected number = Probability × Number of trials. For instance, if you roll a die 300 times, the expected number of sixes is (1/6) × 300 = 50. This does not guarantee exactly 50 sixes, but gives a long-term average if the experiment were repeated many times.

    如果你知道一个事件的概率和试验次数,就可以预测期望频数:期望次数 = 概率 × 试验次数。例如,掷一颗骰子 300 次,出现六点的期望次数是 (1/6) × 300 = 50。这并不保证恰好出现 50 次六点,而是给出如果重复许多次实验的长期平均值。


    12. Misleading Graphs and Bias | 误导性图表与偏差

    Not all graphs tell the truth. A bar chart with a truncated y-axis (not starting at zero) can exaggerate small differences. Using 3D effects or inconsistent scales can distort perception. Similarly, a biased question like ‘Don’t you agree that homework is a waste of time?’ pushes respondents toward a particular answer. Always examine data presentations critically.

    并非所有图表都反映真相。纵轴被截断(不从零开始)的条形图会夸大微小差异。使用 3D 效果或不一致的刻度会扭曲印象。类似地,一个有偏见的提问,如“你难道不认为家庭作业是浪费时间吗?”,会诱导受访者给出特定答案。始终以批判性眼光审视数据展示。

    Published by TutorHao | Statistics Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Stats Terms Memory Guide for Year 8 Cambridge | 剑桥八年级统计词汇速记指南

    📚 Stats Terms Memory Guide for Year 8 Cambridge | 剑桥八年级统计词汇速记指南

    Welcome to your Year 8 Cambridge Statistics memory guide! This article will help you quickly master key vocabulary through bilingual explanations and clever mnemonics. By linking technical terms to mental images and patterns, you’ll build a solid foundation for data handling and probability. Let’s dive into the world of data, charts, averages and chance.

    欢迎来到八年级剑桥统计词汇速记指南!本文通过双语解释和巧妙记忆法帮助你快速掌握核心术语。把专业词汇与心理图像和模式联系起来,你就能为数据处理和概率打下扎实基础。下面我们一起进入数据、图表、平均数和概率的世界。


    1. Data and Surveys | 数据与调查

    Data is the raw information we collect, measure and analyse. In statistics, a survey uses questions to gather data from a group. If you collect data yourself, it’s primary data; if you use data someone else collected, it’s secondary data. Remember: primary = personal, secondary = second-hand.

    数据是我们收集、测量和分析的原始信息。在统计学中,调查通过提问从群体中收集数据。如果你自己收集数据,那就是一手数据;若使用他人收集的数据,则是二手数据。记住:一手数据亲自采集,二手数据来自别人。

    A well-designed survey uses clear, unbiased questions. Always check whether the data is categorical (like favourite colour) or numerical (like height). Think of categories as ‘labels’ and numbers as ‘measurements’.

    一份设计良好的调查会使用清晰、无偏见的问题。始终检查数据是分类数据(如最喜欢的颜色)还是数值数据(如身高)。把分类想成“标签”,数值想成“测量值”。


    2. Population and Sample | 总体与样本

    The population is the entire group you want to know about. A sample is a smaller, manageable subset selected from the population. The sample must be representative, meaning it mirrors the population without bias. Imagine a population as the whole cake and the sample as a slice you taste.

    总体是你要了解的全部群体。样本是从总体中选出的较小、可处理的子集。样本必须具有代表性,即它无偏见地反映总体。把总体想象成整个蛋糕,样本就是尝的那一小块。

    A key skill in Year 8 is identifying whether a sample is random or biased. A random sample gives every member an equal chance of being chosen, like drawing names from a hat. A biased sample over-represents certain groups, e.g., asking only football players about sports preferences.

    八年级的一项关键技能是判断样本是随机的还是有偏的。随机样本让每个成员都有相等机会被选中,比如从帽子里抽名字。有偏样本则过度代表某些群体,例如只问足球运动员关于运动偏好。


    3. Data Types: Discrete, Continuous and Categorical | 数据类型:离散、连续和分类

    Discrete data can only take separate, countable values, like the number of students in a class (0, 1, 2, …). There are no in-between values – you can’t have 2.5 students. Think discrete = distinct points on a number line.

    离散数据只能取分离、可数的值,如班级学生人数(0, 1, 2, …)。没有中间值——你不可能有2.5个学生。把离散想象成数字线上分开的点。

    Continuous data can take any value within a range, like height, mass or temperature. You measure rather than count it. The word ‘continuous’ hints that the number line continues smoothly without gaps.

    连续数据可以取某个范围内的任何值,如身高、质量或温度。你需要测量而不是计数。‘连续’这个词暗示数字线平滑延续,没有间隔。

    Categorical data (also called qualitative data) describes qualities or groups, e.g., hair colour, types of pet. These can be ordered (ordinal, like survey ratings) or not (nominal, like colours). Think of categories as ‘what kind’ not ‘how much’.

    分类数据(也称定性数据)描述性质或组别,如头发颜色、宠物类型。它们可以是有序的(序数,如调查评分)或无序的(名义,如颜色)。把分类想成“哪种”而非“多少”。


    4. Frequency and Tally Charts | 频率与计数表

    Frequency tells you how often something occurs. Tally charts use tally marks (|||| with the fifth mark crossing through) to count quickly. Each group of five makes totals easy to read. The frequency column then records the total for each category.

    频率告诉你某件事发生的次数。计数表使用标记(画四竖一横进行五进制计数)快速计数。每五个一组使总数易于读取。然后频率栏记录每个类别的总数。

    When creating a frequency table, always label columns clearly: category, tally, frequency. This organises raw data into a neat summary. A useful mnemonic: ‘Tally Today, Frequency Final’ to remember the order.

    创建频率表时,始终清晰地标记各列:类别、计数、频率。这就把原始数据整理成简洁的摘要。一个有用的记忆法:‘Tally Today, Frequency Final’(今天计数,频率最终)来记住顺序。


    5. Bar Charts, Pictograms and Pie Charts | 柱状图、象形图和饼图

    Bar charts use rectangular bars to represent frequencies of categories. Bar heights are proportional to the values. In a dual bar chart, two sets of bars are placed side by side for comparison. A key feature: there are gaps between bars because categories are separate.

    柱状图用矩形条来表示各类别的频率。条的高度与数值成比例。在双柱状图中,两组条并排放置以便比较。一个关键特征:条之间有间隔,因为类别是分开的。

    Pictograms use pictures or symbols to show data. Each picture represents a certain number of items. Always check the key – one smiley face might equal 5 students! Pictograms make data visually engaging but can be tricky if the symbol has to be split for exact values.

    象形图用图片或符号来表示数据。每个图片代表一定数量的项目。始终检查图例——一个笑脸可能等于5个学生!象形图让数据更具视觉吸引力,但如果需要拆分符号来表示精确值,就可能变得麻烦。

    Pie charts display proportions of a whole. The full circle (360°) represents all the data. Each slice angle equals (category frequency ÷ total frequency) × 360°. A pie chart answers ‘what share of the whole does each part take?’

    饼图显示整体的比例。整个圆(360°)代表所有数据。每个扇区的角度等于(类别频率 ÷ 总频率)× 360°。饼图回答“各部分占整体的份额是多少?”这个问题。

    Quick memory: Bar for comparing amounts, Pictogram for fun pictures, Pie for parts of a whole.

    快速记忆:柱状图比大小,象形图有趣图,饼图看部分。


    6. Line Graphs and Scatter Graphs | 线形图与散点图

    A line graph is used to show continuous data changing over time. Dots are plotted and connected with straight lines, making trends easy to spot. The horizontal axis often shows time, while the vertical axis shows the measured variable. Remember: ‘Line Links Time’.

    线形图用于显示连续数据随时间的变化。点被标出并用直线连接,便于发现趋势。横轴通常表示时间,纵轴表示测量变量。记住:‘Line Links Time’(线连接时间)。

    A scatter graph (or scatter plot) compares two sets of continuous data to see if there is a relationship. Each dot represents one piece of data with an x-value and a y-value. If the dots go upward, there’s a positive correlation; downward shows a negative correlation; scattered randomly means no correlation.

    散点图比较两组连续数据,看是否存在关系。每个点代表一个数据,具有x值和y值。如果点向上走,存在正相关;向下走体现负相关;随机散布则无相关。

    In Year 8, you describe correlation as positive, negative or none; you don’t calculate exact strength. Just like ‘up together, down opposite’.

    在八年级,你只需将相关性描述为正、负或无;不需要计算精确强度。就像是‘同增为正,一增一减为负’。


    7. Stem-and-Leaf Diagrams | 茎叶图

    A stem-and-leaf diagram organises numerical data while keeping the original values visible. The ‘stem’ is the leading digit(s) and the ‘leaf’ is the final digit. For example, in the number 45, the stem is 4 and the leaf is 5. A key explains the place value, e.g., ‘4|5 means 45’.

    茎叶图在保留原始值的同时组织数值数据。‘茎’是前导数字,‘叶’是最后一位数字。例如,数字45中,茎为4,叶为5。图例说明了位值,如‘4|5 表示 45’。

    Stem-and-leaf plots make it easy to find the median (middle value) and mode (most frequent leaf). Always order the leaves from smallest to largest. A back-to-back stem-and-leaf diagram compares two related datasets by mirroring leaves either side of the stem.

    茎叶图便于找到中位数(中间值)和众数(出现最频繁的叶)。始终将叶从小到大排列。背靠背茎叶图通过在茎的两侧对称排列叶子来比较两个相关的数据集。


    8. Mean, Median and Mode | 平均数:均值、中位数与众数

    The three measures of central tendency help find a typical value in a dataset. Mean is the sum of all values divided by the number of values. The formula:

    三种集中趋势量度帮助找到一个数据集中的典型值。均值是所有值的总和除以值的个数。公式:

    Mean = (Sum of all values) ÷ (Number of values)

    Median is the middle value when data is ordered. If there are two middle numbers, take their mean. Mode is the value that appears most often. A mnemonic: ‘Mean that shares, Median the middle, Mode the most.’

    中位数是将数据排序后中间的值。如果有两个中间数,则取它们的均值。众数是出现频率最高的值。记忆口诀:‘均值求平均,中位数居中,众数看最多’。

    When data is symmetric, mean ≈ median; if skewed, median is a better typical value. In a stem-and-leaf, find the median by crossing off equally from both ends.

    当数据对称时

    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Common Misconceptions in Year 8 Cambridge Statistics and How to Correct Them | 剑桥 Year 8 统计常见误区与纠正方法

    📚 Common Misconceptions in Year 8 Cambridge Statistics and How to Correct Them | 剑桥 Year 8 统计常见误区与纠正方法

    Statistics can be tricky for Year 8 learners because data is not always what it seems. Misunderstanding key concepts can lead to incorrect conclusions in real-life situations. This article highlights common pitfalls and offers clear corrections to help you master statistics.

    对于 8 年级的学生来说,统计有时会让人困惑,因为数据并不总是表面看起来的那样。对关键概念的误解可能导致在现实生活中得出错误结论。本文重点介绍常见误区,并提供清晰的纠正方法,帮助你掌握统计学。


    1. Confusing Mean, Median and Mode | 混淆平均数、中位数与众数

    Many students believe that the word ‘average’ always refers to the mean. They forget that the median and mode are also measures of central tendency and give different information about a dataset. For example, when asked to find the average test score, they simply add all scores and divide by the number of students, without considering if there are extremely high or low marks.

    许多学生认为 “average” 一词总是指平均数(均值)。他们忘记了中位数和众数也是集中趋势的度量,能提供关于数据集的不同信息。例如,当被问到计算考试平均分时,他们只是简单地将所有分数相加再除以学生人数,而不考虑是否存在极高或极低的分数。

    To choose the right average, ask: Does the data have extreme values? Use the median. Are there repeated values? Use the mode. The mean is best when all values are fairly spread out. In a dataset like 2, 3, 3, 4, 100, the mean is 22.4, but the median is 3, which better represents a typical value.

    要选择合适的平均数,可以问:数据有没有极端值?有就用中位数。有没有重复的值?有就用众数。当所有数据分布比较均匀时,均值为最佳选择。比如在数据集 2, 3, 3, 4, 100 中,均值为 22.4,但中位数为 3,后者更能代表典型值。

    Always identify the purpose of your average. If you need to report the most common item, use mode. For a street with one billionaire, the median income gives a far better sense of the typical resident’s wealth than the mean.

    务必明确使用平均数的目的。如果需要报告最常见的项目,用众数。对于住着一位亿万富翁的街道,中位数收入远比均值更能反映典型居民的财富状况。


    2. Miscalculating the Range | 错误计算极差

    The range is the difference between the maximum and minimum values, but students often write down just the largest or smallest number, or they might subtract in the wrong order and get a negative value. Some even think ‘range’ means the set of all values, like ‘the range of marks is from 10 to 90’, but that describes the limits, not the numerical spread.

    极差是最大值与最小值之间的差,但学生常常只写下最大或最小数,或者减法顺序出错从而得到负值。有些人甚至认为“极差”指所有数值的集合,比如“分数的极差是从 10 到 90”,但这只是在描述范围界限,而非数值的分散程度。

    To correct this, always identify the highest and lowest values carefully. Write them down: max = …, min = …, then Range = max – min. Remind yourself that range must be zero or positive. For example, with data 5, 12, 8, 3, the max is 12, min is 3, so range = 12 – 3 = 9.

    纠正方法是,始终仔细找出最高值和最低值。把它们写下来:最大值 = …,最小值 = …,然后极差 = 最大值 – 最小值。提醒自己极差必须为零或正数。例如,对于数据 5, 12, 8, 3,最大值为 12,最小值为 3,极差 = 12 – 3 = 9。

    Some students confuse the range with the interquartile range or think the range is the ‘difference between the middle values’. Keep it simple: range measures how spread out the whole dataset is from the lowest to the highest point.

    有些学生将极差与四分位距混淆,或者认为极差是“中间值之差”。简单记住:极差衡量的是整个数据集从最低到最高点有多分散。


    3. Bar Chart Scale Misinterpretations | 条形图刻度误解

    Bar charts often have scales that do not start at zero or have irregular intervals. Students may look only at the height of bars and draw false conclusions. For instance, a graph comparing scores from 70 to 100 might make a score of 90 look four times taller than 85 when the real difference is just 5 marks.

    条形图经常有不从零开始的刻度,或者间隔不均匀。学生可能只看条形的高度就得出错误结论。例如,一个比较 70 到 100 分的图表可能让 90 分的条形看起来比 85 分高出四倍,而实际差距只有 5 分。

    Always check the vertical axis origin and the scale step. Ask: ‘What is each division worth?’ Compare the actual values written above the bars or on the axis before making inferences. Drawing a horizontal line from the bar top to the axis can help you read the number correctly.

    一定要检查纵轴的原点和刻度步长。问自己:“每个刻度代表多少?” 在推断之前,比较条形上方或轴上标注的实际数值。从条形顶端向纵轴画水平线有助于准确读取数值。

    When a bar chart does not start at zero, the differences can be exaggerated. A good practice is to look at the numerical labels, not just the visual height. If labels are missing, do not jump to conclusions about how much bigger one bar is than another.

    当条形图不从零开始时,差异会被夸大。好的做法是看数字标签,而不只是视觉高度。如果缺少标签,不要轻易下结论说某个条形比另一个大多少。


    4. Pie Chart Misunderstandings | 饼图的理解错误

    Pie charts show parts of a whole, but students often mistakenly estimate percentages directly from angles without calculation. They may think a slice that looks like a quarter is exactly 25%, but without labels it is only an estimate. Another common error is believing the largest sector always represents the mode, even when the data is numerical and mode makes no sense.

    饼图展示的是整体中的部分,但学生常常错误地仅凭角度估计百分比而不加计算。他们可能认为看起来像四分之一的扇形就是精确的 25%,但在没有标注时这只是一个估算。另一个常见错误是认为最大扇形就一定代表众数,即使数据是数值型的、众数没有意义。

    To interpret percentage, use the formula: percentage = (sector angle ÷ 360) × 100. If frequencies are given, divide the category frequency by the total frequency and multiply by 100. Always verify that all percentages sum to 100%, and remember the largest slice corresponds to the highest frequency, which is the modal category only for categorical data.

    要解读百分比,使用公式:百分比 = (扇形角度 ÷ 360) × 100。如果给出了频数,用该类别的频数除以总频数再乘以 100。务必核对所有百分比之和为 100%,并记住最大扇形对应最高频数,这通常仅对分类数据才是众数类别。

    Pie charts are best for showing composition or proportions, not for comparing precise values. If you need to know whether 25% is exactly represented, check the angle or the frequency table that often accompanies the chart.

    饼图最适合展示组成或比例,而不是比较精确数值。如果你需要知道是否精确代表了 25%,请检查角度或图表常附带的频率表。


    5. Frequency Table Errors | 频率表中的错误

    When finding the mean from a frequency table, a typical mistake is to ignore the frequencies and average the data values as if each appeared only once. For example, given ‘1 pet: 4 families, 2 pets: 6 families, 3 pets: 2 families’, students might add 1+2+3=6 and divide by 3, getting 2 pets, instead of using the frequencies.

    在根据频率表求均值时,一个典型错误是无视频率而直接对数据值求平均,好像每个值只出现一次。例如,表格给出“1 只宠物:4 个家庭,2 只宠物:6 个家庭,3 只宠物:2 个家庭”,学生可能会用 1+2+3

    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 Cambridge Statistics Mock Test Walkthrough | 剑桥8年级统计:单元测试模拟卷解析

    📚 Year 8 Cambridge Statistics Mock Test Walkthrough | 剑桥8年级统计:单元测试模拟卷解析

    Welcome to this detailed walkthrough of a Year 8 Cambridge Statistics mock test. Designed to mirror the style and content of a real unit assessment, this paper covers the core topics: calculating averages and range, working with frequency tables, interpreting graphs, and basic probability. Use this article to check your answers, understand common mistakes, and build confidence for your actual test.

    欢迎阅读这篇剑桥8年级统计模拟卷的详细解析。这份试卷模拟了真实单元评估的风格和内容,涵盖了核心主题:计算平均数与极差、处理频率表、解读图表以及基础概率。通过本文,你可以核对答案、理解常见错误,并为实际测试树立信心。


    1. Mean, Median, Mode & Range | 平均数、中位数、众数和极差

    Question: The numbers below show the points scored by a netball team in 9 matches. Find the mean, median, mode and range.
    12, 18, 15, 12, 20, 15, 14, 12, 17

    题目:以下数字显示了一支无挡板篮球队在9场比赛中的得分。求平均数、中位数、众数和极差。
    12, 18, 15, 12, 20, 15, 14, 12, 17

    To find the mean, first add all values: 12+18+15+12+20+15+14+12+17 = 135. There are 9 matches, so divide by 9: 135 ÷ 9 = 15. The mean score is 15.

    求平均数,先求和:12+18+15+12+20+15+14+12+17 = 135。共9场比赛,除以9得 135 ÷ 9 = 15。平均得分为15。

    For the median, arrange the data in order: 12, 12, 12, 14, 15, 15, 17, 18, 20. The middle (5th) value is 15, so the median is 15.

    将数据按顺序排列:12, 12, 12, 14, 15, 15, 17, 18, 20。中间(第5个)值是15,因此中位数为15。

    The mode is the most frequent number. Here 12 appears three times, more than any other number. Thus the mode is 12.

    众数是出现次数最多的数值。12出现了三次,多于其他任何数,所以众数是12。

    Range = maximum − minimum = 20 − 12 = 8. So the range is 8.

    极差 = 最大值 − 最小值 = 20 − 12 = 8。极差为8。


    2. Mean from a Frequency Table | 根据频率表求平均数

    Question: The frequency table shows the number of books read by 30 students in a month. Calculate the mean number of books.

    题目:频率表显示了30名学生一个月内阅读的书籍数量。计算平均读书量。

    Books (x) Frequency (f)
    1 4
    2 7
    3 10
    4 6
    5 3

    First, add a column for ‘fx’ by multiplying each x by its frequency: 1×4=4, 2×7=14, 3×10=30, 4×6=24, 5×3=15. Sum these: 4+14+30+24+15 = 87. Total frequency is 30. Mean = total fx ÷ total f = 87 ÷ 30 = 2.9 books.

    首先,增加列 ‘fx’,用每个 x 乘以其频率:1×4=4, 2×7=14, 3×10=30, 4×6=24, 5×3=15。求和:87。总频率为30。平均数 = 87 ÷ 30 = 2.9 本书。


    3. Interpreting a Bar Chart | 解读条形图

    Question: The bar chart (not shown here) displays the favourite fruit of Year 8 students: apples 22, bananas 35, oranges 18, grapes 25. Which fruit is the most popular? How many more students chose bananas than oranges?

    题目:条形图(此处未显示)展示了8年级学生最喜欢的水果:苹果22人,香蕉35人,橙子18人,葡萄25人。哪种水果最受欢迎?选择香蕉的学生比选择橙子的多多少人?

    Look at the heights of the bars: bananas have the highest frequency (35), so they are the most popular. To find the difference: 35 (bananas) − 18 (oranges) = 17 more students prefer bananas.

    观察条形的高度:香蕉的频率最高(35),因此最受欢迎。求两者差值:35 − 18 = 17,因此喜欢香蕉的学生比喜欢橙子的多17人。


    4. Pie Chart Angles | 饼图角度计算

    Question: A survey asked 60 students how they travel to school. The results: Walk 24, Bus 15, Car 12, Bike 9. Work out the angle for each sector in a pie chart.

    题目:一项调查询问了60名学生的上学交通方式。结果:步行24人,公交车15人,私家车12人,自行车9人。计算饼图中每个扇形的角度。

    Total frequency = 60. The whole pie chart is 360°. The angle for Walk: (24/60) × 360 = 0.4 × 360 = 144°. For Bus: (15/60) × 360 = ¼ × 360 = 90°. For Car: (12/60) × 360 = 0.2 × 360 = 72°. For Bike: (9/60) × 360 = 0.15 × 360 = 54°. Check: 144+90+72+54 = 360°.

    总频率为60。整个饼图为360°。步行扇形角度:(24/60) × 360 = 144°。公交车:(15/60) × 360 = 90°。私家车:(12/60) × 360 = 72°。自行车:(9/60) × 360 = 54°。验证总和为360°。


    5. Scatter Graphs & Correlation | 散点图与相关性

    Question: A scatter graph plots ‘hours spent revising’ against ‘test score %’. The points show an upward trend from bottom left to top right. Describe the type of correlation. What does this tell you?

    题目:散点图绘制了“复习时间”与“测试分数百分比”的关系。各点呈现出从左下到右上的上升趋势。描述相关性的类型,并说明这说明了什么。

    The pattern shows a positive correlation: as the number of hours revising increases, the test score tends to increase. This suggests that more revision is linked to higher scores, but it does not prove cause and effect.

    该模式呈现正相关:随着复习时间的增加,测试分数往往也增加。这表明更多的复习与更高的分数相关联,但不能证明因果关系。


    6. Probability Scales & Simple Events | 概率尺度与简单事件

    Question: A bag contains 3 red, 2 blue and 5 green counters. One counter is picked at random. Mark on a probability scale the chance of picking: (a) a red counter, (b) a yellow counter, (c) a green counter.

    题目:一个袋子装有3个红色、2个蓝色和5个绿色筹码。随机抽取一个。在概率尺度上标出抽到以下筹码的概率:(a) 红色,(b) 黄色,(c) 绿色。

    Total counters = 3+2+5 = 10. Probability (red) = 3/10 = 0.3, which lies between ‘unlikely’ and ‘even chance’. Probability (yellow) = 0, so it is ‘impossible’. Probability (green) = 5/10 = ½ = 0.5, an ‘even chance’.

    筹码总数 = 10。红色概率 = 3/10 = 0.3,位于“不太可能”与“等可能性”之间。黄色概率 = 0,为“不可能”。绿色概率 = 5/10 = ½ = 0.5,属于“等可能性”。


    7. Experimental Probability & Expectation | 实验概率与期望值

    Question: A fair six-sided die is rolled 120 times. How many times would you expect to get a 3?

    题目:一枚公平的六面骰子投掷120次。你期望出现3的次数是多少?

    The theoretical probability of rolling a 3 is 1/6. Expected number = probability × number of trials = (1/6) × 120 = 20. So you would expect to roll a 3 about 20 times.

    掷出3的理论概率为1/6。期望次数 = 概率 × 试验次数 = (1/6) × 120 = 20。因此预计约20次。

    Question: In an experiment, Emma spun a spinner 50 times and got ‘blue’ 18 times. What is the experimental probability of blue?

    问题:在实验中,Emma旋转了50次转盘,得到“蓝色”18次。蓝色的实验概率是多少?

    Experimental probability = number of successful outcomes / total trials = 18/50 = 0.36 or 36%. This may differ from the theoretical probability.

    实验概率 = 成功次数 / 总次数 = 18/50 = 0.36(或36%)。这可能与理论概率不同。


    8. Stem-and-Leaf Diagrams | 茎叶图

    Question: The stem-and-leaf diagram shows the ages of people at a cinema: Stem 1 | 2 4 7; Stem 2 | 0 3 5 5 8; Stem 3 | 1 1 2; Key: 1|2 means 12. Find the median age and the range.

    题目:茎叶图显示了电影院观众的年龄:茎1 | 2 4 7;茎2 | 0 3 5 5 8;茎3 | 1 1 2;关键:1|2表示12。求年龄的中位数和极差。

    List all ages in order: 12, 14, 17, 20, 23, 25, 25, 28, 31, 31, 32. There are 11 values. The median is the 6th value, which is 25. Range = 32 − 12 = 20.

    按顺序列出所有年龄:12,14,17,20,23,25,25,28,31,31,32。共11个值。中位数为第6个值,即

    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 Cambridge Statistics: Resource Recommendations and Usage Guide | Year 8 Cambridge 统计:学习资源推荐与使用指南

    📚 Year 8 Cambridge Statistics: Resource Recommendations and Usage Guide | Year 8 Cambridge 统计:学习资源推荐与使用指南

    Mastering statistics at the Year 8 level is a key stepping stone for Cambridge learners, as it builds the foundation for data handling, probability, and analytical thinking skills required in later years. This guide is designed to help students and parents navigate the wealth of available resources, ensuring that every study session is both effective and enjoyable. From trusted textbooks to interactive apps, we will explore the best tools and strategies to support your learning journey in Cambridge Statistics.

    掌握 Year 8 阶段的统计学是剑桥学子重要的基石,它为未来所需的数据处理、概率和分析思维能力打下基础。本指南旨在帮助学生和家长在丰富的学习资源中找到方向,确保每一次学习都能高效而有趣。从经典教材到互动应用,我们将探索支持剑桥统计学学习的最佳工具和策略。


    1. Curriculum Overview and Key Topics | 课程概览与关键主题

    Before diving into resources, it is vital to understand what the Cambridge curriculum expects in Year 8 Statistics. Key topics include collecting and classifying data, constructing and interpreting bar charts, pie charts, line graphs and scatter graphs, calculating averages (mean, median, mode) and range, and an introduction to basic probability including the probability scale and simple events. Familiarising yourself with these areas helps you choose resources that target your specific needs.

    在深入研究资源之前,了解剑桥 Year 8 统计课程的要求至关重要。关键主题包括数据的收集与分类、绘制与解读条形图、饼图、折线图和散点图,计算平均数(均值、中位数、众数)和极差,以及基础概率入门(包括概率尺度和简单事件)。熟悉这些领域有助于挑选针对特定需求的资源。

    Many schools also prepare students for the Cambridge Lower Secondary Checkpoint test. The statistics questions in the Checkpoint usually combine knowledge of charts with data interpretation and simple probability. By using the right resources, you can seamlessly link the syllabus topics to exam-style practice, making your revision more focused.

    许多学校还会为学生准备 Cambridge Lower Secondary Checkpoint 测试。Checkpoint 中的统计题通常结合图表知识、数据解读和简单概率。通过使用恰当的资源,你可以将大纲主题与考试式练习无缝衔接,使复习更具针对性。


    2. Top Textbooks and Workbooks | 顶级教材与练习册

    The Cambridge Lower Secondary Mathematics Learner’s Book 8 (Cambridge University Press) is a core resource aligned exactly with the syllabus. Its statistics chapters present clear worked examples for drawing charts, finding the median and calculating probabilities. Read the chapter summary first, then attempt each ‘Exercise’ section. Check your answers with the back-of-book key and rework any incorrect problems until you understand the method.

    《Cambridge Lower Secondary Mathematics Learner’s Book 8》(剑桥大学出版社)是与大纲完全匹配的核心资源。其统计章节提供了绘制图表、寻找中位数和计算概率的清晰例题。首先阅读章节摘要,然后尝试每个“练习”部分。用书后答案核对批改,并重新解答做错的题目,直到掌握方法为止。

    For targeted drill, the Collins Cambridge Lower Secondary Maths Stage 8 Workbook is excellent. It provides a large bank of questions, from basic frequency tables to challenging grouped data averages. Aim to finish one double-page spread per study session. Mark your work using the answer booklet, and keep a separate notebook to log any recurring errors — this will become your personal revision checklist.

    如要进行针对性操练,Collins Cambridge Lower Secondary Maths Stage 8 Workbook 是绝佳选择。它提供大量练习题,从基础频数表到有难度的分组数据平均数。每次学习争取完成一个双页版块。用答案手册批改作业,并在单独的本子上记录反复出现的错误——这将成为你的个人复习清单。

    If you need a concise revision companion, CGP KS3 Maths Study Guide (Higher or Foundation) has a dedicated statistics section with colourful diagrams and simple language. Use it for quick refreshers before a test. Read the whole section in one go, then cover the page and try to rewrite the key points from memory.

    如果需要简明的复习伴侣,CGP KS3 Maths Study Guide(高级或基础版)设有专门的统计部分,包含彩图和通俗语言。可在考试前用来快速温习。一次性通读整个部分,然后遮盖页面,尝试凭记忆写出关键点。


    3. Must-Visit Interactive Websites | 必访的互动学习网站

    BBC Bitesize (bbc.co.uk/bitesize/subjects/zqhs34j) offers well-structured revision pages for KS3 Statistics. Each topic has a learner guide, a short video, and an interactive quiz. Use it as a lesson starter: read the guide, watch the video, and take the quiz. The instant marking tells you if you need more work on, say, pictograms or the range. Write down any quiz questions you got wrong and revisit the guide to correct your understanding.

    BBC Bitesize (bbc.co.uk/bitesize/subjects/zqhs34j) 为 KS3 统计提供了结构良好的复习页面。每个主题都有学习指南、短视频和互动测验。可将其作为课前启动环节:阅读指南,观看视频并完成测验。即时批改会告诉你是否需要在象形图或极差等方面多加练习。记下答错的测验题,并重温指南以纠正理解。

    Khan Academy (khanacademy.org/math/statistics-probability) provides a complete self-paced course. Under ‘Statistics and probability’, you can filter for ‘Reading and interpreting data’ or ‘Summarizing quantitative data’ to match Year 8 material. The platform awards mastery points, which gamifies learning. Use the ‘Hint’ button when stuck, and always watch the linked video before attempting a new exercise type.

    Khan Academy (khanacademy.org/math/statistics-probability) 提供一套完整的自主学习课程。在“统计与概率”下,可筛选“阅读与解读数据”或“总结定量数据”以匹配 Year 8 水平。平台会奖励掌握分数,使学习游戏化。遇到困难时使用“提示”按钮,并在尝试新练习前先观看关联视频。

    Corbettmaths (corbettmaths.com) has a dedicated ‘Statistics’ menu with video tutorials, textbook-style exercises, and downloadable worksheets with answers. Its famous ‘5-a-day’ feature gives you 5 mixed questions each day across all maths topics, which stops you from forgetting statistics while studying other areas. Print a week’s

    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 Cambridge Statistics: Exam Technique and Mark Schemes | 八年级剑桥统计:答题技巧与评分标准

    📚 Year 8 Cambridge Statistics: Exam Technique and Mark Schemes | 八年级剑桥统计:答题技巧与评分标准

    Achieving top marks in Year 8 Cambridge Statistics requires more than just knowing the formulas – you need to present your work clearly, follow mark scheme requirements and avoid common errors. This guide walks you through essential exam techniques and the marking principles that examiners use, so you can turn your knowledge into high scores.

    在八年级剑桥统计考试中取得高分,不仅需要掌握公式,更需清晰展示解题过程、遵循评分标准并避免常见错误。本文带你逐一掌握关键答题技巧,并了解考官评分原则,助你知识转化为高分。

    1. Understanding the Exam Format | 了解考试形式

    Statistics questions appear in both non-calculator and calculator papers. They may be short one‑mark questions or longer structured problems worth several marks. Knowing where marks are allocated helps you plan your time and decide how much working to show.

    统计题目会出现在非计算器和计算器试卷中,可能是一分的简答题,也可能是多分的结构题。了解分值分布有助于合理分配时间,并决定展示多少解题步骤。

    Some tasks, like drawing a bar chart, may carry marks for axes, bars and labels separately. In probability, a single mark can be earned for writing the correct fraction even if you do not simplify it fully. Always check how many marks a question is worth – it tells you the expected depth of your response.

    有些任务,如绘制条形图,可能对坐标轴、条形和标签分别给分。在概率题中,即使没有化简分数,写出正确分数也可能得到一分。始终查看题目分值——它提示了你需要作答的深度。


    2. Reading the Question Carefully | 仔细审题

    Always underline command words such as ‘find’, ‘calculate’, ‘explain’, ‘compare’ and ‘justify’. If you are asked to ‘compare’ two data sets, you must use comparative language like ‘higher than’ or ‘more spread out’ and refer to both sets. A vague statement loses the accuracy mark.

    务必圈出指令词,如 ‘find’、’calculate’、’explain’、’compare’ 和 ‘justify’。如果题目要求 ‘compare’ 两组数据,则必须使用比较性词语,如 ‘higher than’ 或 ‘more spread out’,并提到两组数据,模糊的陈述会丢失准确分。

    Watch for details: units expected in the answer, whether the data is continuous or discrete, and how many decimal places to give. Misreading ‘mean’ as ‘median’ or ‘mode’ as ‘range’ is one of the most common errors. Write the meaning of the keyword in the margin if it helps you focus.

    注意细节:答案要求的单位、数据是连续型还是离散型,以及需要保留几位小数。把 ‘mean’ 误读成 ‘median’,或把 ‘mode’ 误认为 ‘range’,是最常见的错误之一。如果有助于集中注意力,可以在题目旁写下关键词的含义。


    3. Showing Clear Working | 展示清晰步骤

    Mark schemes award method marks (M) for a correct approach even if the final answer is numerically wrong. Always write down the formula you are using, the substituted values, and intermediate calculations. For the mean, write: Mean = (sum of all values) ÷ (number of values) and then list the sum and count before dividing.

    评分标准会为正确方法(M分)给分,即使最终数值有误。一定要写出所用公式、代入的数值和中间计算过程。求平均数时,写出:平均数 = (所有数值之和) ÷ 数值个数,然后列出总和与个数,再做除法。

    For the median, show the data sorted in ascending order. Mark the middle position(s). If there are two middle numbers, show their sum divided by 2. Even if you then misplace the median, the sorting step can earn a method mark.

    求中位数时,展示数据按升序排列。标出中间位置。如果有两个中间数,写出它们的和除以2。即使随后中位数位置找错,排序这一步也可能获得方法分。

    Example: data 7, 3, 9 → sorted 3, 7, 9 → median 7

    示例:数据 7, 3, 9 → 排序 3, 7, 9 → 中位数 7


    4. Calculating the Mean, Median, Mode and Range | 计算平均数、中位数、众数和极差

    Define each term clearly in your mind before you start:
    Mean = total ÷ count
    Median = middle value when ordered
    Mode = most frequent value (there can be more than one)
    Range = largest value − smallest value

    开始前在脑中明确定义每个术语:
    平均数 = 总和 ÷ 个数
    中位数 = 排序后处于中间的值
    众数 = 出现次数最多的值(可能有多个)
    极差 = 最大值 − 最小值

    An accuracy mark (A) is awarded for the correct final value after valid working. Re‑check your arithmetic carefully. When the count is odd, the median is the single middle number; when even, it is the mean of the two middle numbers. Never forget to subtract the smallest from the largest for the range – many candidates mistakenly subtract the first value from the last without ordering.

    正确计算后可获得准确分(A分)。仔细复核算术。当个数为奇数时,中位数是中间那个数;为偶数时,是中间两个数的平均数。求极差时一定要用最大值减最小值——许多考生未排序,直接用第一个值减去最后一个值而出错。


    5. Handling Frequency Tables | 处理频数表

    When data appears in a frequency table, you cannot simply list all values. To calculate the mean, add an extra column headed ‘f × x’ (frequency × data value) and fill it in for each row. Then sum the frequency column (Σf) and the f × x column (Σfx). The mean = Σfx ÷ Σf. Show all the column totals; marks are regularly given for the fx column and the correct sums.

    当数据以频数表呈现时,不能简单列出所有值。计算平均数时,增加一列标题 ‘f × x’(频数 × 数值),并逐行填入。然后对频数列求和( Σf ),对 f × x 列求和( Σfx )。平均数 = Σfx ÷ Σf 。展示所有列的合计;通常对 fx 列和正确的求和给予分数。

    To find the median from a frequency table, create a cumulative frequency column. Add frequencies row by row. The median position is (total frequency + 1) ÷ 2. Locate this position in the cumulative frequency column and read off the corresponding value. Write down the median position clearly – it earns a method mark.

    从频数表求中位数时,建立累计频数列,逐行累加频数。中位数位置是 (总频数 + 1) ÷ 2 。在累计频数列中定位该位置,并读出对应值。清楚写出中位数位置——这能获得方法分。


    6. Drawing Accurate Graphs | 绘制精确图表

    Bar charts must have bars of equal width and equal gaps. Label both axes with the variable name and include units when applicable. The vertical axis must start at zero and use a uniform scale. Use a ruler and sharp pencil. Marks are often split: one for axes, one for correctly drawn bars, one for labels.

    条形图的条形必须等宽,间隙相等。两轴标上变量名,必要时注明单位。纵轴必须从零开始并使用均匀刻度。用直尺和尖铅笔绘图。分数通常分项给出:一项给坐标轴,一项给正确绘制的条形,一项给标签。

    For line graphs, plot points as small neat crosses. Do not use dots. Join the crosses with straight line segments. Label axes and give the graph a title when one is requested. If the question asks for a ‘time series’, points must be connected in time order.

    折线图要用整齐的小叉号描点,不用圆点。用直线段连接叉号。标注坐标轴,题目要求时加标题。如果是 ‘time series’,点必须按时间顺序连接。

    Pie chart construction requires angle calculations: (category frequency ÷ total frequency) × 360°. Show these calculations beside the chart. Draw sectors using a protractor, and label each sector or provide a key. Marks go to correct angles and accurate drawing.

    绘制饼图需计算角度:(类别频数 ÷ 总频数) × 360° 。在图表旁展示计算过程。用量角器绘制扇形,并给每个扇形加标签或提供图例。正确角度和精确绘制可获得分数。

    For scatter graphs, plot points exactly using the given data pairs. Do not join the dots. Draw a line of best fit only if asked. Marks are awarded for correct scaling, accurate plotting, and a sensible trend line.

    散点图要按给定数据对准确描点,切勿连线。仅当题目要求时才画最佳拟合线。正确刻度、精确描点及合理趋势线均可得分。


    7. Interpreting Graphs and Charts | 解读图表

    When asked to ‘describe the trend’ in a line graph, use phrases like ‘as time increases, temperature rises steadily’ or ‘there is a sharp drop after 3 pm’. Always use data values to support your statement, e.g. ‘from 20°C at noon to 28°C at 3 pm’.

    当被要求 ‘describe the trend’ 折线图时,使用类似 ‘as time increases, temperature rises steadily’ 或 ‘there is a sharp drop after 3 pm’ 的描述。务必引用数据支撑说法,例如 ‘from 20°C at noon to 28°C at 3 pm’。

    For scatter graphs, state the type of correlation (positive, negative or none) and its strength (strong, weak). Example: ‘There is a strong positive correlation between hours of revision and test scores.’ Do not just say ‘the points go up’.

    散点图要说明相关性类型(正、负或无)及其强度(强、弱)。示例:’There is a strong positive correlation between hours of revision and test scores.’ 不要只说 ‘the points go up’。

    In comparison questions, cite specific statistics: ‘Class A had a median of 72, while Class B had a median of 65, so Class A scored higher on average.’ Using both values and context shows full understanding and earns both method and communication marks.

    比较类问题要引用具体统计量:’Class A had a median of 72, while Class B had a median of 65, so Class A scored higher on average.’ 同时使用数值和情境展示全面理解,可获方法和表达分。


    8. Describing Probability | 描述概率

    Give probability answers as a fraction, decimal between 0 and 1, or a percentage. Always use the formula: Probability = (number of favourable outcomes) ÷ (total number of outcomes) for equally likely events. Write ‘P(head) = 1/2’ or ‘probability of a six is 1/6’.

    概率答案用分数、0至1之间的小数或百分比给出。等可能事件始终用公式:概率 = (有利结果数) ÷ (所有可能结果数)。写成 ‘P(head) = 1/2’ 或 ‘probability of a six is 1/6’。

    When comparing likelihoods, calculate both probabilities and write them with a common denominator or as decimals to show which is greater. Answer with a clear conclusion: ‘Red is more likely because 3/8 > 1/4’. Intuitive guesses get no credit.

    比较可能性时,要计算出两个概率,并通分或化为小数,说明哪个更大。结论要明确:’Red is more likely because 3/8 > 1/4’。凭直觉猜测不得分。

    For experimental probability, write the relative frequency: number of successes ÷ total trials. State that more trials produce a more reliable estimate. A question may ask ‘explain why the experimental probability differs from the theoretical probability’ – the answer is usually ‘because it is based on only a small number of trials’.

    实验概率要写相对频数:成功次数 ÷ 总试验次数。说明试验次数越多,估计越可靠。题目可能问 ‘explain why the experimental probability differs from the theoretical probability’ ——答案通常是 ‘because it is based on only a small number of trials’。


    9. Designing Surveys and Data Collection | 设计调查与数据收集

    You may need to write a question for a survey. A good question offers specific, non‑overlapping response options, avoids leading words, and covers all possibilities. For example: ‘How many portions of fruit do you eat per day? 0, 1–2, 3–4, 5 or more’ instead of ‘Do

    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 Cambridge Statistics: Formula & Theorems Quick Reference Handbook | 公式定理速查手册

    📚 Year 8 Cambridge Statistics: Formula & Theorems Quick Reference Handbook | 公式定理速查手册

    Welcome to your essential quick reference guide for Year 8 Cambridge Statistics. Here you will find clear statements of all the key formulas, theorems, and concepts you need to memorise and apply. Each section pairs a concise explanation in English with its equivalent in Chinese, helping you build confidence whether you are studying at an international school or preparing for the Cambridge lower secondary checkpoint.

    欢迎使用八年级剑桥统计必备速查手册。这里汇集了所有你需要记忆和运用的关键公式、定理和概念。每一节都用中英文配对简明解释,无论你是在国际学校学习还是准备剑桥初中段测评,都能帮你树立信心。

    1. Mean (Average) | 平均数

    The mean is the sum of all data values divided by the number of data points. It is the most common measure of central tendency and can be affected by extreme values.

    平均数是所有数据值的总和除以数据点的个数。它是最常见的集中趋势度量,但会受到极端值的影响。

    Mean = (Sum of all values) ÷ (Number of values)

    If a dataset contains the numbers 4, 8, 6, 5, 9, the mean is (4+8+6+5+9) / 5 = 32/5 = 6.4.

    如果数据集包含数字 4、8、6、5、9,平均数就是 (4+8+6+5+9) / 5 = 32/5 = 6.4。


    2. Median | 中位数

    The median is the middle value when the data are arranged in order. For an even number of data points, the median is the average of the two middle numbers.

    中位数是将数据按顺序排列后的中间值。如果数据点个数为偶数,中位数就是中间两个数的平均数。

    Place data in order → For odd n: median = middle value.
    For even n: median = (n/2ᵗʰ value + (n/2 +1)ᵗʰ value) ÷ 2

    Example: Data 3, 5, 7, 12, 13 (odd count: 5). Median = 7.
    Data 4, 6, 8, 10 (even count: 4). Median = (6+8)/2 = 7.

    例子:数据 3、5、7、12、13(奇数个:5)。中位数 = 7。
    数据 4、6、8、10(偶数个:4)。中位数 = (6+8)/2 = 7。


    3. Mode | 众数

    The mode is the value that appears most often in a data set. A set of data may have one mode, more than one mode (bimodal or multimodal), or no mode at all if all values appear equally often.

    众数是数据集中出现次数最多的值。一组数据可能有一个众数、多个众数(双众数或多众数),或者如果所有值出现次数相同则没有众数。

    Mode = value with the highest frequency

    In the list 2, 3, 3, 4, 5, 5, 5, 6, the mode is 5 because it occurs three times, more than any other number.

    在数据列 2、3、3、4、5、5、5、6 中,众数是 5,因为它出现了三次,比任何其他数字都多。


    4. Range | 极差(范围)

    The range is a measure of spread. It tells you how far apart the data are, and is found by subtracting the smallest value from the largest.

    极差是衡量数据分散程度的度量。它告诉你数据有多分散,通过最大值减去最小值得到。

    Range = Largest value − Smallest value

    For the test scores 45, 67, 82, 91, the range = 91 − 45 = 46. A larger range indicates greater spread.

    对于测验分数 45、67、82、91,极差 = 91 − 45 = 46。极差越大说明数据越分散。


    5. Frequency Tables & Mean from Frequency | 频数表及用频数求均值

    When data are presented in a frequency table, the mean is calculated by multiplying each value by its frequency, summing these products, and then dividing by the total frequency.

    当数据以频数表呈现时,计算平均数要将每个值乘以其频数,把这些乘积相加,然后除以总频数。

    Mean from frequency table = (Σ(value × frequency)) ÷ (Σ frequency)

    • Value x: 2, 5, 7; Frequency f: 3, 2, 4
    • Sum of f × x = (2×3) + (5×2) + (7×4) = 6 + 10 + 28 = 44
    • Total frequency = 3+2+4 = 9
    • Mean = 44 ÷ 9 ≈ 4.89
    • 数值 x:2、5、7;频数 f:3、2、4
    • f × x 之和 = (2×3) + (5×2) + (7×4) = 6 + 10 + 28 = 44
    • 总频数 = 3+2+4 = 9
    • 平均数 = 44 ÷ 9 ≈ 4.89

    6. Grouped Data and Estimated Mean | 分组数据与估算平均数

    When data are grouped into class intervals, we use the midpoint of each interval as the representative value. The estimated mean is then calculated similarly to the frequency table mean, but with midpoints.

    当数据被分成组距时,我们用每一组的中点值作为代表值。然后类似于频数表均值的方式计算估算平均数,但用的是组中值。

    Estimated mean = (Σ(midpoint × frequency)) ÷ (Σ frequency)

    Class 0 ≤ x < 10, frequency 4, midpoint 5; class 10 ≤ x < 20, frequency 6, midpoint 15.
    Sum of products = (5×4) + (15×6) = 20 + 90 = 110. Total frequency = 10. Estimated mean = 11.

    组距 0 ≤ x < 10,频数 4,中点 5;组距 10 ≤ x < 20,频数 6,中点 15。
    乘积之和 = (5×4) + (15×6) = 20 + 90 = 110。总频数 = 10。估算平均数 = 11。


    7. Median and Mode from Frequency Tables | 从频数表找中位数与众数

    To find the median from a frequency table, use the cumulative frequency to locate the middle position. The mode is simply the value with the highest frequency.

    从频数表中找中位数,需要利用累积频数来定位中间位置。众数就是频数最高的那个值。

    Median position = (Total frequency + 1) ÷ 2

    Data: x=1 (f=3), x=2 (f=5), x=3 (f=2). Total f=10. Median position = (10+1)/2 = 5.5, so median is between the 5th and 6th value. Cumulative: 1→3, 2→8, so both 5th and 6th are 2, median=2. Mode=2 because frequency 5 is highest.

    数据:x=1 (f=3)、x=2 (f=5)、x=3 (f=2)。总频数=10。中位数位置 = (10+1)/2 = 5.5,因此中位数在第5和第6个值之间。累积:1→3,2→8,所以第5和第6个值都是2,中位数=2。众数=2,因为频数5最高。


    8. Bar Charts and Pictograms | 柱状图与象形图

    Bar charts represent categorical data with rectangular bars of height proportional to the frequency. The bars must be of equal width and gaps between bars. Pictograms use symbols to represent a certain number of items, and a key must be given.

    柱状图用高度与频数成正比的矩形条表示分类数据。条宽必须相等,且条间有间隔。象形图用符号表示一定数量的项目,必须给出图例说明。

    Height of bar = frequency of the category

    If one symbol represents 4 books, and the category ‘Fiction’ shows 7 symbols, that represents 7×4 = 28 books. Always check the key.

    如果一个符号代表4本书,类别“小说”显示7个符号,就代表7×4=28本书。务必检查图例。


    9. Pie Charts and Angles | 饼图与角度计算

    In a pie chart, each sector angle is proportional to the frequency of the category. The total angle in a circle is 360°, so the angle for a category is calculated by (category frequency ÷ total frequency) × 360°.

    在饼图中,每个扇区的角度与该类别的频数成比例。圆的总角度是360°,所以一个类别的角度等于(该类别的频数÷总频数)×360°。

    Sector angle = (Frequency of category ÷ Total frequency) × 360°

    Total students = 30; 12 prefer football. Angle for football = (12/30) × 360° = 144°. Use a protractor to draw the sector.

    学生总数=30;12人喜欢足球。足球扇区角度 = (12/30) × 360° = 144°。用量角器画出该扇区。


    10. Probability Scale and Basic Probability | 概率标度与基本概率

    Probability is a measure of how likely an event is to happen. It is always a number between 0 and 1 inclusive, where 0 means impossible and 1 means certain. Probability can be written as a fraction, decimal, or percentage.

    概率是衡量事件发生可能性的度量,总是介于0和1之间的一个数,包括0和1,0表示不可能,1表示必然发生。概率可以用分数、小数或百分数表示。

    Probability of an event = (Number of favourable outcomes) ÷ (Total number of equally likely outcomes)

    When rolling a fair six-sided die, the probability of rolling a 4 is 1/6. The probability of rolling an even number is 3/6 = 1/2.

    抛掷一个均匀的六面骰子,掷出4点的概率是1/6。掷出偶数的概率是3/6 = 1/2。


    11. Experimental Probability and Expected Frequency | 实验概率与期望频数

    Experimental probability is based on actual trials or experiments. Expected frequency predicts how many times an event would occur if an experiment is repeated many times.

    实验概率基于实际的试验或实验。期望频数预测如果实验重复很多次,事件预计会发生多少次。

    Experimental probability = Number of times event occurs ÷ Total number of trials

    Expected frequency = Probability of event × Number of trials

    If a coin is flipped 150 times, the expected number of heads is 0.5 × 150 = 75. If a spinner is spun 80 times and lands on red 24 times, the experimental probability of red is 24/80 = 0.3.

    如果一枚硬币抛掷150次,正面朝上的期望次数是 0.5 × 150 = 75。如果一个转盘旋转80次,红色出现24次,那么红色的实验概率是 24/80 = 0.3。


    12. Mutually Exclusive Events and Addition Rule | 互斥事件与加法法则

    Two events are mutually exclusive if they cannot happen at the same time. The probability that either one or the other happens is the sum of their individual probabilities.

    如果两个事件不能同时发生,它们就是互斥的。任一事件发生的概率是它们各自概率的和。

    For mutually exclusive events A and B: P(A or B) = P(A) + P(B)

    In a bag with 3 red, 5 blue, and 2 green marbles, if you pick one marble, the probability of red or green is P(red) + P(green) = 3/10 + 2/10 = 5/10 = 1/2. Red and green are mutually exclusive.

    袋中有3个红球、5个蓝球和2个绿球,随机抽取一个球,抽到红球或绿球的概率是 P(红)+P(绿)=3/10+2/10=5/10=1/2。红和绿是互斥事件。

    The sum of probabilities of all mutually exclusive and exhaustive outcomes is 1. This is used to find missing probabilities.

    所有互斥且穷举的结果的概率之和为1。这可用于求缺失的概率。


    Published by TutorHao | Statistics Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 CCEA Statistics: Summer Preview and Bridging Course | Year 8 CCEA 统计:暑期预习与衔接课程

    📚 Year 8 CCEA Statistics: Summer Preview and Bridging Course | Year 8 CCEA 统计:暑期预习与衔接课程

    Welcome to your summer preparation guide for Year 8 CCEA Statistics. Whether you are excited about diving into data or feeling a little unsure about what lies ahead, this bridging course will help you build confidence before the new school year begins. We will walk through the key topics you will encounter, suggest simple revision activities, and show you how statistics connects to the real world.

    欢迎来到 Year 8 CCEA 统计的暑期预习指南。无论你对探索数据感到兴奋,还是对即将学习的内容有些不确定,这个衔接课程都能帮助你在新学年开始前建立信心。我们将带你浏览 Year 8 涉及的主要课题,给出简单的复习活动建议,并展示统计学如何与现实世界紧密相连。

    1. Welcome to Year 8 Statistics | 欢迎学习 Year 8 统计

    Year 8 statistics in the CCEA curriculum builds on what you learned in primary and Year 7. You will move from simple graphs to more detailed data analysis, and you will start to think critically about how data is collected and presented.

    在 CCEA 课程中,Year 8 统计建立在小学和 Year 7 所学的基础上。你将从不简单的图表走向更详细的数据分析,并开始批判性地思考数据是如何收集和呈现的。

    This year, you will be expected to design your own small surveys, choose appropriate charts, and explain what averages and spread reveal about a dataset. It is more than just drawing graphs — it is about telling the story behind the numbers.

    这一年,你需要设计自己的小调查,选择合适的图表,并解释平均数和离散程度揭示了数据集的哪些信息。统计不仅仅是画图——关键在于讲述数字背后的故事。


    2. Why Study Statistics? | 为什么学习统计?

    Statistics is about collecting, organising, analysing and interpreting data. We use it to answer questions, spot trends and make informed decisions. From medical research to the scores on your favourite video game, statistics helps us understand what the information really means.

    统计是关于收集、整理、分析和解读数据。我们用它来回答问题、发现趋势并做出明智的决定。从医学研究到你最喜欢的电子游戏得分,统计帮助我们理解信息的真正含义。

    Developing a statistical mindset will also sharpen your critical thinking skills. You will learn to ask, ‘Is this graph misleading?’, ‘Was the sample large enough?’ and ‘What does the average actually hide?’

    培养统计思维还能提高你的批判性思维能力。你将学会问:“这个图表有误导性吗?” “样本量足够大吗?” 以及 “平均值实际隐藏了什么信息?”


    3. Bridging from Year 7: What to Recap | 衔接 Year 7 知识回顾

    Before you move on, it is helpful to review the statistics you already know. In Year 7, you likely worked with frequency tables, tally charts, bar charts and pictograms. Make sure you can read data from these representations with ease.

    在继续学习之前,复习已经掌握的统计知识很有帮助。Year 7 时你可能接触过频数表、计数表、条形图和象形图。确保你能轻松地从这些呈现方式中读取数据。

    You should also feel comfortable with the terms ‘mean’, ‘mode’ and ‘range’, even if only at an introductory level. Understanding what each one tells you about a small set of numbers is a key stepping stone.

    你还应该对“平均数”、“众数”和“极差”这些术语感到不陌生,哪怕只是入门水平。理解它们各自揭示了关于一小群数字的什么信息,是重要的进阶基石。

    Have a go at this quick check: if a group of students scored 4, 6, 7, 7 and 9 on a quiz, can you find the mode? (It is 7.) Can you find the range? (9 – 4 = 5.)

    来做个快速自测:如果一组学生在测验中得了 4、6、7、7 和 9 分,你能找到众数吗?(是 7。)你能找到极差吗?(9 – 4 = 5。)


    4. Understanding Data Types | 理解数据类型

    In Year 8, you will learn to classify data into two main types: categorical (qualitative) and numerical (quantitative). Categorical data describes qualities, like favourite

    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 CCEA Statistics: Vocabulary & Terminology Quick Memorisation Guide | Year 8 CCEA 统计:词汇术语速记指南

    📚 Year 8 CCEA Statistics: Vocabulary & Terminology Quick Memorisation Guide | Year 8 CCEA 统计:词汇术语速记指南

    Welcome to your Year 8 CCEA Statistics quick memorisation guide. Mastering the essential vocabulary and terminology is the first major step to feeling confident with data handling, charts, and probability. This guide provides clear bilingual explanations of the key terms you will meet in your classroom and exams, following the Northern Ireland CCEA curriculum. Each term is explained in plain English, followed immediately by a matching Chinese translation, and we have included memory tips wherever possible to make revision easier.

    欢迎阅读 Year 8 CCEA 统计速记指南。掌握核心词汇与术语是轻松应对数据处理、图表和概率的第一步。本指南提供了清晰的双语释义,涵盖你在课堂和考试中会遇到的关键术语,严格遵循北爱尔兰 CCEA 课程大纲。每个术语先用简洁英语解释,紧接着是匹配的中文翻译,并在可能之处附上记忆窍门,让复习更加轻松。


    1. Average Lingo: Mean, Median, Mode and Range | 中心度之语:平均数、中位数、众数与极差

    Mean (Arithmetic Average): The mean is found by adding up all the data values and then dividing the total by the number of values. For example, the mean of 3, 5, 7 is (3 + 5 + 7) ÷ 3 = 5. In symbols we often say Mean = (Sum of values) ÷ (Number of values).

    平均数(算术平均值):将所有数据值相加再除以数据的个数。例如 3、5、7 的平均数是 (3+5+7) ÷ 3 = 5。常用公式为:平均数 = 总和 ÷ 个数。

    Mean = (Sum of all data) ÷ (Total count)

    Median: The median is the middle value when the data is arranged in order from smallest to largest. If there is an even number of values, the median is the average of the two middle numbers. For the list 4, 1, 9, the ordered list is 1, 4, 9, so the median is 4. For the list 2, 3, 6, 8, the two middle numbers are 3 and 6, so the median is (3+6) ÷ 2 = 4.5.

    中位数:将数据从小到大排序,处于中间位置的数就是中位数。如果数据个数为偶数,则中位数为中间两个数的平均值。比如数据集 4、1、9,排序后为 1、4、9,中位数是 4。对于 2、3、6、8,中间两数为 3 和 6,中位数 = (3+6) ÷ 2 = 4.5。

    Mode: The mode is the value that appears most frequently. A dataset can have one mode (unimodal), two modes (bimodal), or no mode at all if all values occur only once. In 2, 3, 3, 5, 6, the mode is 3. In 1, 2, 3, 4, there is no mode.

    众数:出现次数最多的数据值。一组数据可能有一个众数、两个众数,或没有众数。在 2、3、3、5、6 中,众数是 3。在 1、2、3、4 中,没有众数。

    Range: The range measures the spread of the data and is simply the largest value minus the smallest value. For heights 120 cm, 150 cm, 135 cm, the range is 150 – 120 = 30 cm. Memory trick: Range = Max – Min.

    极差:衡量数据的离散程度,等于最大值减去最小值。例如身高 120 cm、150 cm、135 cm,极差 = 150 – 120 = 30 cm。记忆技巧:极差 = 最大 – 最小。

    A quick rhyme to remember: “Hey diddle diddle, the median’s the middle; you add and divide for the mean. The mode is the one that appears the most, and the range is the difference between!”

    一首记忆儿歌:’Hey diddle diddle, median 在中央;相加再除得 mean;mode 是出现最频繁的那个;range 就是差距量!’


    2. Data Categories: Qualitative vs Quantitative | 数据分类:定性与定量

    Qualitative data (also called categorical data) describes qualities or categories that cannot be measured with numbers in a meaningful way. Examples include eye colour (blue, brown), favourite sport (football, tennis), or types of pet (dog, cat). We can count frequencies but usually cannot perform arithmetic on these labels.

    定性数据(也称分类数据)描述的是不能用数字进行有意义测量的属性或类别。例如眼睛颜色(蓝、棕)、最喜欢的运动(足球、网球)或宠物类型(狗、猫)。我们可以统计频数,但通常不能对这些标签进行算术运算。

    Quantitative data is numerical data that represents amounts or measurements. It can be used in calculations. Examples are test scores, heights, temperatures, or number of siblings. Quantitative data is further split into discrete and continuous, which we will explore next.

    定量数据是表示数量或测量值的数值型数据,可以进行计算。例如考试分数、身高、温度或兄弟姐妹的数量。定量数据又进一步分为离散数据和连续数据,下一节将详细说明。

    Memory tip: “Quality” suggests describing a quality, “Quantity” suggests a number.

    记忆技巧:’Qualitative’ 与品质挂钩,’Quantitative’ 与数量挂钩。


    3. Discrete or Continuous? | 离散还是连续?

    Discrete data can only take specific

    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 CCEA Statistics: Practice Test Walkthrough | 八年级 CCEA 统计:单元测试模拟卷解析

    📚 Year 8 CCEA Statistics: Practice Test Walkthrough | 八年级 CCEA 统计:单元测试模拟卷解析

    Welcome to our detailed walkthrough of a typical Year 8 CCEA Statistics unit test. This article will guide you through each question, explaining the key concepts and exam techniques you need to succeed. By working through a full mock paper, you will build confidence and learn how to avoid common pitfalls. Let us dive into the questions together.

    欢迎阅读我们针对典型八年级 CCEA 统计单元测试的详细解析。本文将带领你逐题分析,讲解关键概念和应试技巧。通过完成整套模拟试卷,你将建立信心并学会如何避开常见错误。让我们一起深入这些题目。


    1. Data Collection and Unbiased Questions | 数据收集与无偏问题

    Question 1 (3 marks): A student wants to find the most popular social media platform among Year 8. She asks: “Do you prefer TikTok or other social media?” Is this a good question? Explain. Write a better question.

    第1题(3分):某学生想了解八年级最受欢迎的社交媒体平台。她问道:“你更喜欢 TikTok 还是其他社交媒体?”这是一个好问题吗?请解释。并写出一个更好的问题。

    This question is biased because it leads respondents by naming TikTok specifically, while lumping all other platforms together as “other”. Such wording suggests that TikTok is the expected answer. A good questionnaire question must be neutral and offer balanced, exhaustive options. An improved version would be: “Which social media platform do you use most often? TikTok, Instagram, Snapchat, YouTube, Other (please specify).” This avoids leading language and ensures all possible answers are captured fairly.

    该问题存在偏见,因为它通过特意点出 TikTok 而将其他所有平台归为“其他”,从而引导受访者。这种措辞暗示 TikTok 是期望的答案。好的问卷问题必须中立,并提供均衡、详尽的选项。改进后的版本可以是:“你最常使用哪个社交媒体平台?TikTok、Instagram、Snapchat、YouTube、其他(请注明)。”这避免了诱导性语言,并公平地覆盖了所有可能回答。

    To score full marks, you must state that the original question is biased, explain why the wording is leading or narrow, and then provide a fully neutral alternative question with clear response boxes or options. Always check that your question does not favour one answer over another.

    要拿到满分,你需要指明原问题有偏见,解释为何措辞具有诱导性或狭隘性,然后提供一个完全中立的问题及清晰的回答框或选项。务必检查你的问题不会偏袒某一选项。


    2. Constructing Frequency Tables | 构建频率表

    Question 2a: The shoe sizes of 15 students are recorded below. Complete the frequency table.

    4, 5, 3, 4, 6, 5, 4, 3, 5, 6, 4, 5, 3, 4, 5

    题目 2a:15 名学生的鞋码记录如下。请完成频率表。

    4, 5, 3, 4, 6, 5, 4, 3, 5, 6, 4, 5, 3, 4, 5

    First, list the distinct shoe sizes in order from smallest to largest: 3, 4, 5, 6. Then go through the list carefully, making a tally mark for each value. Group tallies in fives to make counting quick and accurate. Count the tallies for each size: size 3 appears 3 times, size 4 appears 5 times, size 5 appears 5 times, and size 6 appears 2 times. Always check that the total frequency adds up to 15 – here 3+5+5+2 = 15, so the table is correct.

    首先,将不同的鞋码按从小到大的顺序列出:3、4、5、6。然后仔细浏览数据列表,为每个值画一个计数符号。以五个为一组进行计数,以使计数既快又准。统计每个鞋码的计数:码数 3 出现 3 次,码数 4 出现 5 次,码数 5 出现 5 次,码数 6 出现 2 次。务必检查总频数加起来是否等于 15——此处 3+5+5+2=15,因此表格正确。

    Shoe size Tally Frequency
    3 3
    4 ⅢⅠ 5
    5 ⅢⅠ 5
    6 2

    Always present your frequency table clearly, with labelled columns, and write the data in ascending order. This structure helps you answer follow-up questions on mode, median, and mean accurately.

    呈现频率表时一定要清晰,列标题要标注清楚,并按升序排列数据。这种结构有助于你准确回答后续有关众数、中位数和均值的题目。


    3. Drawing and Interpreting Bar Charts | 绘制与解读条形图

    Question 3a (from data in Q3): A survey of Year 8 favourite fruits gave the frequencies: Apple 10, Banana 15, Orange 8, Grape 7. Draw a bar chart to represent this data.

    题目 3a:八年级最喜爱水果调查得到以下频数:苹果 10,香蕉 15,橙子 8,葡萄 7。请绘制一个条形图来表示该数据。

    To draw a bar chart, label the horizontal axis with the fruit categories and the vertical axis with frequency. Choose a sensible scale such as 1 cm = 2 students so that your chart fits well on the paper. Draw bars of equal width for each fruit, with heights corresponding exactly to the frequencies: Apple bar height 10 units, Banana 15, Orange 8, Grape 7. Leave equal gaps between the bars to show they are separate categories. Add a title, e.g. “Favourite Fruits of Year 8”, and label both axes.

    要绘制条形图,横轴标记水果类别,纵轴标记频数。选择一个恰当的比例,例如 1 厘米代表 2 名学生,使图表恰好适合纸张。为每种水果绘制等宽的条形,高度精确对应频数:苹果条形高 10 单位,香蕉 15,橙子 8,葡萄 7。条形之间留出相等的间隙,以表示它们是独立类别。添加标题,例如“八年级最喜爱水果”,并为两轴做标注。

    Marks are usually awarded for correct labelling of axes, a suitable and consistent scale, accurately drawn bar heights, and a meaningful title. Use a sharp pencil and ruler – sloppy bars or missing labels can cost you marks even if the ideas are right.

    分数通常会给在两轴的正确标注、恰当且统一的比例、精确绘制的条形高度以及有意义的标题上。使用削尖的铅笔和直尺——即使思路正确,马虎的条形或遗漏的标注也可能导致失分。


    4. Calculating Angles for Pie Charts | 计算饼图角度

    Question 3b: Using the same fruit data, calculate the angle needed for each sector in a pie chart. Then describe how you would draw and label the pie chart.

    题目 3b:使用相同的水果数据,计算饼图中每个扇区所需的角度。然后描述你将如何绘制并标注饼图。

    Start by finding the total frequency: 10 + 15 + 8 + 7 = 40. The angle for each category is given by (frequency ÷ total) × 360°. Apple: (10 ÷ 40) × 360° = 90°. Banana: (15 ÷ 40) × 360° = 135°. Orange: (8 ÷ 40) × 360° = 72°. Grape: (7 ÷ 40) × 360° = 63°. Always check your angles sum to 360°:

    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 CCEA Statistics: Case Study Practical Exercises | Year 8 CCEA 统计:案例分析实战演练

    📚 Year 8 CCEA Statistics: Case Study Practical Exercises | Year 8 CCEA 统计:案例分析实战演练

    Statistics is not just about numbers and formulas – it is a powerful tool for making sense of the world around us. In Year 8 CCEA Statistics, case studies bring data to life, showing how surveys, experiments and everyday observations can be turned into evidence-based conclusions. This article takes you through two complete practical exercises, step by step, so you can master data collection, presentation, analysis and interpretation. Whether you are preparing for an assessment or simply enjoy finding patterns in information, these real-world examples will build your confidence and skills.

    统计学不仅仅是数字和公式——它是帮助我们理解周围世界的强大工具。在 Year 8 CCEA 统计课程中,案例分析将数据变得生动,展示了如何将调查、实验和日常观察转化为有依据的结论。本文将通过两个完整的实战演练,一步步带你掌握数据收集、呈现、分析和解读。无论你是在为考试做准备,还是单纯喜欢从信息中发现规律,这些真实世界的例子都会帮助你建立信心、提升技能。

    1. What Is a Statistical Case Study? | 什么是统计案例分析?

    A statistical case study is an in-depth investigation that uses data to answer a specific question or explore a real-life situation. Instead of just calculating mean or drawing one graph, you follow the entire statistical cycle: pose a question, gather data, organise and display it, analyse patterns, and draw a conclusion. In CCEA Year 8, you will often be asked to plan a simple survey or experiment, collect small sets of data, and present your findings clearly.

    统计案例分析是一种深入调查,利用数据回答特定问题或探索真实场景。你不仅仅是计算平均数或画一张图表,而是遵循完整的统计周期:提出问题、收集数据、整理并展示数据、分析规律,最后得出结论。在 CCEA Year 8 课程中,你会经常被要求设计简单的调查或实验,收集小规模数据集,并清晰地呈现你的发现。


    2. Case Study 1: Class Pet Survey | 案例一:班级宠物调查

    Our first case study investigates the types and numbers of pets owned by students in a Year 8 class. The question we want to answer is: “What is the most common pet among pupils in 8A, and how many pets does a typical student have?” This is a straightforward survey that yields categorical and numerical data, perfect for practising frequency tables, bar charts and measures of central tendency.

    我们的第一个案例研究调查的是 Year 8 班级中学生饲养宠物的种类和数量。我们要回答的问题是:“8A 班学生中最常见的宠物是什么?一个典型学生拥有多少只宠物?”这是一个简单的调查,能产生分类数据和数值数据,非常适合练习频数表、条形图以及集中趋势的度量。


    3. Designing the Survey and Collecting Data | 设计调查并收集数据

    We prepared a short questionnaire asking each pupil: “Do you have any pets? If yes, what type(s) and how many of each?” The responses were recorded on a tally sheet during form time. A total of 28 students took part. To keep the data manageable, we limited pet types to dog, cat, fish, bird, hamster, other, and none. Each student could list more than one type.

    我们准备了一份简短的问卷,询问每位学生:“你有宠物吗?如果有,是什么种类?每种有多少只?”在早会时间用计数表记录回答。共有 28 名学生参与。为了让数据易于处理,我们把宠物种类限定为狗、猫、鱼、鸟、仓鼠、其他和无。每位学生可以列出多种答案。


    4. Organising Raw Data into Frequency Tables | 将原始数据整理成频数表

    To make sense of the raw results, we created a frequency table for pet types. Tally marks were counted and converted to numbers. For example: Dog 10, Cat 7, Fish 5, Bird 3, Hamster 4, Other 2, None 4. Notice that the total number of responses (35) is larger than the number of students (28) because some had more than one type of pet. For the number of pets per student, we made a separate frequency table: 0 pets → 4 students, 1 pet → 12, 2 pets → 7, 3 pets → 3, 4 pets → 2.

    为了理清原始结果,我们为宠物种类制作了频数表。计数符号被转换成数字。例如:狗 10、猫 7、鱼 5、鸟 3、仓鼠 4、其他 2、无 4。注意总回答次数(35)大于学生人数(28),因为有些学生拥有超过一种宠物。关于每位学生拥有的宠物数量,我们制作了另一个频数表:0 只 → 4 人,1 只 → 12 人,2 只 → 7 人,3 只 → 3 人,4 只 → 2 人。


    5. Displaying Data with Bar Charts and Pictograms | 用条形图和象形图展示数据

    A vertical bar chart was drawn to show pet types, with the category on the horizontal axis and frequency on the vertical axis. The bars were coloured and labelled, and the chart had a clear title: “Pets Owned by 8A Students”. For the number of pets, we used a pictogram where one symbol (a paw print) represented one student. This made it easy to see that 12 students have exactly one pet – the most common amount. Both displays were neat, used a ruler, and had equal spacing.

    我们绘制了一张垂直条形图来展示宠物种类,横轴是类别,纵轴是频数。条形图上色并加了标签,图表有清晰的标题:“8A 班学生拥有的宠物”。对于宠物数量,我们使用了象形图,一个符号(一个爪印)代表一名学生。这样很容易看出 12 名学生拥有正好一只宠物——这是最常见的数量。两个展示都整洁、用尺规作图,并且间隔相等。


    6. Measures of Central Tendency: Mean, Median, Mode | 集中趋势度量:平均数、中位数、众数

    From the frequency table of number of pets, we calculated the mode (most frequent value) as 1 pet, because 12 students fall into this group. The median was found by listing all 28 students’ pet counts in order: the 14th and 15th values are both 1, so median = 1. For the mean, we multiplied each pet count by its frequency, added the products (0×4 + 1×12 + 2×7 + 3×3 + 4×2 = 0+12+14+9+8 = 43) and divided by 28:

    Mean = 43 ÷ 28 ≈ 1.54 pets

    从宠物数量的频数表中,我们计算出众数(出现最多的值)是 1 只,因为有 12 名学生落在这个组。要找到中位数,我们把所有 28 名学生拥有的宠物数量从小到大排列:第 14 和第 15 个值都是 1,所以中位数 = 1。要计算平均数,我们把每个宠物数量值乘以对应的频数,将乘积相加(0×4 + 1×12 + 2×7 + 3×3 + 4×2 = 0+12+14+9+8 = 43),然后除以 28:

    平均数 = 43 ÷ 28 ≈ 1.54 只


    7. Range and Interpreting the Spread | 极差与数据分布的解读

    The range is the difference between the highest and lowest values. In our case, the maximum number of pets is 4, the minimum is 0, so the range = 4 − 0 = 4. This tells us that pet ownership varies quite a bit within the class. Together with the mean (1.54) and mode (1), we can say a typical Year 8 student has about 1 or 2 pets, but a few pupils have more, pulling the mean slightly upwards.

    极差是最大值与最小值的差。在我们的数据中,宠物数量的最大值是 4,最小值是 0,所以极差 = 4 − 0 = 4。这说明班级里宠物拥有情况差异较大。结合平均数(1.54)和众数(1),我们可以说,典型的 Year 8 学生大约有 1 到 2 只宠物,但有少数学生拥有更多,使得平均数略微偏高。


    8. Case Study 2: Daily Step Count Challenge | 案例二:每日步数挑战

    For the second case study, we moved from a survey to an experiment: tracking the daily step counts of five volunteers over one school week. The question was: “Do Year 8 pupils walk more on days they have PE lessons?” This introduces time-series data, line graphs, and comparisons between two sets of conditions. Steps were recorded using smartphone pedometers or school-provided counters.

    第二个案例研究,我们从调查转向了实验:追踪五名志愿者在一周上学期间的每日步数。要回答的问题是:“Year 8 学生在有体育课的日子是不是走的路更多?”这引入了时间序列数据、折线图以及两组条件之间的比较。步数通过智能手机计步器或学校提供的计数器记录。


    9. Recording Data in a Structured Table | 用结构化表格记录数据

    We designed a data table with columns for the day of the week, whether it was a PE day (Yes/No), and the step count for each volunteer, plus an average step count for that day. The table made it easy to compare. For example, Monday (PE, Yes): 6500, 7200, 6100, 5800, 7000 → average 6520 steps. Wednesday (No PE): 4200, 4500, 3900, 4100, 3800 → average 4100 steps. The full five-day table allowed us to see patterns at a glance.

    我们设计了一张数据表,列分别是一周中的星期几、是否有体育课(是/否)、每位志愿者的步数,以及当天的平均步数。表格使比较变得容易。例如,星期一(有体育课):6500、7200、6100、5800、7000 → 平均 6520 步。星期三(无体育课):4200、4500、3900、4100、3800 → 平均 4100 步。完整的五天数据表让我们一眼就能看出规律。


    10. Drawing and Interpreting Line Graphs | 绘制并解读折线图

    We created a double line graph: one line for the average steps on PE days (marked with a circle) and another line for non-PE days (marked with a square). The horizontal axis showed the day of the week, and the vertical axis showed steps from 0 to 8000. The lines clearly showed a peak on PE days. The graph also included a key, a title, and evenly spaced intervals. From the visual, we could see that step counts rose sharply on Monday and Thursday (both PE days) and dipped midweek.

    我们制作了一张双折线图:一条折线表示有体育课日的平均步数(用圆圈标记),另一条表示无体育课日的平均步数(用方块标记)。横轴为星期,纵轴为步数,范围从 0 到 8000。两条折线清楚地显示有体育课日出现峰值。图表还包括图例、标题和等距刻度。从视觉上可以看出,步数在星期一和星期四(都是体育课日)急剧上升,在周中下降。


    11. Comparing Two Data Sets Using Averages and Range | 用平均数和极差比较两组数据

    We separated all daily step counts into two groups: PE days (Mondays and Thursdays) and non-PE days (Tuesdays, Wednesdays, Fridays). For PE days, the mean step count was approximately 6410, with a range of 5800 to 7200 → range = 1400. For non-PE days, the mean was about 4030, with a range from 3800 to 4500 → range = 700. This shows that not only do pupils walk more on PE days, but their activity levels are also more varied; on non-PE days, steps are lower and more consistent.

    我们将所有每日步数数据分成两组:体育课日(周一和周四)与非体育课日(周二、周三、周五)。体育课日的平均步数约为 6410,极差从 5800 到 7200 → 极差 = 1400。非体育课日的平均步数约为 4030,极差从 3800 到 4500 → 极差 = 700。这表明,学生在体育课日不仅走路更多,而且活动水平的波动也更大;而在非体育课日,步数较低,也更稳定。


    12. Drawing Conclusions and Evaluating the Case Study | 得出结论并评估案例研究

    From the step data, we can conclude that Year 8 pupils do walk significantly more on days with PE lessons – the average step count was over 2000 steps higher. However, we must evaluate the study: the sample size was small (only five volunteers), and step counters might not be perfectly accurate. Also, weather or after-school clubs could affect results. A better design might include more students over several weeks. Despite these limitations, the case study successfully demonstrated the statistical process from question to evidence-based conclusion.

    从步数数据中,我们可以得出结论:Year 8 学生在有体育课的日子确实走路明显更多——平均步数高出超过 2000 步。然而,我们必须评估这项研究:样本量较小(只有五名志愿者),计步器可能不完全准确。此外,天气或课后俱乐部也可能影响结果。更完善的设计可以包括更多学生并持续几周。尽管存在这些局限,该案例研究成功展示了从提出问题到基于证据得出结论的完整统计过程。

    Published by TutorHao | Statistics Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 CCEA Statistics: Formula & Theorem Quick Reference Guide | Year 8 CCEA 统计:公式定理速查手册

    📚 Year 8 CCEA Statistics: Formula & Theorem Quick Reference Guide | Year 8 CCEA 统计:公式定理速查手册

    Welcome to your quick reference guide for Year 8 CCEA Statistics. This handbook gathers all the essential formulas, theorems, and key concepts you need to master at this stage. From calculating averages and range to interpreting scatter graphs and probability, each section is presented with clear statements and worked examples. Use this guide alongside your class notes and revision to build confidence in statistical thinking.

    欢迎使用 Year 8 CCEA 统计学科快速参考手册。本手册汇集了现阶段需要掌握的所有基本公式、定理和核心概念。从计算平均数与极差,到解读散点图与概率,每个部分都以清晰的陈述和示例呈现。结合课堂笔记和复习使用,帮助你建立统计思维的自信心。

    1. Types of Data | 数据类型

    In statistics, we classify data into types to decide how to display and analyse it. Data can be categorical (qualitative) or numerical (quantitative). Numerical data can be further split into discrete and continuous data.

    在统计学中,我们需要先对数据进行分类,以便选择正确的展示和分析方法。数据可以是分类的(定性数据)或数值的(定量数据)。数值数据又可以进一步细分为离散数据和连续数据。

    Qualitative data describes qualities or categories that cannot be measured numerically, such as eye colour, favourite subject, or car brands.

    定性数据描述的是无法用数字衡量的性质或类别,例如眼睛颜色、最喜欢的学科或汽车品牌。

    Quantitative data consists of numbers that can be measured or counted. Discrete data can only take certain values, usually whole numbers (e.g. number of students in a class). Continuous data can take any value within a range, including decimals (e.g. height, weight, time).

    定量数据由可以测量或计数的数字组成。离散数据只能取某些特定值,通常是整数(例如教室里的学生人数)。连续数据可以在一定范围内取任意值,包含小数(例如身高、体重、时间)。


    2. Mean, Median, Mode | 平均数、中位数、众数

    These are measures of central tendency, telling us where the centre of a data set lies. Each is calculated differently and gives a slightly different perspective.

    这些是集中趋势的度量,告诉我们数据集的中心在哪里。每一种计算方式不同,并能提供略微不同的视角。

    Mean: Add up all the values and divide by the number of values.

    平均数:将所有数值相加,再除以数值的个数。

    Mean = (Sum of all data values) ÷ (Number of data values)

    平均数 = (所有数据值之和) ÷ (数据值的个数)

    Median: Order the data from smallest to largest. The median is the middle value. If there are two middle values, median is the mean of those two.

    中位数:将数据从小到大排序。中位数就是中间的那个值。如果有两个中间值,则取这两个数的平均数。

    Mode: The value that appears most often. A data set can have one mode, more than one mode, or no mode at all.

    众数:出现次数最多的数值。一组数据可以有一个众数、多个众数,或者没有众数。

    Example: For the data set 3, 5, 5, 7, 9, the mean is (3+5+5+7+9)÷5 = 5.8, median is 5, and mode is 5.

    示例:对于数据集 3、5、5、7、9,平均数为 (3+5+5+7+9)÷5 = 5.8,中位数为 5,众数为 5。


    3. Range | 极差

    Range is a simple measure of spread, showing how spread out the data values are. It is the difference between the largest and smallest values.

    极差是一种简单的离散程度度量,表示数据值的分布范围。它是最大值与最小值的差。

    Range = Largest value − Smallest value

    极差 = 最大值 − 最小值

    A larger range indicates greater variability in the data, while a small range suggests the data values are closely packed together.

    极差越大,表示数据的变化程度越大;极差小则说明数据值较为集中。


    4. Frequency Tables | 频率表

    A frequency table organises data by showing how often each value or category occurs. It helps to summarise large data sets and calculate the mean from grouped data.

    频率表通过显示每个值或类别出现的次数来整理数据。它有助于汇总大型数据集,并能从分组数据中计算平均数。

    To find the mean from a frequency table, multiply each value by its frequency, add these products, then divide by the total frequency.

    要从频率表中计算平均数,先将每个值乘以其频率,再将所有乘积相加,最后除以总频率。

    Mean = (Sum of (Value × Frequency)) ÷ (Total Frequency)

    平均数 = (值 × 频率 之和) ÷ (总频率)

    For grouped frequency tables, use the midpoint of each class interval as the value.

    对于分组频率表,使用每个组区间的中点作为该组的代表值。


    5. Bar Charts and Pie Charts | 条形图与饼图

    Bar charts and pie charts are common ways to display categorical data. Bar charts use the height of bars to represent frequency, while pie charts use sectors of a circle.

    条形图和饼图是展示分类数据的常用方式。条形图用条形的高度表示频率,饼图则用扇区表示各部分的比例。

    In a bar chart, each category has a bar of equal width. The vertical axis shows frequency. Gaps between bars remind us that the data are categorical.

    在条形图中,每个类别拥有相同宽度的条形。纵轴显示频率。条形之间的空隙提醒我们数据是分类性质的。

    To draw a pie chart, we calculate the angle for each sector using the formula:

    绘制饼图时,我们需要使用以下公式计算每个扇区的角度:

    Angle = (Frequency of category ÷ Total frequency) × 360°

    角度 = (该类别频率 ÷ 总频率) × 360°

    Always check that the angles sum to 360° and label each sector clearly.

    始终要检查所有角度之和是否等于 360°,并为每个扇区清晰地贴上标签。


    6. Scatter Graphs and Correlation | 散点图与相关性

    Scatter graphs plot paired numerical data to see if there is a relationship between two variables. Each point represents a pair of values (x, y).

    散点图将成对的数值数据绘制出来,以观察两个变量之间是否存在关系。每个点代表一对数值 (x, y)。

    Correlation describes the direction and strength of the relationship:

    相关性描述这种关系的方向和强度:

    Positive correlation: as one variable increases, the other tends to increase. The points slope upwards.

    正相关:当一个变量增大时,另一个变量也趋向增大。数据点呈向上倾斜趋势。

    Negative correlation: as one variable increases, the other tends to decrease. The points slope downwards.

    负相关:当一个变量增大时,另一个变量趋向减小。数据点呈向下倾斜趋势。

    No correlation: there is no clear pattern; the points are scattered randomly.

    无相关:没有明显的规律;数据点随机分布。

    Correlation does not imply causation — just because two variables move together does not mean one causes the other.

    相关性并不意味着因果关系——两个变量同步变化,并不代表一个导致了另一个。


    7. Introduction to Probability | 概率基础

    Probability measures how likely an event is to happen. It is expressed as a number between 0 (impossible) and 1 (certain), or as a fraction, decimal, or percentage.

    概率衡量某事件发生的可能性大小。它用一个介于 0(不可能)和 1(必然)之间的数字表示,也可以用分数、小数或百分数来表达。

    The probability scale:

    概率尺度:

    0 ≤ P(event) ≤ 1

    For equally likely outcomes, the probability of an event is:

    对于等可能的结果,某事件的概率为:

    P(event) = Number of favourable outcomes ÷ Total number of possible outcomes

    概率 = 有利结果的数量 ÷ 所有可能结果的总数

    Example: Rolling a fair six-sided die, the probability of rolling an even number is 3/6 = 1/2 = 0.5.

    示例:投掷一枚均匀的六面骰子,掷出偶数的概率是 3/6 = 1/2 = 0.5。


    8. Experimental Probability and Expected Frequency | 实验概率与期望次数

    When we cannot assume equally likely outcomes, we estimate probability using data from experiments or surveys. This is called experimental probability or relative frequency.

    当我们无法假设结果等可能时,我们会通过实验或调查的数据来估计概率。这被称为实验概率或相对频率。

    Experimental Probability = Number of times the event occurs ÷ Total number of trials

    实验概率 = 事件发生的次数 ÷ 试验总次数

    As the number of trials increases, the experimental probability tends to get closer to the theoretical probability (the Law of Large Numbers).

    随着试验次数的增加,实验概率会趋向于接近理论概率(大数定律)。

    We can also use theoretical probability to predict how many times an event might occur in a given number of trials, called the expected frequency.

    我们还可以利用理论概率来预测在给定试验次数中某事件可能发生的次数,这称为期望次数。

    Expected Frequency = Probability of event × Number of trials

    期望次数 = 事件发生的概率 × 试验次数

    Example: If a coin is flipped 200 times, the expected frequency of heads is 0.5 × 200 = 100.

    示例:如果抛硬币 200 次,出现正面的期望次数为 0.5 × 200 = 100。


    Published by TutorHao | Statistics Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 CCEA Statistics Top-Scorer Tips and Strategies | CCEA 八年级统计学:学霸高分经验分享

    📚 Year 8 CCEA Statistics Top-Scorer Tips and Strategies | CCEA 八年级统计学:学霸高分经验分享

    Success in Year 8 CCEA Statistics is not about memorising formulas blindly – it is about understanding data, interpreting graphs, and building a logical approach to problem-solving. In this guide, I will share the strategies that helped me consistently score above 90%, from planning my revision timetable to tackling tricky probability questions. Whether you are just starting the course or preparing for your final test, these tips will give you a clear advantage.

    在 CCEA 八年级统计学中取得高分,绝不是靠死记硬背公式——关键在于理解数据、解读图表,并建立起一套逻辑清晰的解题思路。在这份指南里,我将分享让我成绩稳定在 90% 以上的实用策略,从制定复习计划到攻克棘手的概率题。无论你是刚接触这门课还是正在备考期末,这些方法都能让你领先一步。

    1. Start with a Real Revision Timetable | 从一份切实可行的复习时间表开始

    My first step was always creating a simple timetable that spread topics over two weeks. I dedicated Monday to types of data, Tuesday to bar charts and pictograms, Wednesday to mean and median, and so on. I kept each session to 25 minutes of focused work followed by a 5‑minute break to stay fresh. This tiny routine made revision feel manageable and prevented last‑minute panic.

    我的第一步始终是制定一份简单的两星期计划,把不同主题分散到每一天。周一学习数据类型,周二攻克条形图和象形图,周三搞定平均数与中位数,以此类推。我每次专心学习 25 分钟,然后休息 5 分钟保持头脑清醒。这个小小的习惯让复习变得从容不迫,完全避免了临时抱佛脚的慌乱。

    2. Master the Language of Data Types | 彻底吃透数据类型的术语

    CCEA exams love to test whether you can distinguish between discrete and continuous data, or identify qualitative and quantitative variables. I made flashcards with examples: ‘Number of siblings’ is discrete quantitative, while ‘reaction time’ is continuous quantitative. For qualitative data, I remembered that ‘eye colour’ is nominal and ‘satisfaction rating (1‑5)’ is ordinal. Understanding these distinctions earned me easy marks on the first few questions of every paper.

    CCEA 考试特别喜欢考查你能否区分离散数据与连续数据,或者识别定性变量和定量变量。我制作了闪卡并配上例子:“兄弟姐妹人数”是离散定量数据,而“反应时间”则是连续定量数据。对于定性数据,我记住“眼睛颜色”属于名义数据,“满意度评分 (1‑5)” 属于有序数据。弄清这些区别让我在每份试卷的前几题稳稳拿分。


    3. Draw Graphs that Teach, Not Just Display | 画能教会你的图表,而不只是展示数据

    A common mistake I saw was drawing a bar chart without labelling axes or using uneven scales. I trained myself to always write the variable name and unit on the axis, and to check whether the scale started at zero. When I moved to pictograms, I made sure the key was clear and that half‑symbols were drawn consistently. These small details often make the difference between a grade 7 and a grade 9.

    我常看到的一个错误是画条形图时忘记标注坐标轴,或者使用了不均匀的刻度。我训练自己一定要在坐标轴上写明变量名称和单位,并检查刻度是否从零开始。画象形图时,我会确保图例清晰,半符号也画得一致。这些微小细节往往决定了你是拿到 7 分还是 9 分。


    4. Averages Are Your Best Friend – Know All Three | 平均数是你最好的朋友——三种都要精通

    I stopped confusing mean, median, and mode by using a small notebook example: for data set 2, 3, 3, 5, 7, the mean is (2+3+3+5+7) ÷ 5 = 20 ÷ 5 = 4; the median is the middle value 3; the mode is 3 because it appears most often. I also practised finding the median when there is an even number of values – the median of 2, 4, 6, 8 is (4+6) ÷ 2 = 5. I used these calculations to answer questions about which average best represents a data set with an outlier.

    我通过一个小本子上的例子,彻底告别了对平均数、中位数和众数的混淆:对于数据集 2, 3, 3, 5, 7,平均数 = (2+3+3+5+7) ÷ 5 = 20 ÷ 5 = 4;中位数是中间的值 3;众数是出现次数最多的 3。我还专门练习了偶数个数据时求中位数的方法——数据 2, 4, 6, 8 的中位数是 (4+6) ÷ 2 = 5。我用这些计算去回答哪类平均数最能代表含有异常值的数据集。


    5. Range and Spread Tell You More Than You Think | 极差与离散程度比你想象的更有用

    The range is simply the largest value minus the smallest, but I always connected it to consistency. For example, two students might both have a mean score of 80%, but if one has a range of 10% and the other 40%, the first is far more consistent. I practised explaining this in words, as CCEA often asks ‘What does the range tell you about the data?’ My answer always linked back to spread and reliability.

    极差就是最大值减去最小值,但我总是把它和“一致性”联系起来。比如,两个学生的平均分都是 80%,但一个的极差是 10%,另一个是 40%,那么前者成绩要稳定得多。我专门练习用语言解释这一点,因为 CCEA 常问“极差说明了数据的什么特点?”我的回答一定会联系到离散程度和可靠性。


    6. Interpret Pie Charts with a Sharp Eye | 用敏锐的眼光解读饼图

    I stopped guessing angles by learning that each category’s angle is (frequency ÷ total) × 360°. I would then double‑check my work by making sure all angles added up to 360°. In exam questions, I looked for the link between the angle and the percentage – 90° is always 25%, 180° is 50%. This let me quickly estimate answers and catch silly mistakes. I also practised reverse questions: given the angle and the frequency for one sector, find the total frequency.

    我不再瞎猜角度,而是牢记每个类别的角度 = (频数 ÷ 总数) × 360°。然后我会把全部角度加起来是否等于 360°,以此检查计算。在考试题中,我特别注意角度和百分比的对应关系——90° 永远是 25%,180° 是 50%。这样我能快速估算答案并发现低级错误。我还反复练习了反向题:已知一个扇形的角度和频数,求总数。


    7. Probability Starts with Words, Then Numbers | 概率从文字描述开始,再上升到数字

    I started every probability question by writing the probability scale: 0 for impossible, ½ for even chance, 1 for certain. Then I expressed the probability of an event as a fraction: P(event) = number of favourable outcomes ÷ total number of outcomes. For a bag with 3 red, 2 blue, and 5 green counters, P(red) = 3/10 = 0.3. I made sure to simplify fractions and, where required, convert to decimals or percentages. I also practised the ‘expectation’ formula: expected number = probability × number of trials, e.g. if I spin a spinner 200 times, I’d expect P(blue) × 200.

    我处理每道概率题的第一步,都是画出概率标尺:0 表示不可能,½ 表示机会均等,1 表示必然发生。然后我用分数表示事件概率:P(事件) = 有利结果的数量 ÷ 总结果数量。比如一个袋子里有 3 红、2 蓝、5 绿,P(红) = 3/10 = 0.3。我注意约分,并在需要时转换为小数或百分数。我还会练习“期望值”公式:期望次数 = 概率 × 试验次数,例如转动转盘 200 次,我期望出现蓝色的次数是 P(蓝) × 200。


    8. Tackle Two‑Way Tables Systematically | 系统化攻克双向表

    Two‑way tables looked overwhelming at first, so I developed a habit: fill in the totals column and row first using addition or subtraction. If I was given only partial data, I used the totals to work backwards and find missing values. I always wrote a mini‑check: do all row totals add to the overall total? Once the table was complete, I could easily answer questions like ‘What fraction of boys chose football?’ or ‘Find the probability that a randomly chosen student is a girl who prefers netball.’

    双向表一开始让我头皮发麻,于是我养成了一个习惯:先用加法或减法填出总计行和总计列。如果只给出了部分数据,我就利用总数反推出缺失值。我总会做一个小检查:所有行总和加起来是否等于总人数?一旦表格完整了,我就能轻松回答诸如“选择足球的男生占多少比例?”或者“随机选一名学生,她是偏好篮网球的女生的概率是多少?”


    9. Scatter Graphs and Correlation Made Simple | 让散点图与相关性变得简单

    I remembered correlation direction with a hand gesture: an upward slope means positive correlation, downward means negative, and a cloud shape means no correlation. For CCEA, I made sure I could describe the relationship in a sentence: ‘As temperature increases, ice cream sales also increase, showing a positive correlation.’ I practised drawing a line of best fit by balancing points above and below the line, and then using the line to estimate a missing value. I always labelled that estimate as an ‘interpolation’ if it was within the data range.

    我用一个手势来记相关方向:向上倾斜代表正相关,向下代表负相关,一团乱麻状代表无相关。应对 CCEA 考试,我确保自己能用一句话描述关系:“随着温度升高,冰淇淋销量也增加,呈现出正相关。”我反复练习画最佳拟合线,让线两侧的点数大致平衡,然后用线去估算缺失值。如果估算值落在数据范围内,我一定标注那是“内插”。


    10. Avoid Silly Mistakes with a Final‑Check Routine | 用终场检查法杜绝低级错误

    I reserved the last five minutes of every test for a specific check: scales on graphs, units on answers, totals in frequency tables, and whether I had answered the exact question. I read the question again and asked myself, ‘Does my answer make sense in real life?’ For example, if I got a mean age of 137 years, I knew I had slipped somewhere. This habit alone pushed my marks from the low 80s into the high 90s.

    我在每次测验的最后五分钟都会进行专项检查:图表的刻度、答案的单位、频数表的总计,以及我是否回答了题目的真正要求。我会重新读题并问自己:“我的答案在现实中合理吗?”如果算出来平均年龄是 137 岁,我就知道肯定哪里出错了。仅这一个习惯就让我的分数从 80 多分飙升至 90 多分。


    11. Learn from Every Past Paper You Touch | 从你做过的每一套真题中汲取养分

    I kept a ‘mistake journal’ where I wrote down every error, categorised it as Calculation, Reading, or Concept, and then rewrote the correct solution in my own words. Over four past papers, I spotted patterns: I often forgot to multiply frequency by the value when calculating the mean from a frequency table. Once I identified that weakness, I drilled five similar problems until it became automatic. CCEA recycles question styles, so knowing my own traps was a superpower.

    我准备了一本“错题日志”,记录下每一个错误,并归类为计算错误、读题错误或概念错误,然后用我自己的话重写正确解法。在做了四套真题之后,我发现了规律:从频数表求平均数时,我经常忘记将数值乘以频数。一旦识别出这个弱点,我就狂练五道类似题目直到它变成肌肉记忆。CCEA 考试题型会重复出现,所以摸清自己的陷阱就是我的超能力。


    12. Believe in Your Own Data Story | 相信你自己讲述的数据故事

    The most important shift I made was treating statistics not as a bunch of isolated tricks, but as a language for telling stories. Behind every bar chart is a survey; behind every median is a decision about fairness. When I started explaining my reasoning out loud while studying, I engaged with the material more deeply. On exam day, I walked in feeling like a data detective, not a stressed student – and that mindset carried me to a top grade.

    我转变最大的一点,就是不把统计学当成一堆孤立的技巧,而是看作讲述故事的语言。每张条形图背后都是一次调查;每个中位数都关乎对公平的判断。当我在学习时开始出声解释自己的推理后,我对知识的理解更深了。考试那天,我走进考场时感觉自己是一名数据侦探,而不是压力山大的学生——而这种心态成就了我的高分。

    Published by TutorHao | Statistics Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 CCEA Statistics: Key Concepts Review | 八年级 CCEA 统计核心知识点梳理

    📚 Year 8 CCEA Statistics: Key Concepts Review | 八年级 CCEA 统计核心知识点梳理

    Welcome to your complete guide to the core topics in Year 8 CCEA Statistics. This article will take you through data types, collection methods, constructing and interpreting charts, finding averages and measures of spread, and understanding the basics of probability. Building confidence in these areas now will prepare you for more advanced work later on.

    欢迎来到八年级 CCEA 统计核心知识的完全指南。本文将带你梳理数据类型、收集方法、绘制与解读图表、求平均数与离散度量,以及理解概率的基础知识。现在就对这些领域建立信心,将为今后的进阶学习做好准备。


    1. Types of Data | 数据类型

    In statistics, data are generally classified as qualitative or quantitative. Qualitative data describe a quality or category and are often words, such as hair colour or types of pet. Quantitative data consist of numbers, like heights or number of siblings.

    在统计中,数据通常被分为定性数据与定量数据。定性数据描述某种性质或类别,常以文字表示,例如发色或宠物类型。定量数据由数字组成,例如身高或兄弟姐妹的数量。

    Quantitative data can be further split into discrete and continuous. Discrete data result from counting and can only take certain values – for instance, the number of books in a bag. Continuous data are obtained by measuring and can take any value within a range, such as the mass of an apple or the time taken to run 100 metres.

    定量数据还可以进一步划分为离散数据与连续数据。离散数据来源于计数,只能取某些特定值,例如书包里书的数量。连续数据通过测量获得,可以取一个范围内的任意值,例如一个苹果的质量或跑 100 米所用的时间。


    2. Data Collection Methods | 数据收集方法

    Data can be collected directly for a specific purpose – this is primary data. Common primary methods include questionnaires, interviews, observations and experiments. Secondary data are information that already exist, such as statistics from the internet, newspapers or large databases.

    数据可以直接为特定目的而收集——这就是一手数据。常见的一手方法包括问卷调查、访谈、观察和实验。二手数据是已经存在的信息,比如来自互联网、报纸或大型数据库的统计资料。

    When designing a questionnaire, questions must be clear, unbiased and not leading. In an experiment, only one variable should be changed while keeping everything else the same, so the test is fair. Always consider whether a sample is representative before drawing conclusions.

    设计问卷时,问题必须清晰、无偏差且没有诱导性。在实验中,应该只改变一个变量而保持其他条件不变,这样才能保证测试的公平性。在下结论之前,始终要考虑样本是否具有代表性。


    3. Frequency Tables and Tally Marks | 频数表与计数符号

    A frequency table helps to organise raw data into categories. Tally marks are used to record each data point as it appears: each vertical stroke represents one item, and every fifth stroke is drawn diagonally across the previous four to make groups of five easy to count at a glance.

    频数表有助于将原始数据按类别整理。使用计数符号记录每个出现的数据点:每一条竖线代表一个项目,每五个竖线用一条斜线划过前四个,方便快速五五计数。

    Once all data are tallied, the total frequency for each category is recorded in a separate column. Always check that the sum of all frequencies equals the total number of data items. This table forms the basis for many charts and calculations.

    所有数据计数完毕后,每类别的总频数记录在单独一列中。务必检查所有频数之和是否等于数据总数。这样的表格是许多图表和计算的起点。


    4. Bar Charts and Pictograms | 条形图与象形图

    Bar charts are used to display categorical data. Each category has a bar of equal width, and the height of the bar shows its frequency. Bars must not touch because the categories are separate, and both axes must be clearly labelled.

    条形图用于展示分类数据。每个类别的条宽度相等,条的高度表示其频数。由于类别彼此独立,条与条之间不能接触,并且两根轴都必须清楚地标记。

    Pictograms use symbols or pictures to represent data. Each symbol stands for a fixed number of items, and a key must be included to explain what one symbol means. When a value is not a multiple of the symbol’s worth, a part of the symbol is drawn proportionally.

    象形图使用符号或图片来代表数据。每个符号代表固定数量的物品,必须包含图例说明一个符号的含义。当数值不是符号代表值的整数倍时,需要按比例绘制符号的一部分。


    5. Pie Charts | 饼图

    Pie charts display data as sectors of a circle, making it easy to compare parts of a whole. The angle of each sector is proportional to its frequency, calculated with the formula:

    饼图以圆的扇形展示数据,便于比较部分在整体中的比例。每个扇形的角度与频数成正比,通过以下公式计算:

    Angle = (category frequency ÷ total frequency) × 360°

    When drawing a pie chart, use a protractor to measure each angle accurately from the same starting point. Adding labels or a key helps readers understand what each sector represents. Pie charts are most effective when there are a small number of categories with clear differences.

    绘制饼图时,用量角器从同一起始点准确测量每个角度。添加标签或图例有助于读者理解每个扇形代表什么。当类别数量较少且差异明显时,饼图的效果最佳。


    6. Line Graphs | 折线图

    Line graphs are ideal for showing change over time. Points are plotted as ordered pairs on a coordinate grid, and consecutive points are joined by straight line segments. The horizontal axis typically shows time, while the vertical axis shows the variable being measured.

    折线图非常适于展示随时间的变化。在坐标网格上将数据点作为有序对描出,并用直线段连接相邻点。横轴通常表示时间,纵轴表示被测量的变量。

    Before drawing a line graph, choose sensible scales to make good use of the graph paper. Plot points carefully, and connect them with a ruler. After completing the graph, you can describe trends such as ‘increasing’, ‘decreasing’, or ‘staying constant’ over periods.

    绘制折线图之前,要选择合理的刻度以充分利用图纸。仔细描点后,用直尺连接它们。画好图形后,你可以描述变化趋势,如某段时间内“上升”、“下降”或“保持不变”。


    7. Stem-and-Leaf Diagrams | 茎叶图

    A stem-and-leaf diagram orders data while showing the shape of the distribution. Each number is divided into a stem (all digits except the last) and a leaf (the final digit). Stems are listed vertically in order, and leaves are written horizontally next to their stem in ascending order.

    茎叶图既对数据进行排序,又展示分布的形态。每个数字分为茎(除最后一位外的所有数位)和叶(最后一位数字)。茎按顺序纵向列出,叶则按升序横向写在对应茎的旁边。

    It is essential to provide a key that explains the place value, such as ‘4 | 7 means 47 cm’. Stem-and-leaf diagrams make it easy to spot the mode and calculate the median, as the data are already ordered. They work best for relatively small data sets with two or three digits.

    必须提供图例来说明位值,例如“4 | 7 代表 47 厘米”。因为数据已经排好序,茎叶图便于找出众数并计算中位数。它们最适合处理两到三位数字构成的较小数据集。


    8. Averages: Mode, Median and Mean | 平均数:众数、中位数和均值

    The mode is the value that appears most often in a data set. A set may have one mode, more than one mode (bimodal), or no mode at all if all values occur equally often. The mode is the only average that can be used for non-numerical data, such as favourite colours.

    众数是数据集中出现频率最高的值。一个数据集可能有一个众数、多个众数(双峰),或者如果所有值出现次数一样多,则可能没有众数。众数是唯一可用于非数值数据(如最喜欢的颜色)的平均数。

    The median is the middle value when data are arranged in order. For an odd number of values, it is the central one; for an even number, average the two middle values. The median is less affected by very high or low values, making it useful when data contain outliers.

    中位数是数据按顺序排列后位于中间的值。如果数据个数为奇数,就是正中间的那个值;如果为偶数,则取中间两个值的平均数。中位数受极大值或极小值的影响较小,因此当数据含有异常值时非常有用。

    The mean is calculated by adding all data values together and dividing by how many values there are. In symbols:

    均值的计算方法是将所有数据值相加,再除以数据的个数。用符号表示为:

    Mean x̄ = (sum of all data values) ÷ number of values

    The mean uses every piece of data, so it gives a complete picture but can be distorted by outliers. When comparing sets, consider which average best describes the typical value in the given context.

    均值用到了每一个数据,所以它能反映整体情况,但可能会被异常值扭曲。比较不同数据集时,要结合具体情境,考虑哪种平均数最能描述典型值。


    9. Range as a Measure of Spread | 极差——离散程度的度量

    The range tells us how spread out the data are. It is found by subtracting the smallest value from the largest value:

    极差告诉我们数据分布的离散程度。它由最大值减去最小值得到:

    Range = largest value − smallest value

    A small range indicates the data are closely clustered around the centre, whereas a large range shows greater variability. Together with an average, the range helps to compare the consistency of two data sets.

    极差小说明数据紧密聚集在中心附近,而极差大则显示较大的变异性。结合平均数,极差有助于比较两个数据集的一致性。


    10. Introduction to Probability | 概率初步

    Probability is a measure of how likely an event is to happen. It can be written as a fraction, a decimal or a percentage, and its value always lies between 0 (impossible) and 1 (certain). An event that has an even chance of happening has a probability of 0.5 or ½.

    概率是衡量事件发生可能性大小的指标。它可以写成分数、小数或百分数,值始终在 0(不可能)到 1(必然)之间。一个发生机会均等的事件,概率为 0.5 或 ½。

    For equally likely outcomes, the probability of an event E is given by:

    对于等可能的结果,事件 E 的概率由下式给出:

    P(E) = number of favourable outcomes ÷ total number of possible outcomes

    Understanding the probability scale helps you describe likelihood using words such as impossible, unlikely, even chance, likely and certain, before calculating the exact value.

    理解概率尺度有助于在计算确切数值之前,使用“不可能”、“不太可能”、“机会均等”、“很可能”和“必然”等词语来描述可能性。


    11. Interpreting and Comparing Data | 理解与比较数据

    To compare two or more data sets, calculate an average and a measure of spread for each set. A higher mean or median suggests a higher typical performance, while a smaller range or interquartile range indicates less variation and more reliability.

    要比较两个或更多数据集,需分别计算每个数据集的平均数和离散度量。较高的均值或中位数提示典型表现更好,而较小的极差或四分位距则表明变异更小、结果更可靠。

    When writing a conclusion, always refer back to the context of the problem. Use precise statistical language, mention specific values, and explain what the numbers mean in real-life terms. This turns calculations into meaningful answers.

    在撰写结论时,务必回到问题的情境中去。使用准确的统计语言,提及具体数值,并说明这些数字在现实中的含义。这样才能把计算转化为有意义的答案。


    Published by TutorHao | Statistics Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 CCEA Statistics: High-Frequency Topics and Common Mistakes Analysis | Year 8 CCEA 统计:高频考点与易错题分析

    📚 Year 8 CCEA Statistics: High-Frequency Topics and Common Mistakes Analysis | Year 8 CCEA 统计:高频考点与易错题分析

    Statistics in Year 8 lays the foundation for data handling and probability that you will build on throughout your CCEA mathematics journey. This article breaks down the most frequently tested topics — from bar charts to averages — and highlights the typical mistakes students make, so you can avoid them in your class assessments and end-of-year exams.

    Year 8 统计为你今后的数据处理和概率学习打下基础,贯穿整个 CCEA 数学课程。本文拆解了最常见的考点 —— 从条形图到平均数 —— 并重点分析学生常犯的错误,帮助你在课堂测验和年终考试中避坑。

    1. Types of Data and Data Collection | 数据类型与数据收集

    In Year 8 CCEA statistics, you need to know the difference between primary data (collected yourself) and secondary data (gathered from existing sources such as books or websites). You should also be able to classify data as qualitative (describes qualities, e.g. favourite colour) or quantitative (numerical). Quantitative data can be discrete (counted, e.g. number of pets) or continuous (measured, e.g. height). A common error is to assume any number is automatically continuous — remember that shoe size, though numeric, is usually treated as discrete because it comes in set sizes.

    在 Year 8 CCEA 统计中,你需要区分 一手数据(自己收集的)和 二手数据(来自书本或网站等现有来源)。还要会将数据分为 定性数据(描述性质,如最喜欢的颜色)或 定量数据(数值型)。定量数据又分为 离散数据(计数,如宠物数量)和 连续数据(测量,如身高)。一个典型错误是认为只要是数字就是连续数据 —— 请记住,鞋子尺码虽然是数字,但通常被视为离散数据,因为它是一系列固定的码数。

    Another tricky point is distinguishing between discrete and continuous data when reading scales. For example, the number of children in a family is discrete (you cannot have 2.5 children), while the mass of an apple is continuous (it can be 152.7 g). Examiners often test this understanding by asking you to choose a sensible type of graph for the data.

    另一个易错点是读刻度时分不清离散和连续数据。例如,家庭中孩子的数量是离散的(不可能有 2.5 个孩子),而苹果的质量是连续的(可以是 152.7 g)。考官常通过让你选择适合该数据类型的图表来考察这一点。


    2. Bar Charts and Pictograms | 条形图与象形图

    Bar charts are used to display discrete or categorical data. In Year 8 CCEA, you must be able to draw bar charts with equal-width bars, label both axes clearly, and leave gaps between bars (unless it is a bar-line chart for discrete numerical data over time). A frequent mistake is using a bar chart for continuous data when a histogram would be more appropriate, but at Year 8 level the focus is on discrete and categorical cases. Also, the vertical scale must start from zero to avoid misleading the viewer.

    条形图用来展示离散或分类数据。在 Year 8 CCEA 考试中,你必须会画等宽的条形,清楚标注两轴,并在条形之间留出空隙(除非是表示随时间变化的离散数值的折线图)。常见的错误是对连续数据使用条形图 —— 虽然 Year 8 阶段主要关注离散和分类数据类型,但刻度必须从零开始,以免误导读者。

    Pictograms use symbols to represent a certain number of items. The key is crucial: a common pitfall is using a half symbol incorrectly when the key says 1 symbol = 2 units, and a student tries to represent a value of 3 by drawing 1.5 symbols but draws the half incorrectly scaled. Always divide the value by the key value to find the number of symbols needed, and draw any part-symbols in proportion.

    象形图用图标表示一定数量的物品。图例至关重要:常见错误是当图例表示 1 个符号 = 2 个单位时,要表示 3 个单位需要画 1.5 个符号,学生却把半个符号的比例画错了。一定要用数值除以图例单位值来得出需要的符号数量,并按照比例画出部分符号。


    3. Reading Pie Charts Accurately | 准确解读饼图

    Pie charts show proportions of a whole. In CCEA Year 8 assessments, you may be asked to estimate fractions or percentages from a pie chart, or to calculate the actual number from a given total. A classic mistake is to confuse the angle size with the percentage. For instance, a sector of 90° always represents ¼ or 25% of the total, not 90%! Students often misread the pie chart by eye without using a protractor or the angle hints provided.

    饼图表示整体中各部分的比例。在 CCEA Year 8 考试中,你可能需要从饼图中估算分数或百分数,或者由已知总数计算实际数量。一个经典错误是把角度大小和百分比搞混。比如 90° 的扇形总是代表总体的 ¼ 或 25%,而不是 90%!学生常犯的毛病是凭肉眼估计,而不用量角器或题中给出的角度提示。

    When a pie chart represents data from a survey of, say, 60 students, a sector of 120° means (120/360) × 60 = 20 students. Many students forget to multiply by the total and simply write the angle as the answer. Always set up the calculation: (sector angle / 360) × total frequency.

    如果一张饼图表示 60 名学生的调查结果,那么一个 120° 的扇形表示 (120/360) × 60 = 20 名学生。许多学生忘记乘以总数,直接把角度当成答案写上去。一定要列出算式:(扇形角度 / 360) × 总频数。


    4. Calculating the Mean | 计算平均数

    The mean is found by adding up all the values and dividing by how many values there are. In formula terms: mean = (sum of data values) ÷ (number of data values). For example, the mean of 8, 12, 15, 9, 16 is (8+12+15+9+16) ÷ 5 = 60 ÷ 5 = 12. A common careless mistake is to include an extra zero or to miss a value when adding by hand. Using a calculator is recommended, but you must show your working to gain full marks.

    平均数是将所有数值相加再除以数值的个数。公式为:平均数 = (数据总和) ÷ (数据个数)。例如 8, 12, 15, 9, 16 的平均数是 (8+12+15+9+16) ÷ 5 = 60 ÷ 5 = 12。一个粗心大意的常见错误是手工加法时多算一个 0 或漏掉一个数。建议使用计算器,但必须展示计算过程才能获得满分。

    Another pitfall occurs when dealing with a frequency table. If a table shows that 10 students have 2 pets, 5 students have 1 pet, etc., you must multiply each value by its frequency before summing. Forgetting to multiply is the single most frequent error in mean-from-table questions. Always write out the ‘fx’ column: value × frequency.

    另一个易错点出现在处理频数表时。如果表格显示 10 名学生有 2 只宠物,5 名学生有 1 只宠物等,你必须在求和之前将每个数值乘以它的频数。忘记相乘是从表格求平均数时最常见的错误。一定要写出 ‘fx’ 列:数值 × 频数。


    5. Finding the Median and Mode | 求中位数与众数

    The median is the middle value when the data is put in order. If there is an odd number of values, the median is the centre one; if even, it is the mean of the two middle values. For example, the median of 3, 7, 8, 11, 14 is 8. For 3, 7, 8, 11 the median is (7+8)÷2 = 7.5. Students often forget to order the data first — the median of 11, 3, 7, 8 is not 7 without ordering. Always rearrange from smallest to largest.

    中位数是将数据排序后中间的那个数。如果数据个数是奇数,中位数就是正中间的那个;如果是偶数,则是中间两个数的平均数。例如 3, 7, 8, 11, 14 的中位数是 8。对于 3, 7, 8, 11,中位数是 (7+8)÷2 = 7.5。学生经常忘记先排序 —— 不排序的话,11, 3, 7, 8 的中位数可不是 7。一定要先从小到大排列。

    The mode is the value that appears most often. A data set can have one mode, more than one mode (bimodal), or no mode at all if all values occur equally. A mistake is to write ‘0’ as the mode when no mode exists; the correct answer is ‘no mode’ or ‘none’. Also, do not confuse the mode with the frequency; the mode is the data value, not how many times it appears.

    众数是出现次数最多的数值。一组数据可能有一个众数,也可能有多个众数(双众数),如果所有数值出现次数相同,则无众数。一个错误是在没有众数时把 ‘0’ 当作众数;正确答案应该是 ‘无众数’。此外,不要把众数和频数搞混;众数是数据值本身,而不是它出现的次数。


    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 SQA Statistics: Progression Bridging Guide | SQA八年级统计:升学衔接指南

    📚 Year 8 SQA Statistics: Progression Bridging Guide | SQA八年级统计:升学衔接指南

    Welcome to your Year 8 statistics bridging guide, designed to help you transition smoothly into the more demanding statistical reasoning required by SQA qualifications. Whether you are aiming for National 5 Applications of Mathematics or the standalone Statistics Award, mastering the fundamentals now will give you a huge head start. This guide covers essential concepts, common pitfalls and practical tips to build your confidence in using data to answer real-world questions.

    欢迎阅读八年级统计衔接指南,旨在帮助你顺利过渡到 SQA 资格所要求的更高统计推理水平。无论你的目标是国家5级应用数学还是独立的统计认证,现在掌握基础知识都将为你带来巨大优势。本指南涵盖核心概念、常见陷阱和实用技巧,帮助你建立用数据回答现实问题的信心。


    1. Why Statistics Matters for Your SQA Journey | 为什么统计对你的SQA之旅很重要

    Statistics is not just about numbers; it is the science of collecting, analysing and interpreting data to make informed decisions. In the Scottish curriculum, statistical skills are embedded across subjects from mathematics to geography, and they form a significant part of the SQA National 5 assessments. By strengthening your statistical thinking in Year 8, you will be better prepared to handle complex data sets, construct arguments based on evidence, and critically evaluate claims you encounter in everyday life.

    统计不仅仅是数字,而是收集、分析和解读数据以做出明智决策的科学。在苏格兰课程中,统计技能贯穿数学、地理等学科,并在 SQA 国家5级考评中占据重要比重。通过在八年级强化统计思维,你将能更好地处理复杂数据集、构建基于证据的论点,并批判性地评估日常生活中遇到的各种论断。

    Moreover, SQA examiners look for the ability to communicate findings clearly using appropriate statistical language. Starting early with vocabulary like ‘distribution’, ‘variability’, and ‘correlation’ will make later years much easier. Remember: statistical literacy is a lifelong skill that goes far beyond the classroom.

    此外,SQA 考官看重用恰当的统计语言清晰传达结果的能力。尽早熟悉“分布”“变异性”“相关性”等词汇将让后续学习变得轻松许多。请记住:统计素养是远超课堂的终身技能。


    2. The Core Idea: From Data to Decisions | 核心思想:从数据到决策

    At its heart, statistics follows a simple cycle: pose a question, collect data, summarize with numbers and graphs, and then interpret to draw conclusions. In Year 8, you will often start with a small data set — for example, the heights of students in your class — and learn to find the mean, create a bar chart, and explain what the data tells you. This process mirrors how researchers and businesses use data to make decisions every day.

    统计的核心是一个简单循环:提出问题、收集数据、用数字和图表进行总结,然后解读并得出结论。在八年级,你通常会从小型数据集开始——例如班级同学的身高——并学习计算平均数、制作条形图,并解释数据说明了什么。这一过程反映了研究人员和企业每天如何利用数据做决策。

    Always keep the question in mind. When you are asked to calculate the median or draw a pie chart, ask yourself: ‘What is this telling me about the group?’ This habit will train you to think like a statistician and will be essential when you face longer, more open-ended tasks at National 5 level.

    始终牢记问题本身。当你被要求计算中位数或绘制饼图时,问问自己:“这告诉我关于这个群体的什么信息?”这一习惯将训练你像统计学家一样思考,并且在面对国家5级更长、更开放的任务时至关重要。


    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 SQA Statistics: Comparing UK University Entry Requirements | SQA Year 8统计:英国大学入学要求对照

    📚 Year 8 SQA Statistics: Comparing UK University Entry Requirements | SQA Year 8统计:英国大学入学要求对照

    In SQA Statistics, data comparison helps us understand real-world scenarios like university admissions. This article explores how statistical tools reveal patterns in UK university entry requirements, using charts, probability, and summary statistics to guide study choices.

    在SQA统计中,数据比较能帮助我们理解大学招生这样的现实问题。本文通过图表、概率和汇总统计,探讨统计工具如何揭示英国大学入学要求的规律,为你的学习规划提供依据。

    1. UCAS Tariff Points System | UCAS积分系统

    The UCAS tariff converts grades into numerical points, enabling direct comparison of entry requirements. For A-levels, the standard points are: A* = 56, A = 48, B = 40, C = 32, D = 24, E = 16. SQA Higher grades translate approximately to: A = 33, B = 27, C = 21, D = 15. Most UK universities express their offers using these tariff totals.

    UCAS积分将成绩转化为数值分数,使不同入学要求可以直接比较。A-level的积分标准为:A* = 56,A = 48,B = 40,C = 32,D = 24,E = 16。SQA Higher成绩大致折算为:A = 33,B = 27,C = 21,D = 15。多数英国大学都用这些积分总数来表示录取要求。

    Grade A-level Points SQA Higher (approx.)
    A* / Band A 56 Not applicable
    A 48 33
    B 40 27
    C 32 21
    D 24 15

    2. Mean Tariff Points for Top Universities | 顶尖大学的平均积分

    We can rank competitiveness by calculating the mean tariff of a typical offer. For instance, Oxford often states A*AA, giving a total of 56 + 48 + 48 = 152 points, with a mean of 50.7 per subject. In contrast, a university requiring ABB yields 48 + 40 + 40 = 128 points, a mean of 42.7. Comparing means highlights the gap in entry standards.

    我们可以通过计算典型录取的平均积分来比较竞争激烈程度。比如,牛津大学经常要求A*AA,总分为56 + 48 + 48 = 152,单科平均50.7。而一所要求ABB的大学总分为48 + 40 + 40 = 128,平均42.7。平均值的比较清晰地展示了入学标准的差距。

    Mean tariff = (Σ individual grade points) ÷ number of subjects


    3. Using Box Plots to Compare Course Requirements | 使用箱线图比较课程要求

    A box plot displays the spread of tariff points across different courses at a university. Consider a medicine course with a minimum of 144, lower quartile 152, median 160, upper quartile 168, and maximum 176. An engineering course might show values from 128 to 160. The box plot instantly reveals that medicine has a higher median and less variability in entry points.

    箱线图可以展示一所大学不同课程积分要求的分布情况。以医学课程为例,最小值144,下四分位数152,中位数160,上四分位数168,最大值176。而工程学课程可能从128到160之间变化。箱线图立刻显示出医学课程积分中位数更高,且离散程度更小。


    4. Conditional Probability: Offer Rates by Tariff Level | 条件概率:不同积分层次下的录取率

    Conditional probability answers questions like “What is P(Offer | Tariff > 140)?” Historical data may show a 45% offer rate when tariff exceeds 140, but only 15% for tariffs between 120 and 139. We can express this as P(Offer|High) = 0.45, P(Offer|Low) = 0.15. This helps applicants understand how crucial high grades are for competitive courses.

    条件概率可以回答诸如“当积分大于140时,获得录取的概率是多少?”的问题。历史数据可能显示积分超过140的录取率为45%,而积分在120–139之间时仅为15%。我们可以表示为 P(Offer|High) = 0.45,P(Offer|Low) = 0.15。这有助于申请者理解高分对竞争性课程有多么重要。


    5. Two-Way Tables for University and Grade Combination | 大学与成绩组合的双向表

    A two-way table organises how many applicants with certain tariff bands receive offers. This structured data allows us to calculate marginal and joint probabilities.

    双向表可以整理不同积分段申请者获得录取通知的数量。这种结构化的数据能够帮助我们计算边缘概率与联合概率。

    Tariff Band Offers No Offer Total
    ≥150 90 30 120
    130–149 60 90 150
    <130 20 130 150

    From the table, P(Offer) = (90+60+20)/420 ≈ 0.405, while P(Offer | ≥150) = 90/120 = 0.75. The condition dramatically changes the probability.

    从上表可得,P(Offer) = (90+60+20)/420 ≈ 0.405,而 P(Offer | ≥150) = 90/120 = 0.75。条件极大地改变了概率。


    6. Bar Charts of Entry Requirements by Subject | 按学科的入学要求条形图

    A grouped bar chart visualises the average tariff required for different subject areas. Medicine might average 160 points, Law 150, History 135, and Business 125. Using bars of different colours for each university group (e.g., Russell Group vs others) helps students see which fields demand the highest grades.

    分组条形图可以直观展示不同学科领域的平均积分要求。医学平均可能需要160分,法律150分,历史135分,商科125分。用不同颜色代表不同大学群(例如罗素集团与其他)可以让学生一眼看出哪些专业对成绩要求最高。


    7. Pie Charts for Offer Distribution by University Type | 大学类型录取分布的饼图

    A pie chart illustrates the proportion of offers made to applicants from different types of institutions for a specific region. If Russell Group universities issue 60% of offers and others 40%, the central angle for the Russell Group sector is 0.6 × 360° = 216°. This quickly communicates market shares in higher education admissions.

    饼图可以显示特定地区内不同类型大学发放录取通知的比例。若罗素集团大学发放了60%的录取,其他为40%,那么代表罗素集团的扇形圆心角为 0.6 × 360° = 216°。这能迅速传递高等教育招生中的市场份额信息。


    8. Standard Deviation of Tariff Points | 积分标准差

    Standard deviation measures how consistent entry requirements are. For Oxbridge mathematics, the standard deviation of offer tariffs might be just 6 points, indicating very little variation from year to year. The formula is:

    标准差衡量入学要求的一致性程度。牛剑数学专业的录取积分标准差可能只有6分,表明历年差异极小。其公式为:

    σ = √( Σ(xᵢ − μ)² ÷ n )

    A small σ means most offers cluster tightly around the mean, while a larger σ suggests more flexible entry standards.

    σ 较小意味着大部分录取积分紧密围绕均值,而较大的 σ 则说明入学标准更灵活。


    9. Interpreting Trends with Time Series | 用时间序列解读趋势

    A line graph of median entry tariffs from 2018 to 2024 reveals trends. For instance, if the median rose steadily from 136 to 148, the graph slopes upward, indicating growing competition. Adding a moving average smooths the data and helps identify the underlying trend.

    2018至2024年入学积分中位数的折线图可以揭示趋势。例如,若中位数从136稳步上升至148,图像呈上升趋势,表明竞争在加剧。添加移动平均线可以平滑数据,帮助识别潜在趋势。


    10. Calculating Percentage Increase in Entry Requirements | 计算入学要求的百分比增长率

    If a university’s mean tariff offer changed from 130 to 142 over three years, the percentage increase is calculated as:

    若某大学平均录取积分三年内从130涨到142,增长率计算如下:

    Percentage increase = (142 − 130) ÷ 130 × 100% = 9.23%

    This statistic helps quantify how much harder it has become to enter a particular course, and can be used to compare different institutions over the same period.

    这一统计量可以量化进入某门课程的难度增加了多少,也可以用来比较同一时期内不同院校的变化幅度。


    11. Relative Risk and Offer Probabilities | 相对风险与录取概率

    Relative risk compares the probability of an offer in a high-tariff group to that in a low-tariff group. Using the two-way table from earlier, P(Offer|High) = 0.75, P(Offer|Low) = 20/150 ≈ 0.133. Thus:

    相对风险比较高积分组与低积分组的录取概率。使用前面的双向表,P(Offer|High) = 0.75,P(Offer|Low) = 20/150 ≈ 0.133。因此:

    Relative risk = 0.75 ÷ 0.133 ≈ 5.64

    A relative risk of 5.64 means a high-tariff applicant is over five times as likely to receive an offer as a low-tariff applicant. This powerful statistic emphasises the value of achieving top grades.

    相对风险为5.64,意味着高积分申请者获得录取的可能性是低积分者的五倍以上。这个有力的统计量凸显了取得高分的重要性。


    12. Summary and Exam Tips | 总结与考试技巧

    When tackling SQA Statistics questions on university entry requirements, always label your charts, include units, and interpret probabilities within the given context. Use mean, median, standard deviation, and two-way tables to support your comparisons. Practise converting grades to tariff points and calculating conditional probabilities accurately. Remember that correlation does not imply causation—high tariffs correlate with offers but other factors matter too.

    在解答SQA统计中关于大学入学要求的问题时,务必为图表添加标签和单位,并在题目背景下解读概率。运用平均值、中位数、标准差和双向表来支持你的比较。练习将成绩转化为积分并准确计算条件概率。记住,相关性不等于因果性——高积分与录取相关,但还有其他因素在起作用。

    Published by TutorHao | Statistics Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • Year 8 SQA Statistics: Winter Break Intensive Revision Plan | Year 8 SQA 统计:寒假强化复习计划

    📚 Year 8 SQA Statistics: Winter Break Intensive Revision Plan | Year 8 SQA 统计:寒假强化复习计划

    Winter break is the perfect opportunity to consolidate your statistical knowledge and build confidence for the year ahead. This structured four-week plan is designed to help Year 8 students following the SQA curriculum revisit all essential topics in statistics, from collecting data to understanding probability. By working steadily through a mix of revision, practice, and self-assessment, you can turn the holiday into a springboard for success.

    寒假是巩固统计知识、为后续学习建立信心的绝佳时机。这份结构化的四周计划专为 SQA 课程下的八年级学生设计,帮助你重新回顾从收集数据到理解概率的所有核心统计主题。通过稳步推进的复习、练习和自我评估,你可以把假期变成迈向成功的跳板。

    1. Introduction to the Winter Revision Plan | 寒假复习计划简介

    This revision plan breaks down the Year 8 SQA statistics syllabus into manageable weekly blocks. Each week targets a specific area, with a mix of theory recap, worked examples, and short exercises. The goal is not to overwhelm you but to build understanding layer by layer. Aim for about 30–45 minutes of focused study, five days a week, with a lighter day for catching up or relaxing.

    这份复习计划将八年级 SQA 统计大纲分解为易于管理的每周模块。每周针对一个特定领域,融合理论回顾、例题讲解和小练习。目标不是让你应接不暇,而是一层层地构建理解。目标是每周五天,每天安排30–45分钟的专注学习,留出一天轻松日用来查漏补缺或放松。

    2. Key Topics to Cover | 需覆盖的核心主题

    Before you begin, it is helpful to look at the big picture. The Year 8 SQA statistics curriculum includes: types of data (qualitative and quantitative, discrete and continuous), methods of data collection (surveys, experiments, observations), frequency tables, bar charts, pictograms, pie charts, line graphs, scatter graphs, calculating the mean, median, mode and range, interpreting averages, and an introduction to probability. Keeping this checklist handy will help you track your progress.

    开始之前,先看一下全局会很有帮助。八年级 SQA 统计课程包括:数据类型(定性数据和定量数据、离散数据和连续数据)、数据收集方法(调查、实验、观察)、频数表、条形图、象形图、饼图、折线图、散点图、计算平均数、中位数、众数和极差、解读平均数,以及概率入门。把这份清单放在手边,可以帮助你追踪进度。

    3. Week 1: Data Collection and Organisation | 第一周:数据的收集与整理

    Start by revisiting the difference between qualitative data (words or categories, like eye colour) and quantitative data (numbers, like height). Make sure you can distinguish discrete data (counted, e.g. number of siblings) from continuous data (measured, e.g. temperature). Next, review how to design a simple survey or tally chart. Practise creating frequency tables from raw data, including grouped frequency tables for larger sets. Work through at least three examples where you sort a mixed list of data into tidy tables.

    先回顾定性数据(文字或类别,如眼睛颜色)和定量数据(数字,如身高)的区别。确保你能区分离散数据(计数得到的,如兄弟姐妹数量)和连续数据(测量得到的,如温度)。接着,复习如何设计简单的调查或划记表。练习从原始数据创建频数表,包括针对大数据的组距频数表。至少完成三个例题,将混杂的数据列表整理成整洁的表格。

    4. Week 2: Averages and Spread | 第二周:平均数与离散程度

    The three measures of average are the mean, median and mode. You need to be able to calculate each one from a list of numbers and from a frequency table. For the mean, use the formula: Mean = Sum of all values ÷ Number of values. To find the median, order the numbers and pick the middle one. The mode is the value that appears most often. Also, the range (maximum – minimum) tells you about the spread of the data. Practise with small sets first, then move to frequency tables where you multiply the value by its frequency to find the total.

    三种平均数度量是平均数、中位数和众数。你需要能从一组数字和频数表中分别计算它们。平均数用公式:平均数 = 所有数值的总和 ÷ 数值的个数。找中位数时,先把数字排序,再找出中间那个。众数是出现次数最多的值。另外,极差(最大值 – 最小值)告诉你数据的离散程度。先从较小的数据集练起,再过渡到频数表,用数值乘频数求总和的方式计算平均数。

    5. Week 3: Charts and Graphs | 第三周:图表与图形

    Being able to present data visually is just as important as calculating numbers. This week, focus on constructing and interpreting bar charts, line graphs, and pie charts. For pie charts, remember that a full circle is 360°, so you can calculate the angle for each category by using: (Frequency ÷ Total) × 360°. Also introduce scatter graphs and the idea of correlation – positive, negative, or none. Use squared paper or digital tools to draw accurate diagrams, and always label your axes and give your charts a title.

    能够用视觉方式呈现数据,和计算数字同样重要。这一周专注于构建和解读条形图、折线图和饼图。对于饼图,记住一整圆是360°,因此可以用(频数 ÷ 总数)× 360° 来计算每个类别的角度。还要引入散点图和相关性的概念——正相关、负相关或无相关。使用方格纸或数字工具绘制精准的图表,并且一定要标注坐标轴并给图表加上标题。

    6. Week 4: Introduction to Probability | 第四周:概率入门

    Probability measures how likely an event is to happen, on a scale from 0 (impossible) to 1 (certain). You can write probabilities as fractions, decimals, or percentages. Start with simple experiments such as tossing a coin or rolling a die. The probability of an event = Number of favourable outcomes ÷ Total number of possible outcomes. Practise listing all outcomes (the sample space) systematically. Then move to slightly more complex problems involving two events, such as picking a card and flipping a coin, using tables or tree diagrams to organise outcomes.

    概率衡量一个事件发生的可能性,从0(不可能)到1(一定发生)。概率可以写成分数、小数或百分数。从简单的实验开始,比如抛硬币或掷骰子。一个事件的概率 = 有利结果的数量 ÷ 所有可能结果的总数。练习系统地列出所有结果(样本空间)。然后过渡到稍复杂的问题,比如抽一张牌并抛一枚硬币,用表格或树状图来组织结果。

    7. Daily Practice Routine | 每日练习常规

    A consistent daily routine makes revision stick. Begin each session with a 3-minute warm-up of mental maths – quick averages from small lists, or estimating probabilities from everyday situations. Spend 15 minutes on the week’s main topic, using your notes or a revision guide. Then do 10 minutes of independent practice, writing full workings as you would in an exam. Finish with 5 minutes of self-checking and writing down one new thing you learned or one question you still have. Alternate between new material and mixed review to keep previous weeks fresh.

    持之以恒的每日常规能让复习效果扎实。每次学习先用3分钟热身做心算——快速求出一个小列表的平均数,或根据日常情景估计概率。花15分钟学习本周的主题,借助笔记或复习指南。然后做10分钟的独立练习,像在考试中一样写出完整的解题步骤。最后用5分钟自我检查,并写下你今天学到的一个新知识点,或仍然存疑的一个问题。在新内容和混合复习之间交替,以保持前几周的内容记忆犹新。

    8. Using Past Exam Questions | 使用往年试题

    Past paper questions are one of the most valuable tools for SQA preparation. Start with questions that match the topic you are currently revising. Do not worry if you find them tricky at first – they are designed to make you think. Read each question twice, underline key information, and always show your working. After answering, check the marking scheme to see where marks are awarded. This will help you understand what examiners are looking for and how to gain full marks on multi-step problems.

    历年真题是 SQA 备考中最有价值的工具之一。先从与你当前复习主题匹配的试题入手。一开始觉得题目棘手,不用担心——它们本来就是用来促使你思考的。每道题读两遍,划出关键信息,且一定要展示解题步骤。回答完后,核对评分方案,了解分数是如何分配的。这能帮助你理解考官想要什么,以及如何在多步骤问题中获得满分。

    9. Common Mistakes to Avoid | 常见错误及避免方法

    Many students lose marks through simple slips. When calculating the mean, always divide by the total frequency, not just the number of categories. For the median, be careful to order the data first. In pie charts, remember that the sum of all angles must be 360° – check your arithmetic. When reading graphs, check the scale on each axis; it may not start at 0. For probability, always express your answer as a simplified fraction unless instructed otherwise. Keeping a ‘mistake diary’ where you note down slips and the corrections can stop them from repeating.

    许多学生因为小失误而丢分。计算平均数时,一定要除以总频数,而不只是类别数。求中位数时,务必先排序。在饼图中,要记住所有角度的和必须是360°——检查你的计算。阅读图表时,注意每个轴的刻度;它可能不是从0开始的。在概率中,除非另有说明,始终将答案写作最简分数。准备一本“错题日记”,记下错误和订正,可以防止它们再次发生。

    10. Resources and Tools | 资源与工具

    You do not need expensive materials to succeed. A simple notebook, squared paper for drawing graphs, a ruler, and a protractor are essential. Use free online resources like BBC Bitesize (SQA National 4/5 sections can be useful for extension), or interactive tools for creating pie charts and bar graphs. There are also many YouTube tutorials that walk through statistics problems step by step. If possible, pair up with a study buddy and test each other on definitions and quick methods.

    你不需要昂贵的材料就能取得成功。一本普通笔记本、绘制图表的方格纸、一把尺子和一个量角器是必需的。利用免费的线上资源,如 BBC Bitesize(SQA National 4/5 部分对拓展很有用),或者用来制作饼图和条形图的交互工具。还有很多 YouTube 教程逐步讲解统计题目。如果可能,找个学习伙伴,互相提问定义和快捷方法。

    11. Motivation and Goal Setting | 动力与目标设定

    Revision can feel boring, so set small, achievable goals for each week. For example, ‘I will be able to draw a pie chart without help by Friday.’ Reward yourself when you reach a goal – maybe some extra screen time or a treat. Remember why statistics matters: it helps you understand real-world data, from sports averages to weather forecasts. Keeping the end-of-year assessment in mind can also drive you, but don’t let it cause anxiety. Celebrate progress, not perfection.

    复习有时会让人感到枯燥,所以每周都设立一些可以达成的小目标。比如,“到周五,我能够独立画出饼图。”达成目标时,给自己一些奖励——也许是额外的屏幕时间或一份小零食。记住统计学的意义:它能帮助你理解现实世界的数据,从体育比赛平均值到天气预报。把年末评估放在心上可以驱动你,但别让它导致焦虑。庆祝进步,而非追求完美。

    12. Final Review and Self-Assessment | 最终复习与自我评估

    In the last three days of the break, do a full review. Create a one-page summary sheet for each topic, using bullet points and key formulas. Then attempt a timed mixed-topic quiz using past questions. Mark it honestly and identify any remaining weak spots. Use your final study sessions to target those areas. Reflect on how much you have improved since the start – the checklist from Week 1 should look much friendlier now. Go into the new term feeling prepared and positive.

    假期的最后三天,进行一次全面复习。为每个主题制作一张单页总结,用要点和关键公式。然后限时做一套混合主题的练习,使用过往题目。诚实地为自己打分,找出仍然薄弱的环节。用最后的学习时间来针对这些方面。反思自己从一开始进步了多少——第一周的那份清单现在应该看起来亲切多了。带着充实的准备和积极的心态迎接新学期。

    Published by TutorHao | Statistics Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)

  • SQA Year 8 Statistics: Case Study Practice | SQA 八年级统计:案例分析实战演练

    📚 SQA Year 8 Statistics: Case Study Practice | SQA 八年级统计:案例分析实战演练

    In statistics, real-life case studies help you apply concepts to actual data. This article will guide you through a complete data investigation, from designing a survey to calculating probabilities, using a school library example. You will learn how to collect, organise, display, and interpret data—just like a real statistician!

    在统计学中,现实世界的案例分析有助于你将概念应用于实际数据。本文将通过一个学校图书馆案例,引导你完成从设计调查到计算概率的完整数据探究过程。你将学习如何像真正的统计学家一样收集、整理、展示和解读数据!

    1. Introduction to the Case Study | 案例引入

    Our school librarian wants to order new books that students will enjoy. To make informed decisions, we need to collect data on reading preferences and habits. A statistical investigation will help us understand what types of books are most popular and how much time students spend reading each week.

    学校图书馆员希望订购学生们会喜欢的新书。为了做出明智决定,我们需要收集有关阅读偏好和习惯的数据。一项统计调查将帮助我们了解最受欢迎的书籍类型以及学生每周花多少时间阅读。


    2. Data Collection: The Survey | 数据收集:问卷调查

    We designed a short questionnaire for 30 Year 8 pupils. It asked two questions: (1) ‘What is your favourite book genre?’ with options Fantasy, Mystery, Fiction, Graphic Novels

    Published by TutorHao | Year 8 统计 Revision Series | aleveler.com

    更多咨询请联系16621398022(同微信)