auto_loan_calc
Calculate monthly payments and total cost for an auto loan based on vehicle price, down payment, interest rate, term, and trade-in value.
Instructions
Calculate auto loan monthly payments and total cost.
Parameters:
car_price — Vehicle purchase price.
down_payment — Down payment amount (default: 0).
rate — Annual interest rate (default: 6.0).
term_months — Loan term in months (default: 60).
trade_in — Trade-in value (default: 0).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| car_price | Yes | ||
| down_payment | No | ||
| rate | No | ||
| term_months | No | ||
| trade_in | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |