All questions
Question 1
A marketing team analyzes the number of users of a new mobile application over its first year. They fit three different models to the data, where t is the number of months since launch. The coefficient of determination, R2, for each model is calculated.
Linear Model: R2=0.82
Quadratic Model: R2=0.96
Logistic Model: R2=0.99
Given that the user growth was rapid initially and is now slowing as it approaches market saturation, which model should the team choose and why?
- The linear model, because it is the simplest and easiest to interpret.
- The quadratic model, because its R2 value is very high and it can model a curve.
- The logistic model, because it has the highest R2 and its shape correctly models growth that slows and approaches a limit. (correct answer)
- Any of the models are acceptable, as all have reasonably high R2 values.
Explanation: The best model is chosen based on both statistical measures (like R2) and the underlying context. The logistic model not only has the highest R2 value (closest to 1), indicating the best statistical fit, but its S-shaped curve is also theoretically appropriate for situations like market saturation where growth slows as it approaches a carrying capacity. The quadratic model, while having a high R2, would eventually predict a decline in users, which may not be realistic. The linear model is a poor fit compared to the others. Question 2
A student has only 6 data points relating two variables. They find that a 5th-degree polynomial regression passes perfectly through all 6 points, resulting in R2=1.
What is the most likely issue with using this 5th-degree polynomial model for prediction?
- The model is likely overfitted to the noise in the data and will have poor predictive accuracy for new data. (correct answer)
- This is the ideal model because it perfectly fits all the available data.
- A 5th-degree polynomial is too computationally complex for most calculators to handle.
- The R2 value must be a calculation error, as it is impossible to achieve a perfect score of 1.
Explanation: When you encounter regression problems involving polynomial models, the key concept to consider is the balance between model complexity and data size. This question tests your understanding of overfitting, a critical issue in statistical modeling.
With only 6 data points, a 5th-degree polynomial has exactly enough parameters to pass through every single point perfectly. This creates a dangerous situation: the model is essentially memorizing the specific data rather than learning the underlying relationship between variables. While R2=1 looks impressive, it's actually a red flag when you have so few data points relative to model complexity.
Option A correctly identifies that this model is overfitted to the noise in the data and will perform poorly on new, unseen data points. The polynomial will likely create wild oscillations between the original points, making unreliable predictions.
Option B falls into the common trap of thinking perfect fit equals perfect model. A model that fits training data perfectly but fails on new data is essentially useless for prediction.
Option C incorrectly focuses on computational complexity, which isn't the real issue here. Modern calculators can easily handle 5th-degree polynomials.
Option D shows a misunderstanding of R2. It's absolutely possible to achieve R2=1 when you have enough parameters to fit all data points exactly.
Key takeaway: Always be suspicious of complex models with perfect fit on small datasets. In IB Mathematics, look for the general rule that your model should be simpler than your data – fewer parameters than data points prevents overfitting. Question 3
An analyst is comparing two models for a dataset. Model A (a quadratic function) has an R2 of 0.95, but its residual plot shows a clear wave-like pattern. Model B (a cubic function) has an R2 of 0.92, and its residual plot shows a random scatter of points around zero. Which model should be preferred and why?
- Model A, because it has a significantly higher R2 value.
- Both models are equally preferable, and the choice depends on which is simpler.
- Neither model is good, as a high R2 value should always be accompanied by a random residual plot.
- Model B, because a random residual plot indicates that the model has captured the underlying trend appropriately. (correct answer)
Explanation: When evaluating statistical models, you need to consider both goodness of fit (like R2) and model assumptions. A key assumption is that residuals should be randomly distributed around zero, indicating the model has captured all systematic patterns in the data.
Model B is the better choice because its random residual plot shows it has successfully captured the underlying relationship in the data. When residuals are randomly scattered, it means there's no remaining pattern the model failed to account for. The slightly lower R2 of 0.92 is still excellent and represents genuine explanatory power.
Option A is wrong because while Model A's R2 of 0.95 appears better, the wave-like residual pattern reveals a critical flaw: the quadratic model is systematically missing parts of the data's structure. This pattern indicates the model is inadequate despite its high R2.
Option B incorrectly suggests the models are equivalent. The residual patterns make them fundamentally different in quality - one meets key assumptions while the other violates them.
Option C misunderstands the situation. Model B actually demonstrates the ideal combination: high R2 with random residuals. The statement incorrectly implies neither model is acceptable.
Remember: R2 alone can be misleading. A model with systematic residual patterns is missing something important about the data's structure, even if it explains a high percentage of variance. Always check residual plots to verify your model assumptions are met - random scatter around zero is what you want to see. Question 4
A researcher is modeling the concentration of a medication in the bloodstream over time. The concentration increases after administration, reaches a peak, and then decreases. Which type of regression model would be most appropriate to capture this entire process?
- A linear model
- An exponential decay model
- A quadratic model (correct answer)
- A logistic model
Explanation: The description indicates a relationship with a single turning point (a maximum). A quadratic model, specifically a parabola opening downwards (with a negative coefficient for the squared term), is well-suited to model a quantity that rises to a peak and then falls. A linear model cannot capture a turning point. An exponential decay model only describes a decrease. A logistic model describes a value that rises and then levels off, but does not decrease.
Question 5
A researcher develops a quadratic model to describe the relationship between the number of hours spent studying (from 1 to 10 hours) and the score on a test. The model has a very high coefficient of determination, R2=0.98, for the collected data.
The researcher uses the model to predict the test score for a student who studied for 20 hours. What is the main concern with this prediction?
- The prediction will be accurate because the R2 value is very high.
- The prediction is an extrapolation, which may be unreliable as it is outside the domain of the original data. (correct answer)
- A quadratic model is never appropriate for modeling test scores, so the prediction is invalid.
- The calculation may be difficult, leading to a potential arithmetic error.
Explanation: The model was built using data for study hours between 1 and 10. Predicting a score for 20 hours of study is an extrapolation because it falls far outside this range. Even if a model has a high R2 value for the data it was built on, its behavior outside that range is unknown and potentially very inaccurate. For example, a quadratic model might predict a decreasing score after a certain number of hours, which may or may not be realistic. The primary issue is the unreliability of extrapolation. Distractor A ignores this issue. Distractor C is too absolute; a quadratic model could be appropriate within a certain domain. Distractor D is irrelevant as calculators handle the computation. Question 6
An agronomist models the height of a plant over time. The data shows that the plant's growth rate slows as it gets taller. A plot of ln(H) versus t, where H is height and t is time, yields a straight line. What type of model does this suggest for the original relationship between H and t?
- Exponential model, H=abt (correct answer)
- Linear model, H=at+b
- Power model, H=atb
- Logarithmic model, H=aln(t)+b
Explanation: When you encounter a problem about transforming data to create linear relationships, you're dealing with linearization techniques that help identify the underlying mathematical model.
The key insight here is working backwards from the linear transformation. If plotting ln(H) versus t produces a straight line, then we can write: ln(H)=mt+c for some constants m and c.
To find the original relationship, we need to solve for H by taking the exponential of both sides: H=emt+c=ec⋅emt. Since ec is just a constant (let's call it a), and emt=(em)t (let's call em=b), we get H=abt. This is exactly the exponential model in option A.
Let's examine why the other options fail: Option B (linear model) would give a straight line when plotting H directly versus t, not ln(H) versus t. Option C (power model) would produce a straight line when plotting ln(H) versus ln(t), not versus t itself. Option D (logarithmic model) would create a straight line when plotting H versus ln(t).
Remember this pattern: the variables in your linear plot tell you the model type. ln(y) vs. x linear → exponential model. ln(y) vs. ln(x) linear → power model. y vs. ln(x) linear → logarithmic model. Master these transformations to quickly identify mathematical relationships from linearized data. Question 7
A regression model is created using data where the independent variable, x, ranges from 20 to 100. The model has a low sum of squared residuals and a random residual plot. The model is used to make two predictions:
Prediction A: for x=65
Prediction B: for x=125
Which of the following statements is the most accurate assessment of the two predictions?
- Both predictions are equally reliable because the model is a good fit for the original data.
- Prediction B is likely more reliable than Prediction A because it is for a larger value of x.
- Prediction A is an interpolation and is likely to be more reliable than Prediction B, which is an extrapolation. (correct answer)
- Neither prediction can be trusted until a model with a higher R2 is found.
Explanation: Prediction A is for x=65, which is within the range of the original data (20 to 100). This is called interpolation. Prediction B is for x=125, which is outside the range of the original data. This is called extrapolation. Models are generally reliable for interpolation but can be very unreliable for extrapolation, as the underlying trend may change outside the observed domain. Therefore, Prediction A is more likely to be reliable. Question 8
An environmental scientist fits a linear regression model to data relating the concentration of a pollutant in a river (in ppm) to the distance downstream from a factory (in km). The resulting residual plot shows a distinct U-shape. What is the most appropriate conclusion?
- A linear model is appropriate, but the correlation is weak.
- A non-linear model, such as a quadratic function, would likely provide a better fit for the data. (correct answer)
- The variance of the residuals is not constant, which violates a key assumption of linear regression.
- There is no relationship between the pollutant concentration and the distance from the factory.
Explanation: A pattern, such as a U-shape, in a residual plot indicates that the chosen model (in this case, linear) is not capturing the underlying structure of the data. A non-linear model is needed. A U-shaped residual plot often suggests a quadratic relationship. Distractor A is incorrect because a pattern indicates the model type is wrong, not just that the correlation is weak. Distractor C describes heteroscedasticity, which typically appears as a fan or funnel shape in the residual plot, not a U-shape. Distractor D is incorrect because the existence of a pattern, even in the residuals, implies there is a relationship.
Question 9
A researcher fits four different regression models to the same dataset to predict crop yield. To assess the goodness-of-fit for each model, the sum of squared residuals (SSR) is calculated. The results are as follows:
Model A (Linear): SSR = 158.2
Model B (Quadratic): SSR = 45.7
Model C (Cubic): SSR = 47.1
Model D (Exponential): SSR = 98.6
Based solely on the SSR values, which model provides the best fit to the data?
- Model A
- Model B (correct answer)
- Model C
- Model D
Explanation: The sum of squared residuals (SSR), or Sres, measures the total squared difference between the observed data and the values predicted by the model. A smaller SSR indicates that the model's predictions are closer to the actual data points, signifying a better fit. Among the given options, Model B (Quadratic) has the lowest SSR of 45.7, making it the best-fitting model based on this criterion. Question 10
A researcher develops a quadratic model to describe the relationship between the number of hours spent studying (from 1 to 10 hours) and the score on a test. The model has a very high coefficient of determination, R2=0.98, for the collected data.
The researcher uses the model to predict the test score for a student who studied for 20 hours. What is the main concern with this prediction?
- The prediction will be accurate because the R2 value is very high.
- The prediction is an extrapolation, which may be unreliable as it is outside the domain of the original data. (correct answer)
- A quadratic model is never appropriate for modeling test scores, so the prediction is invalid.
- The calculation may be difficult, leading to a potential arithmetic error.
Explanation: The model was built using data for study hours between 1 and 10. Predicting a score for 20 hours of study is an extrapolation because it falls far outside this range. Even if a model has a high R2 value for the data it was built on, its behavior outside that range is unknown and potentially very inaccurate. For example, a quadratic model might predict a decreasing score after a certain number of hours, which may or may not be realistic. The primary issue is the unreliability of extrapolation. Distractor A ignores this issue. Distractor C is too absolute; a quadratic model could be appropriate within a certain domain. Distractor D is irrelevant as calculators handle the computation. Question 11
The population of a town over several decades shows a period of growth, followed by a period of stability, and then a period of decline. An attempt is made to model this trend. Which type of regression would be most appropriate to capture these three distinct phases?
- A logistic model
- An exponential model
- A cubic model (correct answer)
- A linear model
Explanation: The description of the population trend involves two turning points: one where growth changes to stability, and another where stability changes to decline. A cubic model, which has the general shape of y=ax3+bx2+cx+d, can have up to two local extrema (turning points), making it suitable for capturing a pattern of rise, level-off, and fall. A logistic model only levels off. An exponential model only increases or decreases. A linear model shows a constant rate of change. Question 12
A student has only 6 data points relating two variables. They find that a 5th-degree polynomial regression passes perfectly through all 6 points, resulting in R2=1.
What is the most likely issue with using this 5th-degree polynomial model for prediction?
- The model is likely overfitted to the noise in the data and will have poor predictive accuracy for new data. (correct answer)
- This is the ideal model because it perfectly fits all the available data.
- A 5th-degree polynomial is too computationally complex for most calculators to handle.
- The R2 value must be a calculation error, as it is impossible to achieve a perfect score of 1.
Explanation: When you encounter regression problems involving polynomial models, the key concept to consider is the balance between model complexity and data size. This question tests your understanding of overfitting, a critical issue in statistical modeling.
With only 6 data points, a 5th-degree polynomial has exactly enough parameters to pass through every single point perfectly. This creates a dangerous situation: the model is essentially memorizing the specific data rather than learning the underlying relationship between variables. While R2=1 looks impressive, it's actually a red flag when you have so few data points relative to model complexity.
Option A correctly identifies that this model is overfitted to the noise in the data and will perform poorly on new, unseen data points. The polynomial will likely create wild oscillations between the original points, making unreliable predictions.
Option B falls into the common trap of thinking perfect fit equals perfect model. A model that fits training data perfectly but fails on new data is essentially useless for prediction.
Option C incorrectly focuses on computational complexity, which isn't the real issue here. Modern calculators can easily handle 5th-degree polynomials.
Option D shows a misunderstanding of R2. It's absolutely possible to achieve R2=1 when you have enough parameters to fit all data points exactly.
Key takeaway: Always be suspicious of complex models with perfect fit on small datasets. In IB Mathematics, look for the general rule that your model should be simpler than your data – fewer parameters than data points prevents overfitting. Question 13
A regression model is created using data where the independent variable, x, ranges from 20 to 100. The model has a low sum of squared residuals and a random residual plot. The model is used to make two predictions:
Prediction A: for x=65
Prediction B: for x=125
Which of the following statements is the most accurate assessment of the two predictions?
- Both predictions are equally reliable because the model is a good fit for the original data.
- Prediction B is likely more reliable than Prediction A because it is for a larger value of x.
- Prediction A is an interpolation and is likely to be more reliable than Prediction B, which is an extrapolation. (correct answer)
- Neither prediction can be trusted until a model with a higher R2 is found.
Explanation: Prediction A is for x=65, which is within the range of the original data (20 to 100). This is called interpolation. Prediction B is for x=125, which is outside the range of the original data. This is called extrapolation. Models are generally reliable for interpolation but can be very unreliable for extrapolation, as the underlying trend may change outside the observed domain. Therefore, Prediction A is more likely to be reliable. Question 14
A researcher is modeling the concentration of a medication in the bloodstream over time. The concentration increases after administration, reaches a peak, and then decreases. Which type of regression model would be most appropriate to capture this entire process?
- A linear model
- An exponential decay model
- A quadratic model (correct answer)
- A logistic model
Explanation: The description indicates a relationship with a single turning point (a maximum). A quadratic model, specifically a parabola opening downwards (with a negative coefficient for the squared term), is well-suited to model a quantity that rises to a peak and then falls. A linear model cannot capture a turning point. An exponential decay model only describes a decrease. A logistic model describes a value that rises and then levels off, but does not decrease.
Question 15
An economist models the unemployment rate over several years. The residual plot for their linear model shows that residuals are negative for the earliest years, positive for the middle years, and negative again for the most recent years. What does this pattern suggest?
- The unemployment rate has a constant variance over time.
- The linear model is a good and unbiased fit for the data.
- The relationship between time and unemployment rate is non-linear, and a different model is needed. (correct answer)
- There are several significant outliers in the data that are skewing the results.
Explanation: A systematic pattern in the residuals, like the negative-positive-negative sequence described, indicates that the chosen linear model is not capturing the true underlying relationship. This specific pattern often suggests that the data follows a curve (like a parabola) that the straight line cannot properly fit. Therefore, a non-linear model (e.g., quadratic) should be investigated. Randomly scattered residuals would have indicated a good fit.
Question 16
A physicist is modeling the decay of a radioactive substance. Based on well-established physical laws, the decay should follow an exponential model. The physicist fits two models to the experimental data:
Model A (Exponential): R2=0.98
Model B (Quartic Polynomial): R2=0.99
Which model is the more sensible choice for making predictions, and why?
- Model A, because it is consistent with the established scientific theory for the phenomenon, and avoids potential overfitting. (correct answer)
- Model B, because its R2 value is higher, indicating a better fit to the collected data.
- Both models are equally good, so the simpler exponential model should be chosen.
- Neither model is acceptable, as a perfect model should have R2=1.
Explanation: When evaluating mathematical models in real-world contexts, you need to balance statistical fit with theoretical soundness and predictive reliability. This question tests whether you understand that a higher R2 value doesn't automatically mean a better model.
Model A is the sensible choice because radioactive decay is governed by well-established physical laws that produce exponential behavior. While its R2=0.98 is slightly lower than Model B's, it aligns with the underlying physics and is more likely to make accurate predictions beyond the observed data range. The quartic polynomial, despite its higher R2=0.99, represents overfitting—using excessive complexity to capture noise rather than the true signal.
Looking at the wrong answers: Option B falls into the common trap of assuming higher R2 always means better modeling. This ignores overfitting risks and theoretical considerations. Option C incorrectly states both models are equally good when they clearly differ in their theoretical foundation and predictive reliability. Option D misunderstands that R2=1 would indicate perfect fit to data points, which is unrealistic with real experimental data containing measurement errors and natural variation.
Key strategy: On IB Mathematics questions involving model selection, remember that the "best" model balances statistical fit with theoretical appropriateness. A model consistent with established scientific principles that fits reasonably well will typically outperform a purely statistical model with slightly better fit statistics, especially for predictions. Question 17
An environmental scientist fits a linear regression model to data relating the concentration of a pollutant in a river (in ppm) to the distance downstream from a factory (in km). The resulting residual plot shows a distinct U-shape. What is the most appropriate conclusion?
- A linear model is appropriate, but the correlation is weak.
- A non-linear model, such as a quadratic function, would likely provide a better fit for the data. (correct answer)
- The variance of the residuals is not constant, which violates a key assumption of linear regression.
- There is no relationship between the pollutant concentration and the distance from the factory.
Explanation: A pattern, such as a U-shape, in a residual plot indicates that the chosen model (in this case, linear) is not capturing the underlying structure of the data. A non-linear model is needed. A U-shaped residual plot often suggests a quadratic relationship. Distractor A is incorrect because a pattern indicates the model type is wrong, not just that the correlation is weak. Distractor C describes heteroscedasticity, which typically appears as a fan or funnel shape in the residual plot, not a U-shape. Distractor D is incorrect because the existence of a pattern, even in the residuals, implies there is a relationship.
Question 18
A researcher fits four different regression models to the same dataset to predict crop yield. To assess the goodness-of-fit for each model, the sum of squared residuals (SSR) is calculated. The results are as follows:
Model A (Linear): SSR = 158.2
Model B (Quadratic): SSR = 45.7
Model C (Cubic): SSR = 47.1
Model D (Exponential): SSR = 98.6
Based solely on the SSR values, which model provides the best fit to the data?
- Model A
- Model B (correct answer)
- Model C
- Model D
Explanation: The sum of squared residuals (SSR), or Sres, measures the total squared difference between the observed data and the values predicted by the model. A smaller SSR indicates that the model's predictions are closer to the actual data points, signifying a better fit. Among the given options, Model B (Quadratic) has the lowest SSR of 45.7, making it the best-fitting model based on this criterion. Question 19
A financial analyst models a stock's price based on the company's quarterly earnings. For a quarter where the earnings were 2.50pershare,themodelhadaresidualof−1.75. What is the correct interpretation of this residual?
- The model under-predicted the stock's price by $1.75.
- The model over-predicted the stock's price by $1.75. (correct answer)
- The actual stock price for that quarter was $1.75.
- The model's prediction was $1.75.
Explanation: A residual is calculated as (actual value) - (predicted value). A negative residual means that the predicted value was greater than the actual value. In this context, a residual of -$1.75 means \text{Actual Price} - \text{Predicted Price} = -\1.75,or\text{Predicted Price} = \text{Actual Price} + $1.75$. Therefore, the model over-predicted the stock's price by $1.75. Distractor A corresponds to a positive residual. Distractors C and D mistake the residual for the actual or predicted price itself. Question 20
A scientist is modeling the concentration of bacteria in a petri dish. The population grows quickly at first, but then slows down as resources become scarce and the population size approaches the carrying capacity of the dish. Which of the following regression models is most suitable for this situation?
- Exponential model
- Linear model
- Quadratic model
- Logistic model (correct answer)
Explanation: This scenario describes logistic growth. The key features are an initial phase of rapid (almost exponential) growth followed by a slowing of growth as the population approaches a maximum limit, or carrying capacity. A logistic model is specifically designed to represent this S-shaped growth curve. An exponential model (A) would show unlimited growth. A linear model (B) would show a constant rate of growth. A quadratic model (C) would show the population increasing and then decreasing (or vice versa), which doesn't fit the description of leveling off.