<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: David Ng</title>
    <description>The latest articles on DEV Community by David Ng (@davidng).</description>
    <link>https://dev.to/davidng</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4007546%2F043d7338-681d-45fa-a749-83dd89a40841.png</url>
      <title>DEV Community: David Ng</title>
      <link>https://dev.to/davidng</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/davidng"/>
    <language>en</language>
    <item>
      <title>Why 50% + 30% VA disability is NOT 80%</title>
      <dc:creator>David Ng</dc:creator>
      <pubDate>Wed, 01 Jul 2026 07:23:49 +0000</pubDate>
      <link>https://dev.to/davidng/why-50-30-va-disability-is-not-80-1e91</link>
      <guid>https://dev.to/davidng/why-50-30-va-disability-is-not-80-1e91</guid>
      <description>&lt;h2&gt;
  
  
  Why 50% + 30% VA disability is NOT 80%
&lt;/h2&gt;

&lt;p&gt;The first time a veteran sees their VA rating decision, the math looks broken. You've got a 50% rating for one condition and a 30% for another, and you're sitting there doing fourth-grade addition: 50 plus 30 is 80, right?&lt;/p&gt;

&lt;p&gt;Wrong. The VA says 65. And after a step you didn't know about, it becomes 70.&lt;/p&gt;

&lt;p&gt;This trips up almost everyone, so let me walk through what's actually happening. I'm a developer who got tired of explaining this by hand, so I ended up building a free calculator for it. More on that at the end. First the logic, because once you see it you'll never be confused again.&lt;/p&gt;

&lt;h3&gt;
  
  
  The "whole person" idea
&lt;/h3&gt;

&lt;p&gt;The VA doesn't treat you as a stack of percentages it can just add up. It treats you as a whole person who starts at 100% healthy, and each disability chips away at what's &lt;em&gt;left&lt;/em&gt;, not at the original 100.&lt;/p&gt;

&lt;p&gt;Think of it like a discount that compounds. A 50% off coupon followed by a 30% off coupon does not give you 80% off. The second coupon only applies to the price that survived the first one. Same deal here.&lt;/p&gt;

&lt;p&gt;This is laid out in the federal regs, 38 CFR § 4.25, the "Combined Ratings Table." That's the official source if you want to read the dry version.&lt;/p&gt;

&lt;h3&gt;
  
  
  The actual formula
&lt;/h3&gt;

&lt;p&gt;Order your disabilities from highest to lowest. Then peel them off one at a time against your remaining healthy percentage.&lt;/p&gt;

&lt;p&gt;Start: 100% healthy.&lt;/p&gt;

&lt;p&gt;Apply the 50% disability first:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;remaining = 100 - 50 = 50% healthy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now apply the 30% to what's left, the 50, not the original 100:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;30% of 50 = 15
remaining = 50 - 15 = 35% healthy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;So you're 35% healthy, which means 65% disabled. That's where the 65 comes from.&lt;/p&gt;

&lt;p&gt;If you want it as one line:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;combined_disability = 100 - (100 * (1 - 0.50) * (1 - 0.30))
                    = 100 - (100 * 0.50 * 0.70)
                    = 100 - 35
                    = 65
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Every extra condition just adds another &lt;code&gt;(1 - rating)&lt;/code&gt; factor to that product. Three disabilities at 50, 30, 20:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;100 - (100 * 0.50 * 0.70 * 0.80) = 100 - 28 = 72
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Then it rounds
&lt;/h3&gt;

&lt;p&gt;Here's the part people miss. The VA takes that combined number and rounds to the nearest 10.&lt;/p&gt;

&lt;p&gt;65 rounds up to 70. So our 50-and-30 veteran walks away at 70%, not 65, and definitely not 80.&lt;/p&gt;

&lt;p&gt;72 from the three-disability example rounds down to 70.&lt;/p&gt;

&lt;p&gt;The rule is plain rounding: 5 and up goes up, 4 and down goes down. A combined 64 becomes 60. A 65 becomes 70. This single step can mean a real jump in monthly compensation, which is why the order and the exact numbers matter so much.&lt;/p&gt;

&lt;h3&gt;
  
  
  Where the spouse and kids come in
&lt;/h3&gt;

&lt;p&gt;Notice the dependents have not touched the math yet, and that's on purpose. Dependents do not change your &lt;em&gt;rating&lt;/em&gt;. Your rating is your rating. What they change is the &lt;em&gt;dollar amount&lt;/em&gt; attached to it, and only once you hit 30% or higher.&lt;/p&gt;

&lt;p&gt;So the flow is two separate stages:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Combine all your disability percentages with the formula above. Round to the nearest 10. That gives you your rating, say 70%.&lt;/li&gt;
&lt;li&gt;Look up the dollar figure for a 70% veteran, then add the dependent allowances on top: a spouse bumps it, each child under 18 bumps it, a child in school past 18 bumps it more, and dependent parents add too.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A single veteran at 70% and a married veteran at 70% with two kids get the &lt;em&gt;same rating&lt;/em&gt; but different checks. The VA publishes these dollar amounts in its compensation rate tables, and they get adjusted every December for cost of living. I'm not going to print a specific 2026 dollar figure here, because these change yearly and the last thing you want is to plan around a stale number. Pull the current rate from the official VA tables, or run your own.&lt;/p&gt;

&lt;h3&gt;
  
  
  Run your own numbers
&lt;/h3&gt;

&lt;p&gt;The honest takeaway: addition is the wrong tool, the formula is multiplicative against your remaining health, and rounding to the nearest 10 happens before any dependent money gets added.&lt;/p&gt;

&lt;p&gt;If you'd rather not do the &lt;code&gt;(1 - rating)&lt;/code&gt; multiplication by hand, that's the free tool I built. Punch in each disability percentage and your dependents and it does the combine, the round, and the dependent add-on for you: &lt;a href="https://militarycalc.com/disability/combined-rating-calculator" rel="noopener noreferrer"&gt;https://militarycalc.com/disability/combined-rating-calculator&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Plug in your real ratings and check it against your decision letter. If your letter and the calculator disagree, that's worth a second look at how the VA combined them.&lt;/p&gt;

</description>
      <category>military</category>
      <category>personalfinance</category>
      <category>webdev</category>
      <category>veteran</category>
    </item>
  </channel>
</rss>
