Scholarship-Adjusted Fee Calculator
See the real amount payable after institutional discounts and scholarship awards.
- Gross fee = ₹1,50,000
- Institutional discount (10.0%) = ₹15,000
- After discount = ₹1,35,000
- Less scholarship = ₹20,000
- Net payable = ₹1,15,000
How net fee is derived
Discount then scholarship
Net = max(0, gross − gross×discount% − scholarship). Discounts are applied first (as most fee circulars do), then the fixed scholarship/waiver. Confirm order with your accounts office if your award letter specifies otherwise.
Frequently asked questions
Does this check scholarship eligibility?
No — only the arithmetic after you know the award amount. Use the government scholarship eligibility checkers under Free Tools for scheme criteria.
Can net go negative?
The tool floors at ₹0 — excess scholarship is not treated as a cash payout.
Hostel and transport too?
Add those into gross fee, or run Hostel Fee Calculator separately and sum.
Tuition waiver vs scholarship?
Enter waivers as discount % or as part of the scholarship amount — whichever matches your letter.
For developers & AI agents
The Scholarship-Adjusted Fee Calculator is also available as a free, unauthenticated JSON API — no API key, no sign-up, CORS enabled for all origins. Send a GET request with the parameters below and receive the computed result as JSON, including the source of the format or formula used. Invalid input returns HTTP 400 with a JSON { "error": "..." } body.
GET https://knwdle.com/api/tools/scholarship-adjusted-fee-calculator| Parameter | Required | Description |
|---|---|---|
totalFee | Yes | Gross fee INR |
discountPct | No | Percent discount (default 0) |
scholarship | No | Fixed scholarship INR (default 0) |
Request:
GET https://knwdle.com/api/tools/scholarship-adjusted-fee-calculator?totalFee=150000&discountPct=10&scholarship=20000
Response:
{
"tool": "scholarship-adjusted-fee-calculator",
"input": {
"totalFee": "150000",
"discountPct": "10",
"scholarship": "20000"
},
"result": {
"primaryLabel": "Net fee payable",
"primaryValue": "₹1,15,000",
"steps": [
"Gross fee = ₹1,50,000",
"Institutional discount (10.0%) = ₹15,000",
"After discount = ₹1,35,000",
"Less scholarship = ₹20,000",
"Net payable = ₹1,15,000"
],
"extras": [
{
"label": "Total relief",
"value": "₹35,000"
},
{
"label": "Effective reduction",
"value": "23.3%"
}
],
"tables": [],
"listSections": []
},
"formula": "Net = max(0, gross − gross×discount% − scholarship).",
"source": "Net = max(0, gross − gross×discount% − scholarship)."
}