Moore Marsden Calculation Worksheet

.mm-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; } .mm-calculator-container h2 { color: #2c3e50; text-align: center; margin-bottom: 25px; } .mm-input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; } @media (max-width: 600px) { .mm-input-group { grid-template-columns: 1fr; } } .mm-field { display: flex; flex-direction: column; } .mm-field label { font-weight: 600; margin-bottom: 8px; font-size: 14px; } .mm-field input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .mm-btn { background-color: #27ae60; color: white; border: none; padding: 15px 30px; border-radius: 5px; font-size: 18px; cursor: pointer; width: 100%; margin-top: 10px; transition: background-color 0.3s; } .mm-btn:hover { background-color: #219150; } .mm-results { margin-top: 30px; padding: 20px; background-color: #fff; border: 2px solid #27ae60; border-radius: 8px; display: none; } .mm-results h3 { margin-top: 0; color: #27ae60; } .mm-result-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; } .mm-result-row:last-child { border-bottom: none; } .mm-result-val { font-weight: bold; } .mm-article { margin-top: 40px; line-height: 1.6; } .mm-article h2 { color: #2c3e50; border-bottom: 2px solid #27ae60; padding-bottom: 10px; text-align: left; } .mm-article p { margin-bottom: 15px; } .mm-article ul { margin-bottom: 15px; padding-left: 20px; }

Moore Marsden Calculation Worksheet

Calculation Results

Total Property Appreciation:
Community Interest Percentage:
Separate Interest Percentage:
Total Community Share:
Total Separate Share:

Understanding the Moore Marsden Formula

The Moore Marsden calculation is a legal formula primarily used in California family law to determine the community property interest in a residence that one spouse purchased before the marriage (separate property). When community funds (income earned during the marriage) are used to pay down the principal of the mortgage on that separate property, the community acquires a pro-tanto interest in the asset's appreciation.

How the Calculation Works

This worksheet breaks down the equity into two primary components: the separate property interest and the community property interest. The formula follows these logical steps:

  • Step 1: Calculate the total appreciation of the property (Current Value minus Original Purchase Price).
  • Step 2: Determine the Community Percentage. This is the amount the community paid toward the principal divided by the original purchase price.
  • Step 3: Determine the Separate Percentage. This is the sum of the down payment and any pre-marital principal reductions divided by the original purchase price.
  • Step 4: Allocate the appreciation. The community gets its percentage share of the total appreciation, and the separate owner gets their percentage share.
  • Step 5: Final Totals. The community share equals the community principal reduction plus its share of appreciation. The separate share equals the down payment, pre-marital reduction, and its share of appreciation.

Example Scenario

Imagine a spouse buys a house for $400,000 before marriage with a $40,000 down payment. Before marriage, they pay off $10,000 in principal. During the marriage, the couple uses joint earnings to pay off another $50,000 in principal. At the time of divorce, the house is worth $700,000.

  • Total Appreciation: $300,000 ($700k – $400k)
  • Community Interest: $50,000 / $400,000 = 12.5%
  • Separate Interest: ($40,000 + $10,000) / $400,000 = 12.5%
  • Community gets $50,000 (reduction) + $37,500 (12.5% of appreciation) = $87,500.

Key Factors to Remember

Note that Moore Marsden applies to the principal reduction, not interest payments, taxes, or insurance. Only the amount that actually reduces the loan balance is used in the calculation. Furthermore, any capital improvements made with community funds may require a separate Moore Marsden / Marriage of Bono analysis for additional reimbursement or interest.

function calculateMooreMarsden() { var purchasePrice = parseFloat(document.getElementById('purchasePrice').value); var downPayment = parseFloat(document.getElementById('downPayment').value); var preMaritalReduction = parseFloat(document.getElementById('preMaritalReduction').value) || 0; var maritalReduction = parseFloat(document.getElementById('maritalReduction').value) || 0; var currentValue = parseFloat(document.getElementById('currentValue').value); if (isNaN(purchasePrice) || isNaN(downPayment) || isNaN(currentValue)) { alert("Please enter values for Purchase Price, Down Payment, and Current Value."); return; } // 1. Total Appreciation var totalAppreciation = currentValue – purchasePrice; // 2. Percentages based on purchase price var communityPct = maritalReduction / purchasePrice; var separatePct = (downPayment + preMaritalReduction) / purchasePrice; // 3. Share of appreciation var communityAppShare = totalAppreciation * communityPct; var separateAppShare = totalAppreciation * separatePct; // 4. Final Totals var totalCommunityInterest = maritalReduction + communityAppShare; var totalSeparateInterest = downPayment + preMaritalReduction + separateAppShare; // Format results var formatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', }); document.getElementById('resTotalAppreciation').innerText = formatter.format(totalAppreciation); document.getElementById('resCommPct').innerText = (communityPct * 100).toFixed(4) + "%"; document.getElementById('resSepPct').innerText = (separatePct * 100).toFixed(4) + "%"; document.getElementById('resTotalComm').innerText = formatter.format(totalCommunityInterest); document.getElementById('resTotalSep').innerText = formatter.format(totalSeparateInterest); // Show results document.getElementById('mmResults').style.display = 'block'; }

Leave a Reply

Your email address will not be published. Required fields are marked *