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

推荐订阅源

Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
小众软件
小众软件
美团技术团队
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
D
Docker
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
S
SegmentFault 最新的问题
云风的 BLOG
云风的 BLOG
B
Blog
雷峰网
雷峰网
The Cloudflare Blog

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
Current Dividers: The Mirror of Voltage Dividers
Reseacher · 2026-05-07 · via DEV Community

Reseacher

Current Dividers: The Mirror of Voltage Dividers

Current splits across parallel paths — and the formula is the opposite of what you'd expect


If voltage dividers split voltage, current dividers split current. They're the mirror image — and once you see the connection, you'll never confuse them again.

The Big Idea

A current divider has multiple resistors in parallel. Current enters the junction and splits across the available paths. The wider the path (lower resistance), the more current flows through it.

Current divider = current splits across parallel paths. More current flows through the path with less resistance.

Think of a highway splitting into multiple lanes. The widest lane (least resistance) gets the most traffic.

The Formula

For two resistors in parallel:
I₁ = I_total × R₂ / (R₁ + R₂)
I₂ = I_total × R₁ / (R₁ + R₂)

Notice something? It's almost the voltage divider formula — but swapped. In a voltage divider, the bigger resistor gets more voltage. In a current divider, the smaller resistor gets more current.

This makes physical sense: wider pipe (lower resistance) lets more water flow through it.

Why the Formula Is Swapped

Voltage dividers are series circuits (same current, split voltage). Current dividers are parallel circuits (same voltage, split current).

In parallel, both resistors see the same voltage. By Ohm's Law (V = IR), if V is the same, then I = V/R. Lower R → higher I.

Quick check: If R₁ = R₂, each gets half the current. If R₁ is half of R₂, R₁ gets twice the current. Half the resistance = twice the flow.

Voltage vs Current Divider

Property Voltage Divider Current Divider
Configuration Series Parallel
Splits Voltage Current
Bigger R gets More voltage Less current
Formula R₂/(R₁+R₂) R_other/(R₁+R₂)

Where Current Dividers Show Up

  • BJT transistor biasing: Base current is a fraction of emitter current
  • Ammeter shunts: A low-value resistor diverts most current away from the meter
  • Current mirrors: One current "mirrored" to another branch
  • LEDs in parallel: Brightness depends on how current divides

Originally published at https://cliovlsi.github.io/circuit-intuition/articles/current-divider-intuition.html