Skip to main content

What Is MAPE And Mad?

by
Last updated on 7 min read

MAPE (Mean Absolute Percent Error) and MAD (Mean Absolute Deviation) are error metrics used to evaluate forecast accuracy. MAPE expresses the average absolute error as a percentage of actual values, while MAD shows the average absolute error in the same units as the data.

What is a good MAPE score?

A good MAPE score depends entirely on your data and industry benchmarks. Generally, MAPE under 5% is considered excellent, 5-10% is good, 10-20% is acceptable for many businesses, and anything above 25% suggests your forecasting model needs serious improvement.

Take a mail-order firm, for example—it might target MAPE below 8% for reliable inventory planning. Meanwhile, a high-volume retailer with stable demand could aim for under 3%. Always compare against your historical performance rather than industry standards alone. Honestly, this is the best approach for meaningful benchmarking.

How do you calculate MAPE and MAD?

MAD is calculated by averaging the absolute differences between actual and forecast values. MAPE divides each absolute error by the actual value, converts it to a percentage, then averages those percentages across all periods.

Let’s walk through a 5-period example. Actuals are [100, 120, 90, 110, 105], and forecasts are [95, 125, 85, 115, 100]. MAD = (|100-95| + |120-125| + ... + |105-100|)/5 = 7. MAD uses raw units, while MAPE = 100×[(5/100)+(5/120)+(5/90)+(5/110)+(5/105)]/5 ≈ 4.4%. See how they differ?

What information does the MAD and MAPE provide to a manager?

MAD tells managers the average magnitude of forecast errors in original units. MAPE provides the average error as a percentage, making it easier to communicate accuracy across different product lines or time periods.

Use MAD when managing inventory counts or budget dollars. Use MAPE when reporting to executives or comparing performance across SKUs. For instance, a manager might say, "Our MAD is 120 units, meaning we're typically off by about 120 units per product. Meanwhile, our MAPE of 6% means we're within 6% of actual demand on average." That’s the kind of clarity these metrics provide.

What is MAPE in statistics?

MAPE is the Mean Absolute Percentage Error, a relative accuracy measure that expresses forecast error as a percentage of actual demand. It’s calculated by taking the absolute value of (Actual – Forecast)/Actual for each observation, then averaging those percentages.

Statisticians love MAPE because it’s unit-free and makes comparison across different scales a breeze. But watch out—it has a major limitation. When actual values are zero or near-zero, MAPE can produce misleadingly large percentages. That’s when you need to tread carefully.

Which is better MAD MSE or MAPE?

MAPE is generally preferred for business reporting because percentages are intuitive. MAD is easier to interpret in original units, while MSE (Mean Squared Error) penalizes large errors more heavily, making it useful for identifying outliers.

Choose MSE when you need to minimize the impact of occasional large errors. Use MAD for straightforward error magnitude understanding. MAPE shines for executive communication and cross-product comparisons. In practice, many managers track all three to get a complete picture. Honestly, this is the most balanced approach.

How is MAPE calculated?

MAPE is calculated by taking the absolute difference between actual and forecast values, dividing by the actual value, converting to a percentage, and averaging across all time periods. The formula is MAPE = (100/n) × Σ(|Actual – Forecast|/Actual) for n periods.

For monthly demand data, calculate the percentage error for each month (e.g., January: |150-140|/150 = 6.7%), then average those percentages. Most forecasting software handles this automatically, but understanding the calculation helps spot data issues. It’s worth knowing how the sausage is made.

What is a bad MAPE score?

A bad MAPE score is anything significantly worse than your historical performance or a simple naive forecast. If your MAPE exceeds 25%, your model’s errors are large enough that it may be doing more harm than good.

Compare against a naive forecast (using the last period’s actual as next period’s forecast) as a baseline. If your sophisticated model can’t beat this simple approach, it’s not adding value. In retail, MAPE above 15% often signals problems with seasonality handling or promotional planning. That’s a red flag worth investigating.

What does a positive MAPE mean?

MAPE is always positive because it uses absolute values. The sign in MAPE calculations comes from the relationship between actual and forecast values, not the error metric itself.

