Close Menu
Financblog
    What's Hot

    Anthropic’s Claude tops App Store charts as backlash builds against OpenAI’s ChatGPT

    March 2, 2026

    Bank of Japan deputy governor says rate hikes likely to continue

    March 2, 2026

    The whole world is watching this critical energy chokepoint as Iran conflict enters more dangerous phase

    March 2, 2026
    Facebook X (Twitter) Instagram
    Financblog
    Facebook X (Twitter) Instagram
    • Home
    • Personal Finance
    • Passive Income
    • Saving Tips
    • Banking
    • Loans
    Financblog
    Home»Loans»Repayment Assistance Plan (RAP) Student Loan Calculator
    Loans

    Repayment Assistance Plan (RAP) Student Loan Calculator

    adminBy adminJanuary 30, 2026No Comments6 Mins Read
    Facebook Twitter LinkedIn Telegram Pinterest Tumblr Reddit WhatsApp Email
    Repayment Assistance Plan calculator | Source: The College Investor
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Repayment Assistance Plan calculator | Source: The College Investor

    Key Points

    • The Repayment Assistance Plan (RAP) is set to replace current income-driven repayment options for federal student loans.
    • Monthly payments under RAP scale with income, ranging from $10 minimum up to 10% of adjusted gross income, with reductions for dependents.
    • The plan caps loan forgiveness at 30 years and avoids negative amortization through monthly interest subsidies and principal support.

    Check out our new student loan calculator that helps borrowers estimate monthly payments under the Repayment Assistance Plan (RAP), a key provision of the recently passed bill set to reshape student loan repayment. 

    The plan replaces existing income-driven plans like IBR, PAYE, and ICR for future borrowers and introduces a standardized approach that ties payments directly to adjusted gross income (AGI).

    The new RAP formula departs from the current method of calculating discretionary income, replacing it with an income-tiered structure. Borrowers pay a set percentage of their AGI, with payments capped at 10% for those earning above $100,000 annually. Unlike earlier plans, RAP introduces a flat $10 monthly payment for borrowers earning $10,000 or less.

    The RAP is only one of two plans available for future borrowers (with loans after July 1, 2026). The other is a new Standard Repayment Plan.

    To make these changes easier to understand, our new calculator allows borrowers to see their estimated monthly payments under RAP. See our other student loan calculator here.

    Would you like to save this?

    We’ll email this article to you, so you can come back to it later!

    Repayment Assistance Plan (RAP) Calculator 

    Here is the RAP calculator:

    Student Loan RAP Calculator

    Your Monthly Payment:


    function calculateRAPPayment() {
    const agi = parseFloat(document.getElementById('rap-agi').value);
    const dependents = parseInt(document.getElementById('rap-dependents').value) || 0;

    if (isNaN(agi) || agi < 0) {
    alert('Please enter a valid AGI amount');
    return;
    }

    if (isNaN(dependents) || dependents < 0) {
    alert('Please enter a valid number of dependents');
    return;
    }

    let basePercentage;
    if (agi <= 10000) {
    basePercentage = 120; // Flat rate of $120 annually
    } else if (agi <= 20000) {
    basePercentage = 0.01;
    } else if (agi <= 30000) {
    basePercentage = 0.02;
    } else if (agi <= 40000) {
    basePercentage = 0.03;
    } else if (agi <= 50000) {
    basePercentage = 0.04;
    } else if (agi <= 60000) {
    basePercentage = 0.05;
    } else if (agi <= 70000) {
    basePercentage = 0.06;
    } else if (agi <= 80000) {
    basePercentage = 0.07;
    } else if (agi <= 90000) {
    basePercentage = 0.08;
    } else if (agi <= 100000) {
    basePercentage = 0.09;
    } else {
    basePercentage = 0.10;
    }

    let monthlyPayment;
    if (agi <= 10000) {
    monthlyPayment = 120 / 12;
    } else {
    monthlyPayment = (agi * basePercentage) / 12;
    }

    monthlyPayment -= (dependents * 50);
    monthlyPayment = Math.max(10, monthlyPayment);

    const resultDiv = document.getElementById('rap-result');
    const paymentDiv = document.getElementById('rap-monthly-payment');
    resultDiv.style.display = 'block';
    paymentDiv.textContent = '$' + monthlyPayment.toFixed(2);
    }

    How The RAP Formula Works

    RAP payments are based on annual income brackets (based on adjusted gross income or AGI):

    • AGI ≤ $10,000: Flat payment of $120/year ($10/month)
    • $10,001–$20,000: 1% 
    • $20,001–$30,000: 2% 
    • $30,001–$40,000: 3% 
    • $40,001–$50,000: 4%
    • $50,001–$60,000: 5%
    • $60,001–$70,000: 6% 
    • $70,001–$80,000: 7%
    • $80,001–$90,000: 8%
    • $90,001–$100,000: 9%
    • AGI > $100,000: 10% of AGI

    To determine a borrower’s monthly payment, the base payment is divided by 12 and adjusted by subtracting $50 for each dependent claimed on the borrowers’ tax return.

    If the calculation ends up less than $10 per month, the borrower would pay a minimum of $10/month.

    Married Borrowers: Your AGI will be based on your tax filing status. If you file jointly, it’s your combined AGI. If you file separately, if you’re MFS AGI. For dependents and MFS, the dependent must be claimed on your tax return. Be aware that the new bill imposes a LOT of other penalties on MFS. Please run this through a tax professional before changing your tax filing status.

    Examples:

    • A borrower with an AGI of $25,000 and two children would pay $10/month.
    • A borrower with an AGI of $60,000 and no dependents would pay $250/month.
    • A borrower with an AGI of $120,000 and one child one pay $950/month.

    Comparing RAP To Current IDR Plans

    Unlike RAP, existing income-driven repayment (IDR) plans such as IBR, PAYE, and ICR rely on a borrower’s discretionary income, which is calculated using federal poverty guidelines. For example, PAYE requires 10% of discretionary income over 150% of the poverty level. This method can produce lower monthly payments for low-income borrowers, but the calculations can be confusing.

    RAP simplifies this process with income tiers and automatic interest forgiveness for some borrowers. While it imposes a longer maximum repayment term (30 years), it eliminates the risk of negative amortization by canceling unpaid interest each month.

    IBR and PAYE offer forgiveness after 20 or 25 years, depending on the borrower’s loan type and when they entered repayment. RAP standardizes forgiveness at 360 monthly payments, or 30 years, but offers a consistent structure across income levels.

    From a monthly payment perspective, using the above examples, a borrower on IBR today would pay (new IBR):

    • A borrower with an AGI of $25,000 and two children would pay $0/month on IBR.
    • A borrower with an AGI of $60,000 and no dependents would pay $312/month on IBR.
    • A borrower with an AGI of $120,00 with one child would pay $745/month on IBR.

    As you can see, RAP would benefit the lower income borrowers, but would be more costly for the higher income borrower. That’s why there are winners and losers in this proposal.

    See the full RAP vs. Amended IBR breakdown.

    What Borrowers Need To Know

    Our RAP calculator is designed to help borrowers anticipate their payments under the new structure, which will go live in 2026. Those earning less than $30,000 may see minimal changes, while middle and high income borrowers could see larger monthly payments.

    Borrowers who begin repayment before July 1, 2026, can still access the existing old and new IBR plan, and the amended version removes the financial hardship test. Those in the SAVE forbearance will be transitioned into the RAP plan sometime in the near future.

    Although the RAP proposal offers consistency, it may not provide the lowest possible payment for every borrower. The loss of other IDR options narrows flexibility.

    Hopefully, the calculator helps borrowers understand these trade-offs and make comparisons based on their specific income and family circumstances.

    Don’t Miss These Other Stories:

    @media (min-width: 300px){[data-css=”tve-u-1973673af41″].tcb-post-list #post-58271 [data-css=”tve-u-1973673af47″]{background-image: url(“https://thecollegeinvestor.com/wp-content/uploads/2025/05/Depositphotos_154366650_XL-150×150.jpg”) !important;}}

    SAVE Student Loan Plan Timeline Estimates: What To Expect

    SAVE Student Loan Plan Timeline Estimates: What To Expect
    @media (min-width: 300px){[data-css=”tve-u-1973673af41″].tcb-post-list #post-70676 [data-css=”tve-u-1973673af47″]{background-image: url(“https://thecollegeinvestor.com/wp-content/uploads/2025/12/Education-Secretary-Linda-McMahon-150×150.jpg”) !important;}}

    Court Deals Final Blow To End SAVE Student Loan Repayment Plan

    Court Deals Final Blow To End SAVE Student Loan Repayment Plan
    @media (min-width: 300px){[data-css=”tve-u-1973673af41″].tcb-post-list #post-57486 [data-css=”tve-u-1973673af47″]{background-image: url(“https://thecollegeinvestor.com/wp-content/uploads/2025/05/What_Happens_If_You_Lie_On_Your_Student_Loan_Repayment_Application_1280x720-150×150.png”) !important;}}

    How To Legally Reduce Your IDR Payment (And Avoid Fraud)

    How To Legally Reduce Your IDR Payment (And Avoid Fraud)

    Editor: Colin Graves

    The post Repayment Assistance Plan (RAP) Student Loan Calculator appeared first on The College Investor.

    Assistance Calculator Loan plan RAP Repayment Student
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Telegram Email
    Previous ArticleTrump throws down new tariff threats toward Canada and Mexico
    Next Article Trump warns Britain on China ties as Starmer hails reset
    admin
    • Website

    Related Posts

    Married Filing Separately For Your Student Loan Payments (IBR And RAP)

    March 1, 2026

    The Most Educated Religious Groups In America

    February 28, 2026

    No More Credit – Blogging Away Debt Blogging Away Debt

    February 28, 2026
    Add A Comment
    Leave A Reply Cancel Reply

    Top Posts

    Anthropic’s Claude tops App Store charts as backlash builds against OpenAI’s ChatGPT

    March 2, 2026

    Bank of Japan deputy governor says rate hikes likely to continue

    March 2, 2026

    The whole world is watching this critical energy chokepoint as Iran conflict enters more dangerous phase

    March 2, 2026

    Subscribe to Updates

    Get the latest sports news from SportsSite about soccer, football and tennis.

    About Us

    Welcome to FinancBlog, your trusted online resource for personal finance insights, money management tips, and financial education designed to help you make smarter financial decisions.
    At FinancBlog, our mission is simple: to make personal finance easy, understandable, and accessible for everyone. Whether you are looking to save more money, understand banking products, explore loans, or build passive income streams, we provide well-researched and easy-to-read information to guide you.

    Facebook X (Twitter) Instagram Pinterest YouTube
    a1
    Top Insights

    Anthropic’s Claude tops App Store charts as backlash builds against OpenAI’s ChatGPT

    March 2, 2026

    Bank of Japan deputy governor says rate hikes likely to continue

    March 2, 2026

    The whole world is watching this critical energy chokepoint as Iran conflict enters more dangerous phase

    March 2, 2026
    Get Informed

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    © 2026 inancblog.com. All rights reserved. Designed by DD.

    • About Us
    • Contact Us
    • Terms & Conditions
    • Privacy Policy
    • Disclaimer

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Our website is made possible by displaying online advertisements to our visitors. Please support us by disabling your Ad Blocker.