loan
Auto Loan Calculator
Estimate monthly vehicle loan payments from price, down payment, trade-in value, rate, and term.
loan calculator
The Boat Loan Calculator estimates a fixed-rate boat purchase loan in three modes. Monthly payment mode starts with an entered boat price and calculates a monthly loan payment. Target loan payment mode starts with a target loan-only payment and back-solves an estimated boat price. How much can I afford mode starts with an all-in monthly boat budget and binary-searches the highest boat price whose estimated loan payment plus ownership cost stays within that budget. The model includes amount or percent down payment, trade-in value, an entered sales-tax rate, flat fees, a switch for paying tax and fees upfront or adding them to the loan in the existing payment modes, and an ownership-cost assumption that is shown as a monthly estimate.
Your scenario
Working scenario
Not saved yet
Saved scenarios
Save this result, then use saved scenarios to switch between assumptions.
Use this calculator when you want to compare boat price, target monthly payment, down payment, trade-in value, sales-tax assumption, flat fees, rate, and term in one mechanical estimate. Use Auto Loan for a simpler vehicle loan without tax and fee fields, Loan Payment for generic fixed-rate payments, APR for APR-style fee treatment, Payment or Amortization for broader payment schedules, Debt-to-Income for monthly debt pressure, and Lease or Cash Back or Low Interest only when those product assumptions fit better. Use CFPB, Regulation Z, FTC, lender, dealer, state tax, DMV or vessel-registration, U.S. Coast Guard, marina, insurer, warranty, regulator, legal, and local sources for real disclosures, taxes, documentation, registration, insurance, storage, approval, collateral, or jurisdiction-specific questions.
Term months are max(1, round(loanTerm * 12)) when the unit is years, or max(1, round(loanTerm)) when the unit is months. Displayed sales tax is boatPrice * salesTaxRate / 100. If includeFeesInLoan is yes, financed fees are fees plus entered-price sales tax; otherwise financed fees are 0 and tax plus fees are paid upfront. Down payment is either the entered amount or boatPrice * downPayment / 100. In total-price mode, loan amount is max(0, boatPrice - downPaymentAmount - tradeInValue + financedFees). Monthly rate is interestRate / 100 / 12. Nonzero-rate payment is P * r / (1 - (1 + r)^(-n)); zero-rate payment is P / n. In target-payment mode, the target payment is converted to a present-value loan amount, then boat price is solved from amount-down or percent-down inputs. In affordability mode, the calculator binary-searches boat price from $0 to $5,000,000 and floors the solved display price to the nearest $100. The affordability loan amount is max(0, boat price plus displayed sales tax plus fees minus down payment minus trade-in), and the result must keep monthly loan payment plus monthly ownership cost at or below monthlyBoatBudget. Monthly ownership cost is either boatPrice * ownershipCostPercent / 100 / 12 or the entered fixed monthly ownership amount. Total loan payments are monthly payment times term months, total interest is max(0, total loan payments - loan amount), and total cost is boat price plus displayed sales tax plus fees plus total interest plus ownership cost over the term.
This formula page covers the app's Boat Loan Calculator: a three-mode fixed-rate estimate that calculates a payment from an entered boat price, back-solves an estimated boat price from a target monthly loan payment, or estimates a boat price from an all-in monthly boat budget. It includes amount or percent down payment, trade-in value, entered sales-tax rate, flat fees, a choice to pay tax and fees upfront or include them in the existing payment-mode loan, and ownership-cost assumptions that are converted to monthly estimates. It does not model lender underwriting, itemized insurance, marina fees, storage, maintenance, warranty terms, official registration rules, vessel documentation, legal disclosures, or personalised borrowing advice.
N = max(1, round(term)); taxEntered = enteredPrice * taxRate / 100; F = includeFees ? taxEntered + fees : 0; Down = amount or Price * downPct / 100; standard P = max(0, Price - Down - Trade + F); m = annualRate / 100 / 12; PMT = P * m / (1 - (1 + m)^-N); zero rate PMT = P / N; reverse PV = Target * (1 - (1 + m)^-N) / m; zero rate PV = Target * N; reverse amount-down Price = max(0, PV + Down + Trade - F); reverse percent-down Price = max(0, (PV + Trade - F) / max(0.000001, 1 - downPct / 100)); affordability P = max(0, Price + tax + fees - Down - Trade); OwnMonthly = percent mode ? Price * OwnPct / 100 / 12 : OwnFixed; TotalMonthly = PMT + OwnMonthly; affordability searches max Price where TotalMonthly <= Budget, then floors Price to nearest 100; Upfront = payment modes ? max(0, Down + (includeFees ? 0 : tax + fees)) : Down; Total = PMT * N; Interest = max(0, Total - P); OwnTotal = OwnMonthly * N; Cost = Price + tax + fees + Interest + OwnTotal
The calculator first converts the selected term into months, builds the amount financed from boat price, down payment, trade-in, tax, and fees, then applies the fixed-payment loan formula. In target-payment mode it uses the same payment relationship to find a present-value loan amount before solving the boat price that could support the target loan payment. In affordability mode it binary-searches the highest boat price whose loan payment plus ownership cost stays within the monthly boat budget. Ownership cost is either a percentage of boat value per year divided by 12 or a fixed monthly estimate.| Symbol | Meaning | How this page uses it |
|---|---|---|
| N | Term months | Loan term converted to months. Year inputs are multiplied by 12, month inputs are rounded, and the result is floored at one month. |
| Budget | Monthly boat budget | The all-in monthly cost target used in affordability mode. It is compared with monthly loan payment plus estimated monthly ownership cost. |
| Price | Boat price | The entered boat price in standard mode, the solved estimated price in target-payment mode, or the binary-searched affordable price in affordability mode. It is before ownership costs and official registration rules. |
| Target | Target monthly payment | The Monthly payment input used only when calculation mode is monthly payment. |
| tax | Sales tax amount | The displayed tax estimate: boat price multiplied by the entered sales-tax rate. It is not an official tax lookup. |
| taxEntered | Entered-price tax | The tax amount based on the current entered boat price. The reverse-mode financed-fee branch uses this before the solved price is known. |
| F | Financed tax and fees | Zero when tax and fees are paid upfront, or entered-price sales tax plus fees when Include all fees in loan is yes. |
| Down | Down payment | Either the entered currency amount or boat price times the entered down-payment percent. |
| Trade | Trade-in value | A simple positive offset against the amount financed. The app does not model payoff balances, dealer appraisal, title issues, or negative equity. |
| P | Total loan amount | The app's payment base after down payment, trade-in value, and any financed tax and fees. Standard mode floors it at zero. |
| m | Monthly rate | The entered annual interest rate divided by 100 and then by 12. The input is not automatically a legal APR disclosure. |
| PMT | Monthly payment | The fixed monthly payment solved from the amount financed, monthly rate, and term months, or the entered target payment in reverse mode. |
| PV | Present-value loan amount | The reverse-mode loan amount supported by the target monthly payment, rate, and term. |
| OwnPct | Ownership-cost percent | The user-entered annual ownership-cost assumption. Affordability mode defaults to 8 percent and treats values above 25 percent as a high planning assumption rather than a precise quote. |
| OwnFixed | Fixed monthly ownership cost | The optional fixed monthly ownership-cost estimate used instead of a percent of boat value in affordability mode. |
| OwnMonthly | Monthly ownership cost | Boat price times the ownership-cost percent divided by 100 and then by 12, or the fixed monthly ownership amount in affordability mode. |
| TotalMonthly | Total monthly cost | Monthly loan payment plus monthly ownership cost. It is still an estimate from entered assumptions. |
| Upfront | Upfront payment | Down payment plus tax and fees when those costs are not included in the loan. |
| Total | Total loan payments | Monthly payment multiplied by term months before display rounding. |
| Interest | Total loan interest | Total loan payments minus the amount financed, floored at zero for display safety. |
| OwnTotal | Ownership cost over term | Monthly ownership cost multiplied by term months. It is a broad assumption, not an itemized quote. |
| Cost | Total cost | Boat price plus displayed sales tax, fees, total loan interest, and modeled ownership cost over the term. |
The fixtures cover the main branches: standard mode with fees paid upfront, reverse mode from a target payment, affordability mode from an all-in monthly budget, percent down payment with tax and fees financed, and a zero-rate loan.
The examples show how the app combines price, down payment, trade-in, tax, fees, rate, and term into a mechanical estimate. They do not show whether a lender will approve a loan, how a state will tax or register a vessel, what a dealer or marina will charge, or what a buyer should do.
Geographic scope: works globally. The math is currency-agnostic, so enter amounts in your own currency; local taxes, fees, and product rules are not included.
Yes. Enter your sales tax rate (the default 7 percent is only an illustration) and the calculator applies it to the boat price. You can also choose whether tax and fees are paid upfront or financed into the loan; financing them raises the loan amount, the monthly payment, and total interest. The app does not look up official state or local boat tax rates, caps, or trade-in rules, so verify the rate with your state before relying on the number.
Yes. The math is identical for any boat type: powerboat, sailboat, yacht, pontoon, or personal watercraft. Enter the negotiated price, your down payment, any trade-in, the quoted rate, and the term. For larger boats the ownership-cost field matters more: mooring, insurance, maintenance, and storage can be entered either as an annual percentage of the price or a fixed monthly amount, and they are added to the loan payment in the total monthly cost.
Switch the calculator to its affordability mode and enter an all-in monthly boat budget (the default example is $1,000). The calculator searches for the highest boat price whose loan payment plus modeled ownership cost fits inside that budget, then rounds the price down to the nearest $100. This is a planning screen based on your entered assumptions, not a lender pre-approval or a dealer quote.
The loan amount is boat price minus down payment and trade-in, plus tax and fees if you chose to finance them. The payment then uses standard fixed-rate amortization: the annual rate divided by 12 is applied over the term in months. With the defaults - a $35,000 boat, $7,000 down, 7 percent for 10 years - the loan-only payment is about $325 per month before ownership costs.
Enter the term your lender actually quotes; the calculator accepts a term in years or months and defaults to 10 years, which is common for mid-size boat loans. A longer term lowers the monthly payment but increases total interest, and the calculator shows both so you can see the trade-off. It models one fixed rate for the whole term and does not handle balloon payments or rate resets.
Yes. In target-payment mode you enter the monthly loan payment you want (the default example is $350) and the calculator reverses the amortization formula to estimate the boat price that produces it, after accounting for your down payment, trade-in, tax, and fee choices. It is a mechanical inverse of the payment formula, useful for setting a shopping ceiling before talking to a dealer or lender.
This calculator is an original three-mode boat-financing model: payment from price, price back-solved from a target payment, and an affordability search from an all-in monthly budget, with tax and fee financing options and percent or fixed ownership costs, validated by deterministic fixtures. It is not copied from a single source.
Fixtures pin all three modes, the fee-financing branches, and the budget search's floor-to-$100 behavior. The result remains an educational estimate, not a lender approval or an official marine tax figure.
Formula version 2026.06.15-generic-boat-loan-affordability. The version marks the calculation logic and validation fixture set used for this estimate.
Results are educational estimates, not advice. Read the full disclaimer.
loan
Estimate monthly vehicle loan payments from price, down payment, trade-in value, rate, and term.
loan
Estimate monthly payment, total paid, and total interest for an amortizing loan at a fixed rate.
loan
Estimate personal loan payments, total cost, payoff date, and effective APR after fees and monthly insurance.
loan
Estimate annual percentage rate from loan amount, note rate, term, and finance charges.
loan
Solve either the monthly payment for a fixed-term loan or the payoff time for a fixed monthly payment.
loan
Estimate a fixed loan payment schedule, payoff timing, first-month split, and interest saved from extra payments.
debt
Estimate housing-cost and total-debt ratios from before-tax income, housing obligations, and recurring monthly debt payments.
loan
Compare a vehicle rebate with higher-rate financing against a lower-rate financing offer without the rebate.
loan
Estimate a lease payment from asset value, residual value, term, and interest rate, or solve the effective rate implied by a quoted monthly lease payment.