{"id":31,"date":"2026-01-04T18:05:00","date_gmt":"2026-01-04T18:05:00","guid":{"rendered":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/?p=31"},"modified":"2026-01-09T14:05:35","modified_gmt":"2026-01-09T14:05:35","slug":"adding-percentages-the-right-way-why-20-10-isnt-30","status":"publish","type":"post","link":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/adding-percentages-the-right-way-why-20-10-isnt-30\/","title":{"rendered":"Adding Percentages the Right Way (Why 20% + 10% Isn\u2019t 30%)"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Adding Percentages the Right Way (Why 20% + 10% Isn\u2019t 30%)<\/title>\n    <!-- copy the same <style> block as in article 1 -->\n         <style>\n        \/* SAME GLOBAL STYLES AS YOUR EXISTING PAGE *\/\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n        body {\n            background: linear-gradient(180deg, #1d85e2 0%, #fff 3%);\n            min-height: 100vh;\n            padding: 20px;\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n        }\n        .container {\n            max-width: 1200px;\n            width: 100%;\n            margin: 0 auto;\n        }\n        header {\n            text-align: center;\n            margin-bottom: 40px;\n            padding: 20px;\n            background: rgba(255, 255, 255, 0.1);\n            backdrop-filter: blur(10px);\n            border-radius: 15px;\n            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);\n        }\n        h1 {\n            color: white;\n            font-size: 2.5rem;\n            margin-bottom: 10px;\n            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);\n        }\n        .subtitle {\n            color: rgba(255, 255, 255, 0.9);\n            font-size: 1.2rem;\n            max-width: 600px;\n            margin: 0 auto;\n            line-height: 1.6;\n        }\n        .calculators-container {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));\n            gap: 30px;\n            margin-bottom: 40px;\n        }\n        @media (max-width: 768px) {\n            .calculators-container {\n                grid-template-columns: 1fr;\n            }\n        }\n        .calculator {\n            background: white;\n            border-radius: 15px;\n            padding: 30px;\n            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n        }\n        .calculator:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);\n        }\n        .calculator h2 {\n            color: #333;\n            margin-bottom: 25px;\n            padding-bottom: 15px;\n            border-bottom: 2px solid #667eea;\n            font-size: 1.8rem;\n        }\n        .calculator-description {\n            color: #666;\n            margin-bottom: 20px;\n            line-height: 1.6;\n            font-size: 1rem;\n        }\n        .input-group {\n            margin-bottom: 20px;\n        }\n        .input-group label {\n            display: block;\n            margin-bottom: 8px;\n            color: #555;\n            font-weight: 600;\n        }\n        .input-group input {\n            width: 100%;\n            padding: 15px;\n            border: 2px solid #e0e0e0;\n            border-radius: 10px;\n            font-size: 1.1rem;\n            transition: all 0.3s ease;\n        }\n        .input-group input:focus {\n            outline: none;\n            border-color: #667eea;\n            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);\n        }\n        .calculate-btn {\n            background: linear-gradient(to right, #667eea, #764ba2);\n            color: white;\n            border: none;\n            padding: 16px 32px;\n            border-radius: 10px;\n            font-size: 1.1rem;\n            font-weight: 600;\n            cursor: pointer;\n            width: 100%;\n            transition: all 0.3s ease;\n            margin-top: 10px;\n        }\n        .calculate-btn:hover {\n            transform: translateY(-2px);\n            box-shadow: 0 7px 20px rgba(102, 126, 234, 0.4);\n        }\n        .calculate-btn:active {\n            transform: translateY(0);\n        }\n        .result {\n            margin-top: 25px;\n            padding: 20px;\n            border-radius: 10px;\n            background: #f8f9fa;\n            display: none;\n            animation: fadeIn 0.5s ease;\n        }\n        .result.show {\n            display: block;\n        }\n        .result h3 {\n            color: #333;\n            margin-bottom: 15px;\n            font-size: 1.3rem;\n        }\n        .result p {\n            color: #555;\n            margin-bottom: 10px;\n            font-size: 1.1rem;\n            line-height: 1.5;\n        }\n        .result-value {\n            font-size: 1.8rem;\n            font-weight: 700;\n            color: #667eea;\n            margin: 10px 0;\n        }\n        .formula-explanation {\n            margin-top: 20px;\n            padding: 15px;\n            background: #f0f2ff;\n            border-radius: 8px;\n            border-left: 4px solid #667eea;\n        }\n        .formula-explanation h4 {\n            color: #333;\n            margin-bottom: 10px;\n        }\n        .formula-explanation p {\n            color: #666;\n            font-size: 0.95rem;\n            line-height: 1.5;\n        }\n        .instructions {\n            background: rgba(255, 255, 255, 0.9);\n            padding: 25px;\n            border-radius: 15px;\n            margin-top: 30px;\n            max-width: 100vw;\n            text-align: left;\n        }\n        .instructions h3 {\n            color: #333;\n            margin-bottom: 15px;\n        }\n        .instructions p {\n            color: #555;\n            line-height: 1.6;\n            margin-bottom: 10px;\n        }\n        footer {\n            margin-top: 40px;\n            color: rgba(255, 255, 255, 0.8);\n            text-align: center;\n            padding: 20px;\n            font-size: 0.9rem;\n        }\n        @keyframes fadeIn {\n            from { opacity: 0; transform: translateY(10px); }\n            to { opacity: 1; transform: translateY(0); }\n        }\n        @media (max-width: 600px) {\n            .calculator {\n                padding: 20px;\n            }\n            .calculators-container {\n                gap: 20px;\n            }\n            h1 {\n                font-size: 2rem;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n<div class=\"container\">\n    <header>\n        <p class=\"subtitle\">\n            Learn how to add percentages correctly and see why 20% plus 10% is not the same as a simple 30% change.\n        <\/p>\n    <\/header>\n        <div class=\"calculator\">\n\n        <h2>Why 20% + 10% Isn\u2019t 30%<\/h2>\n        When you apply a 20% increase followed by a 10% increase, the second increase is calculated on the new value, not the original one.\n        Starting at 100, a 20% increase gives 120. A further 10% increase on 120 gives 132. The overall change from 100 to 132 is 32%, not 30%.\n\n        <h2>How to Add Percentages Correctly<\/h2>\n        To combine two percentage changes, turn each change into a factor. For example, +20% becomes 1.20, and +10% becomes 1.10.\n        Multiply the factors (1.20 \u00d7 1.10 = 1.32) and then convert the combined factor back into a percentage change by subtracting 1 and multiplying by 100.\n\n        <h2>Common Mistakes with Adding Percentages<\/h2>\n        A very common mistake is simply adding percentage figures together without accounting for compounding, especially with discounts, interest, and year\u2011on\u2011year price changes.\n        Another mistake is forgetting that a 20% increase followed by a 20% decrease does not bring you back to the starting point; it leaves you below where you started.\n\n            <h2>Adding Percentages Calculator<\/h2>\n            <p class=\"calculator-description\">\n                Enter a starting value and two percentage changes to see the final value and the true overall percentage change.\n            <\/p>\n\n            <div class=\"input-group\">\n                <label for=\"startValue\">Starting value<\/label>\n                <input type=\"number\" id=\"startValue\" placeholder=\"e.g. 100\" step=\"any\">\n            <\/div>\n\n            <div class=\"input-group\">\n                <label for=\"firstPercent\">First percentage change (%)<\/label>\n                <input type=\"number\" id=\"firstPercent\" placeholder=\"e.g. 20\" step=\"any\">\n            <\/div>\n\n            <div class=\"input-group\">\n                <label for=\"secondPercent\">Second percentage change (%)<\/label>\n                <input type=\"number\" id=\"secondPercent\" placeholder=\"e.g. 10\" step=\"any\">\n            <\/div>\n\n            <button class=\"calculate-btn\" onclick=\"calcAddPercent()\">Calculate combined change<\/button>\n\n            <div class=\"result\" id=\"addPercentBox\">\n                <h3>Calculation Result<\/h3>\n                <p>Starting value: <span id=\"startValueDisplay\">0<\/span><\/p>\n                <p>After first change: <span id=\"afterFirstDisplay\" class=\"result-value\">0<\/span><\/p>\n                <p>After second change: <span id=\"afterSecondDisplay\" class=\"result-value\">0<\/span><\/p>\n                <p>Overall percentage change: <span id=\"overallChangeDisplay\" class=\"result-value\">0<\/span>%<\/p>\n\n                <div class=\"formula-explanation\">\n                    <h4>Formula Used<\/h4>\n                    <p>First change factor = 1 + (First % \u00f7 100)<\/p>\n                    <p>Second change factor = 1 + (Second % \u00f7 100)<\/p>\n                    <p>Combined factor = First factor \u00d7 Second factor<\/p>\n                    <p>Overall percentage change = (Combined factor \u2212 1) \u00d7 100<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    \n\n    <footer>\n        <p>\u00a9 2026 Percentage Calculators | How to add percentages correctly<\/p>\n    <\/footer>\n<\/div>\n\n<script>\n    function calcAddPercent() {\n        const start = parseFloat(document.getElementById('startValue').value);\n        const p1 = parseFloat(document.getElementById('firstPercent').value);\n        const p2 = parseFloat(document.getElementById('secondPercent').value);\n        const box = document.getElementById('addPercentBox');\n\n        if (isNaN(start) || isNaN(p1) || isNaN(p2)) {\n            alert(\"Please enter valid numbers for the starting value and both percentage changes.\");\n            return;\n        }\n\n        const factor1 = 1 + (p1 \/ 100);\n        const afterFirst = start * factor1;\n        const factor2 = 1 + (p2 \/ 100);\n        const afterSecond = afterFirst * factor2;\n\n        const overallChange = ((afterSecond - start) \/ start) * 100;\n\n        document.getElementById('startValueDisplay').textContent = start.toFixed(2);\n        document.getElementById('afterFirstDisplay').textContent = afterFirst.toFixed(2);\n        document.getElementById('afterSecondDisplay').textContent = afterSecond.toFixed(2);\n        document.getElementById('overallChangeDisplay').textContent = overallChange.toFixed(2);\n\n        box.classList.add('show');\n    }\n\n    document.addEventListener('DOMContentLoaded', function () {\n        const inputs = document.querySelectorAll('#startValue, #firstPercent, #secondPercent');\n        inputs.forEach(input => {\n            input.addEventListener('keypress', function (e) {\n                if (e.key === 'Enter') {\n                    calcAddPercent();\n                }\n            });\n        });\n    });\n<\/script>\n<\/body>\n<\/html>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Adding Percentages the Right Way (Why 20% + 10% Isn\u2019t 30%)<\/p>\n","protected":false},"author":2,"featured_media":34,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,45],"tags":[15,3,7,23,18,5,14,16,10,17,13,6,12,8,19,22,4,9,11,20,21],"class_list":["post-31","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-cool-and-simple-to-use-online-calculator-and-conversion-tools","tag-agentic-ai","tag-ai-2025","tag-best-ai","tag-best-books-on-ai","tag-best-free-text-to-video-ai","tag-clout-ai","tag-cryptocurrency-predictions","tag-current-ceo-of-perplexity-ai","tag-education-tools-with-ai","tag-gemini-ai","tag-how-to-make-money-with-ai","tag-latest-advancements-in-ai","tag-latest-developments-in-ai","tag-latest-trends-in-ai","tag-most-advanced-ai","tag-number-of-x-users-interested-in-ai","tag-quinn-ai","tag-rawlings-clout-ai","tag-ways-to-make-money-with-ai","tag-world-summit-ai-amsterdam-dates","tag---perplexity-ai"],"_links":{"self":[{"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/posts\/31","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/comments?post=31"}],"version-history":[{"count":7,"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/posts\/31\/revisions"}],"predecessor-version":[{"id":534,"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/posts\/31\/revisions\/534"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/media\/34"}],"wp:attachment":[{"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=31"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=31"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlinepercentagecalculator.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=31"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}