惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I finally understood compound interest by writing 8 lines...
levent çelik · 2026-04-30 · via DEV Community

Compound interest is one of those concepts I had nodded along to since high school without really feeling. The formula made sense on paper, the wikipedia chart looked impressive, and yet whenever a friend asked me "so what does 6% over 30 years actually look like?" I had to wave my hands.

This weekend I sat down and wrote it out as code. That single exercise did more for my intuition than a decade of half-attentive reading.

The formula, with names that mean something

The textbook form is:

A = P * (1 + r/n)^(n*t)

Enter fullscreen mode Exit fullscreen mode

Which is fine if you already understand it. Here is the same thing as a function with names a beginner can read:

function futureValue({ principal, annualRate, compoundsPerYear, years }) {
  const r = annualRate / compoundsPerYear;
  const n = compoundsPerYear * years;
  return principal * Math.pow(1 + r, n);
}

console.log(futureValue({
  principal: 10000,
  annualRate: 0.06,
  compoundsPerYear: 12,
  years: 30,
}));
// 60225.75...

Enter fullscreen mode Exit fullscreen mode

Ten thousand dollars at 6 percent, compounded monthly for 30 years, becomes about sixty thousand. Six times the original. No new contributions. That is the entire pitch of long-term investing in one console.log.

Why monthly compounding matters less than you think

The first thing this snippet let me play with is the compoundsPerYear parameter. Try 1, 12, 365, then a million. The answer barely moves after about 12. Compounding more often than monthly is mathematically fancier but practically marginal at normal rates. Most of the magic is the rate and the time.

If you want a UI version of the same calculation with a yearly breakdown table, the Compound Interest Calculator on Equation Solver shows the row-by-row growth so you can see exactly when the curve starts bending upward. It is the same formula my function uses, just rendered with inputs and a table.

Reframing the question for a mortgage

Once I had the future-value function, I realized the same algebra runs in reverse for loans. A mortgage payment is the constant monthly amount that brings a loan balance from P down to zero over n months at rate r:

function monthlyPayment({ principal, annualRate, years }) {
  const r = annualRate / 12;
  const n = years * 12;
  return (principal * r) / (1 - Math.pow(1 + r, -n));
}

console.log(monthlyPayment({
  principal: 300000,
  annualRate: 0.065,
  years: 30,
}));
// 1896.20...

Enter fullscreen mode Exit fullscreen mode

Seeing it as code made me realize how brutal small rate changes are. Drop the rate from 6.5 to 5.5 percent and the payment falls by more than $190 a month. Multiply by 360 months and that is over $68,000 across the life of the loan, on a single point of rate. I have been quoting that number to friends ever since.

When I want a full amortization schedule rather than just the payment, I open the Mortgage Calculator on Equation Solver and watch how the principal and interest split shifts month by month. The first few years are almost entirely interest. That is also obvious from the formula, but seeing the table makes it real.

Retirement is just compound interest with contributions

The final piece is what happens when you add money every month. The clean way to see it is:

function retirementBalance({ monthly, annualRate, years }) {
  const r = annualRate / 12;
  const n = years * 12;
  return monthly * ((Math.pow(1 + r, n) - 1) / r);
}

console.log(retirementBalance({
  monthly: 500,
  annualRate: 0.07,
  years: 35,
}));
// 858422.95...

Enter fullscreen mode Exit fullscreen mode

Five hundred dollars a month for 35 years at 7 percent annual return ends up close to $860k. No lottery, no genius stock picks, just a habit and time. The Retirement Calculator on Equation Solver wraps the same math with a nicer UI and lets you sweep across contribution levels and rates.

What I took away

Writing these three tiny functions side by side made the connection click. Saving, borrowing, and retiring are all the same exponential machine wearing different costumes. Once you have a Math.pow(1 + r, n) and a clear naming convention, the rest is just deciding whether you are solving for the future balance, the payment, or the contribution.

If you teach or mentor anyone learning programming, financial calculators are a surprisingly good first project. The math is small, the inputs are intuitive, and the output finally makes the abstract formula feel like real money. Ten years from now, that intuition is worth more than the code.