For example, if actual demand is 100 and forecast is 90, the error is -10, but MAPE = |-10|/100 = 10%. If actual demand drops to 50 while forecast remains 90, MAPE jumps to |-40|/50 = 80%. The metric highlights that large over-forecasts cause disproportionate errors when actuals decline. That’s why you need to watch out for those scenarios.

Why do we use MAPE?

MAPE standardizes forecast errors as percentages, enabling comparison across products, time periods, and business units. It’s particularly useful when actual values vary widely in scale.

For instance, comparing a $500 widget to a $5,000 widget: a $50 error is 10% for the first but only 1% for the second. MAPE gives equal weight to both. However, avoid using MAPE with zero or very low actual values, as these can produce misleadingly large percentages. That’s a critical limitation to remember.

What systematic and random components would you expect in demand for chocolates?

Systematic components include level (average demand), trend (yearly growth), and seasonality (holiday spikes). Random components are unpredictable variations like sudden cocoa price changes or viral social media trends.

Expect peak demand around Valentine’s Day, Easter, and Christmas. The trend might show 3-5% annual growth for premium chocolates. Random spikes could come from celebrity endorsements or supply chain disruptions like cocoa harvest failures. That’s the reality of chocolate demand forecasting.

How do static and adaptive forecasting methods differ?

Static methods assume level, trend, and seasonality remain constant over time. Adaptive methods continuously update these components as new data arrives.

For chocolates, a static model might assume December demand is always 20% above average. An adaptive model would adjust this factor if Christmas falls on a weekday (boosting sales) or if a new competitor opens nearby. Adaptive methods handle sudden changes better but can overreact to temporary blips. That’s the trade-off you need to consider.

What role does forecasting play in the supply chain of a mail order firm?

Forecasting drives inventory planning, staff scheduling, and supplier negotiations. Accurate forecasts prevent stockouts (hurting customer satisfaction) and excess inventory (tying up cash).

A mail-order firm like L.L.Bean might use seasonal demand patterns to stock up on winter gear before October. Forecasts help schedule warehouse staff during peak periods and negotiate bulk discounts with suppliers for high-volume items. Poor forecasts lead to either frantic last-minute orders or costly markdowns. That’s why forecasting is the backbone of supply chain efficiency.

How do you interpret MAPE error?

MAPE represents the average percentage by which forecasts miss actual demand. A MAPE of 8% means forecasts are typically within 8% of actual sales.

Interpret it like this: if your MAPE is 5%, you can expect forecasts to be within ±5% of actual demand most of the time. For a product selling 1,000 units/month, this translates to ±50 units. Use MAPE alongside other metrics like MAD to understand both the relative and absolute error magnitudes. That’s how you get a full picture of forecast accuracy.

What is an acceptable MAPE?

An acceptable MAPE is under 5% for high-precision industries, 5-10% for many businesses, and 10-25% for low-volume or highly variable products. Anything above 25% generally indicates the forecast isn’t reliable enough to use.

For example, a pharmaceutical distributor might accept nothing above 3% MAPE for critical medications. A small specialty food producer could tolerate 12% MAPE due to unpredictable ingredient availability. Always set thresholds based on your specific business needs and data characteristics. That’s the pragmatic way to approach it.

What is high MAPE?

High MAPE occurs when forecasts consistently deviate significantly from actual demand. MAPE above 20% is typically considered high, though this threshold varies by industry.

High MAPE often stems from inadequate seasonality handling, poor promotional planning, or ignoring external factors like economic downturns. For instance, a toy company forecasting 100,000 units for a movie tie-in but selling only 40,000 would see extremely high MAPE. Address high MAPE by improving data quality, incorporating more variables, or switching to adaptive forecasting methods. That’s how you fix the problem.

If you're working with Mapei grout, understanding error metrics like MAPE can also help in quality control processes.

Edited and fact-checked by the FixAnswer editorial team.
Joel Walsh

Known as a jack of all trades and master of none, though he prefers the term "Intellectual Tourist." He spent years dabbling in everything from 18th-century botany to the physics of toast, ensuring he has just enough knowledge to be dangerous at a dinner party but not enough to actually fix your computer.