JOVANA
Library Glossary Getting Started Three Levels Fields How it works Mission
Join the mission
Reference · The Glossary

Every word, made clear.

A plain-language glossary for anyone getting started in code. Every term gets one clear, friendly definition — no jargon to explain the jargon — in English, Simplified and Traditional Chinese. Look one up the moment it trips you.

92
terms · and growing
9
subjects
3
languages · EN / 简 / 繁
2

2FA asks for a second proof of identity on top of your password — usually a short code from your phone. The idea is simple: even if a thief steals your password, they still can't get in, because they don't have the second piece. It's the deadbolt on top of the door lock.

The 'two factors' are deliberately different kinds of thing: something you KNOW (your password) and something you HAVE (your phone, or a code from an app like Google Authenticator). A leaked password is only knowledge — it doesn't put your physical phone in the attacker's hands.

You'll usually meet it as a six-digit code that refreshes every 30 seconds, or a tap-to-approve notification. Slightly more friction for you, hugely more work for an attacker — which is why turning it on is the single best thing you can do for an important account.

Also called2-step verificationmfamulti-factor authentication
3

Imagine trying to wire a whole city when every house has to connect to the edge of town by its own street running across the surface. Eventually the streets, not the houses, fill up the map. A quantum chip hits the same wall: pack qubits onto one flat plane and the control and readout lines all have to reach in from the perimeter, which grows far slower than the area. 3D integration is the move to build upward instead — split the processor across several thin wafers, or tiers, bonded face-to-face, so signals can leave straight down through the stack rather than fighting for room on a single crowded surface.

In practice the qubits, which are fragile and need a clean, low-loss surface, live on one tier. The noisier business of routing — control wiring, ground returns, and readout lines — moves to one or more separate tiers underneath. The tiers are joined with flip-chip bonding, where tiny bumps of indium press two chips together with micron-scale alignment, and signals pass vertically through a tier using a through-silicon via, a metal-filled hole drilled clean through the wafer. The qubit plane gets to stay sparse and quiet while the dense wiring hides on layers below, and each line can break out downward instead of crawling to the chip's edge.

This is one of the more promising answers to the wiring bottleneck, and several groups already run small multi-tier devices — but it is far from a solved problem. Every bond and via is a new place to lose energy or introduce a stray defect that shortens qubit lifetimes, the bonding and alignment must hit micron tolerances across a whole wafer, and yield drops fast as you stack more tiers. 3D integration buys room to grow, not a finished machine, and how many reliable tiers you can really stack is still an open engineering question.

Also called3D integrationvertical integrationmulti-tier stacking3D集成垂直集成立体集成三維堆疊垂直整合立體整合

3D reconstruction is the craft of taking flat pictures — or depth measurements — of a scene or an object and rebuilding it as a full three-dimensional model the computer can hold in its memory. A photograph is flat: it knows that a chair is somewhere up and to the left, but not how far away the seat is, or how the back curves around behind. Reconstruction recovers that missing third dimension, turning a stack of 2D views into a shape you could spin around and look at from any angle, the way a sculptor rebuilds a face from many photographs.

The trick is that any single picture is ambiguous — a small nearby object and a large far one can cast the exact same image — so the computer needs more clues. It gets them by comparing several pictures taken from different spots (the same point looks shifted between views, and that shift reveals depth, just as your two eyes judge distance), or by using a depth sensor that measures distance directly, or by feeding the images to a trained neural network that has learned what real surfaces tend to look like. From these clues it works out where each surface sits in space and stitches them together into one model.

The result is usually stored as a cloud of 3D points, or as a mesh — a skin of tiny triangles draped over the shape — sometimes painted with the original colors so it looks like the real thing. Robots lean on this constantly: a warehouse robot reconstructs the shelf in front of it to know exactly where to reach, a drone rebuilds a building it is inspecting, and a surgical robot reconstructs the inside of the body so it can move without bumping anything. Anywhere a machine must act in a real, solid world, having a 3D model first makes that world graspable.

Also called3D modeling from imagesimage-based 3D modeling三维建模三維建模
5

A 51% attack is what could happen if a single party gains control of more than half of a blockchain's power to add blocks — more than half the mining computation on a proof-of-work chain, or more than half the staked funds on a proof-of-stake chain. With a majority, the attacker can consistently outpace everyone else and bend the chain's history to their advantage. The name marks the tipping point: just past half, the honest majority is no longer the majority.

It is important to understand what such an attacker can and cannot do. They can refuse to include certain transactions, and they can rewrite recent history to reverse their own payments — the classic double-spend, where they spend coins, then secretly build a longer chain in which that spend never happened. What they cannot do is steal coins from other people's wallets or forge signatures, because those are protected by cryptography the attacker's majority does not touch.

The reason large chains are safe is economics, not magic. On a major proof-of-work network, amassing the majority of all mining hardware and electricity would cost an enormous fortune, and succeeding would likely crash the value of the very coin the attacker is spending to attack — so it rarely pays off. On proof-of-stake chains, a majority attacker risks having their entire stake destroyed by slashing. The defense, in both cases, is that honest behavior is simply far cheaper than cheating.

Also called51% attackmajority attack51%攻击51%攻擊多数攻击多數攻擊
6

Six-DoF object pose estimation is the job of working out not just where an object is, but exactly how it is sitting — its full position and its full tilt — from what a sensor sees. Knowing an object is 'over there' is not enough for a robot that has to grab it; the robot needs the complete answer to two questions. Where in space is the object (three numbers: left-right, up-down, near-far)? And which way is it turned (three more numbers: its tilt around each of those directions)? Those six numbers together are the object's pose, and DoF stands for degrees of freedom, the six independent ways a rigid thing can be placed.

Think of picking up a coffee mug off a cluttered desk in the dark. Your hand does not just aim at a blob; without thinking, your brain figures out that the mug is half-turned with its handle facing away and tilted slightly, so your fingers arrive pre-shaped to wrap it. A robot has to compute that same six-number answer deliberately. It compares what the camera or depth sensor shows against a stored model of the object — matching edges, surface points, or learned visual patterns — and solves for the single position and orientation that would make the model line up with the picture.

This matters anywhere a robot must physically engage a specific object rather than just avoid obstacles: a factory arm reaching into a bin of jumbled parts, a household robot setting a fork down the right way, or an augmented-reality system pinning a virtual label onto a real machine. Modern methods often lean on deep learning to recognize objects and guess their pose even when they are partly hidden or oddly lit, then refine that guess against the geometry the sensor actually measured.

Also called6D pose estimationobject pose estimation6D 位姿估计物体姿态估计
A

A* (said 'A-star') is a smarter way to find the shortest route through a network — a map grid, a road graph, the squares of a video-game level — by adding a sense of direction to the patient search of Dijkstra's algorithm. Plain Dijkstra explores outward in all directions equally, like ripples on a pond, with no idea where the goal sits. A* asks one extra question at every step: roughly how much farther is it from here to the goal? Armed with that hint, it leans its search toward the target instead of wasting effort wandering away from it, usually reaching the goal far faster while still finding a genuinely shortest path.

It balances two numbers for each place it considers. The first is the real cost already spent to get there from the start — the same bookkeeping Dijkstra does. The second is an estimate, called a heuristic, of the cost still remaining to the goal; on a grid this is often just the straight-line or city-block distance, which is easy to compute. A* adds these two together and always expands next the place with the smallest total. So it favours places that are both cheap to reach and seem close to the destination, naturally pushing the search in the right direction.

The catch is the estimate must never overstate the true remaining distance — it must be optimistic, never claiming the goal is farther than it really is. As long as the heuristic stays optimistic in this way (the technical word is admissible), A* is guaranteed to return a shortest path, just like Dijkstra, but with far less searching. In fact, if you feed A* a heuristic that always guesses zero, it collapses back into Dijkstra's algorithm — which is why people describe A* as Dijkstra plus a good hint.

Also calledA-starA星算法A星演算法

An accelerometer is a sensor that measures how hard something is being pushed or pulled in a straight line — what physicists call acceleration. A useful way to picture it: imagine a tiny weight hanging on springs inside a box. When the box jerks forward, the weight lags behind and tugs the springs; the sensor measures that tug and reports how strongly, and in which direction, the box is being accelerated. Speed up, brake, or get bumped, and the accelerometer feels it.

There is a clever twist: gravity feels exactly like acceleration to this sensor. Even a perfectly still accelerometer reads a steady upward push of one g, because the ground is constantly holding it up against gravity. That turns out to be wonderfully useful — by sensing which way "down" points, a robot can work out how it is tilted. This is exactly how your phone knows to rotate the screen when you turn it on its side, and how a robot can tell it is leaning before it topples.

Modern accelerometers are MEMS chips — micro-electro-mechanical systems — meaning the springs and weight are etched in silicon so small you would need a microscope to see them, yet they cost pennies and fit on a fingertip. The price of that tininess is noise: the readings jitter, and they cannot tell steady cruising from sitting still, since constant velocity means no extra push. So robots use accelerometers mainly for sensing tilt and sudden jolts, and pair them with other sensors to fill the gaps.

Also called加速规g-sensor

The account model is a way of bookkeeping on a blockchain in which the ledger stores a running balance for each account, and a transaction simply subtracts from the sender's balance and adds to the receiver's. It works almost exactly like a familiar bank statement: there is one number per account, and every payment nudges those numbers up or down. Ethereum is the best-known blockchain built this way, and it is the alternative to the UTXO model that Bitcoin uses.

Because each account is a single mutable balance rather than a pile of discrete coins, transactions are simpler to write and reason about: send ten units, and the sender's number drops by ten while the receiver's rises by ten, with no leftover change to hand back. To stop someone from replaying or reordering payments, each account also carries a steadily increasing counter that numbers its transactions, so they must be processed strictly in sequence. This neat, stateful design fits naturally with smart contracts, which are themselves accounts that hold a balance and a chunk of persistent memory.

The trade-offs are the mirror image of the UTXO approach. The account model is more intuitive and more convenient for programmable applications, but updating shared balances makes transactions harder to verify fully in parallel, and it requires care to keep their ordering unambiguous. Neither model is universally better; they are two coherent answers to the same bookkeeping question, and a blockchain's choice between them shapes how its wallets, fees, and applications are built.

Acids and bases are chemistry's great opposites — two sides of the same coin. The simplest way to tell them apart is a single tiny particle: the proton (a hydrogen ion, H⁺). An acid is a substance that gives protons away; a base is one that grabs them. Lemon juice and vinegar taste sharp because they're loading your tongue with loose protons; soap and baking soda feel slippery — a classic hallmark of bases, which react with the natural oils on your skin.

Put an acid and a base together and something wonderful happens: they cancel each other out, a reaction called neutralization. The donated protons rush into the waiting base, and what's left behind is usually water and a salt. For the common acids and bases around the house that salt is often harmless, but the exact product — and whether it turns out mild, acidic, or basic — depends on which acid and which base met. It's why a spoonful of baking soda settles an acid stomach; and when that same baking soda fizzes and froths, the bubbles are carbon dioxide gas escaping from the bicarbonate, not the bare acid-and-base reaction itself.

We measure how acidic or basic something is on the pH scale, a ruler that usually runs from about 0 to 14. Below 7 is acidic, above 7 is basic, and 7 — pure water — sits right in the middle, though very strong, concentrated acids or bases can spill past either end. One common mix-up: a "strong" acid isn't simply one that's concentrated. Strength is about how eagerly a substance lets its protons go. Stomach acid is fierce yet dilute; a strong acid can be made gentle by watering it down.

Also calledalkalibaseacid酸碱酸碱中和酸鹼酸鹼中和Brønsted–Lowry

Ackermann steering is the geometry that lets a car-like robot turn its front wheels by exactly the right amounts so the whole vehicle rolls smoothly around a curve instead of scrubbing and skidding. Here is the puzzle it solves: when a car turns, the inside front wheel is going around a tighter circle than the outside front wheel, so the two front wheels should not point in the same direction. The inside wheel needs to turn a little sharper than the outside one. Ackermann steering is the clever linkage that makes the inside wheel turn more and the outside wheel turn less, automatically, every time you steer.

When this geometry is right, all four wheels trace circles that share one common center point — the spot the whole car is pivoting around, sitting out to the side somewhere along the line of the rear axle. Picture skaters in a line spinning around one shared center: those near the middle barely move while those at the rim race around a huge arc, yet none of them fights the others. Ackermann steering gives a vehicle that same harmony, so every tire rolls cleanly along its own arc with no wheel being dragged sideways across the road.

This is the steering style of nearly every real car, truck, and bus, and of self-driving cars and many outdoor delivery robots built on car-like chassis. It is smooth, stable at speed, and easy on the tires — but it pays a price the differential drive does not: a car-like robot cannot spin in place, and when its wheels point straight ahead it cannot move sideways at all, only roll forward or back. It always needs room to swing through a curve, which is exactly why parallel parking is a chore.

Also calledAckermann geometrycar-like steering阿克曼几何

An action potential is the brief electrical pulse a neuron fires to send a message. It is all-or-nothing: the cell either produces a full spike or none at all, the way a camera flash either fires fully or doesn't. Each one lasts only about a millisecond.

When a neuron decides to fire, a wave of electrical change races down its long output fiber, the axon, and triggers it to talk to the next cells. Information in the brain is carried mostly in the timing and rate of these spikes — fast bursts versus slow trickles mean different things. The action potential is, in this sense, the brain's basic unit of signaling.

This is ultimately what BCI electrodes are listening for. Up close, an implanted electrode can pick out the spikes of individual neurons. From farther away, on the scalp, no single spike survives; instead the electrode senses the blurred sum of countless neurons firing together, which shows up as field potentials and brainwaves.

Also calledspikenerve impulse动作电位動作電位神经冲动放电

Activity-dependent development is the way a baby brain uses its own electrical chatter to finish wiring itself. When the brain is first being built, genes lay down a rough draft: they send nerve fibers roughly toward the right targets, but they cannot specify every one of the trillions of tiny connections. So the brain takes a shortcut. The neurons start firing little electrical pulses — sometimes spontaneously, sometimes in response to what the eyes, ears, and skin are sensing — and the brain reads that traffic to decide which connections to keep and strengthen, and which to weaken and throw away. In short, the activity of the cells, not just the genetic blueprint, sculpts the final circuit.

The guiding principle is simple: connections that are used together get reinforced, and connections that stay quiet get pruned. Picture a hillside crisscrossed with faint footpaths; the trails that many people actually walk become packed, wide, and permanent, while the unused ones vanish under grass. Real examples are everywhere. In the developing eye, neighboring light-sensing cells tend to fire at nearly the same instant, and the brain uses that synchrony to bundle their wires neatly so the visual map comes out sharp. This is also why early experience matters so much — and why a brief window when a child cannot see, hear, or move normally can leave the matching circuits permanently underbuilt, because the activity that would have tuned them never arrived.

Also calledexperience-dependent wiringactivity-dependent refinement经验依赖性布线經驗依賴性佈線活动依赖性精修活動依賴性精修

An actuation force is the push or twist that a robot's motors and other actuators produce to make the machine move. When you bend your arm, your muscles supply the effort; in a robot, motors play the muscle's role, and the effort they deliver is the actuation force. If the joint slides in a straight line, this effort is a straight push or pull (a force); if the joint rotates, it is a twisting effort (called a torque). Engineers often lump both kinds under one umbrella name, generalized force, so a single word covers every joint whether it slides or spins.

Actuation force matters because nothing in the physical world moves for free: every acceleration, every fight against gravity, friction, or a heavy payload has to be paid for with force from somewhere. The control system's whole job, at the lowest level, is to decide how much actuation force each joint should deliver at each instant so the robot follows the path you want. Ask for too little and the arm sags or lags behind; ask for too much and it overshoots, jerks, or strains its parts. Because real motors can only push so hard, the available actuation force is a hard ceiling that quietly shapes how fast and how strong a robot can be.

Also calledgeneralized forceactuator force/torque广义力

An actuator is the part of a robot that actually moves things. It takes in some form of energy — usually electricity, but sometimes pressurized air or oil — and turns it into controlled mechanical motion: a wheel that spins, an arm that lifts, a gripper that squeezes shut. If sensors are a robot's eyes and the computer is its brain, the actuator is its muscle. Nothing a robot decides to do happens until an actuator carries it out.

The most common kind is the electric motor, which makes a shaft rotate. But "actuator" is a broad word, and the family is large: rotary ones that turn (motors of every flavor — DC, brushless, stepper, servo), and linear ones that push and pull in a straight line (hydraulic and pneumatic cylinders, screw drives, artificial muscles). The key idea is the word "controlled." A firework also turns energy into motion, but you cannot steer it. An actuator is built so a controller can dial its motion up, down, and to a chosen position on demand.

Choosing an actuator is a balancing act among several wants that pull against each other: how much force or twist it can deliver, how fast it moves, how precisely it can be positioned, how much it weighs, how much power it draws, and how much it costs. A heavy industrial arm welding cars needs raw strength; a tiny drone needs lightness and speed; a surgical robot needs delicacy. There is no single best actuator, only the right one for the job.

Also calledactuator (general)驱动器驅動器机器人的肌肉機器人的肌肉

An actuator power and energy budget is the plan that answers two simple questions: how hard can my robot push at any one moment, and how long can it keep going before it runs out? The two are different. Power is the rate of doing work — how much energy a motor uses or delivers each second, measured in watts. Energy is the total store you have to spend, measured in watt-hours, like the size of a fuel tank. A robot can have plenty of energy but too little power (it moves, but feebly), or lots of power but little energy (it sprints hard, then dies in a minute). A good budget makes sure both add up for the job at hand.

Building the budget means adding up demands and matching them to supply. On the demand side you tally what each actuator needs at its worst moment — a leg pushing off, an arm lifting a box — to find the peak power the system might draw all at once, plus the slower, average power it sips over a whole task. On the supply side sit the battery's capacity (how many watt-hours it holds) and how fast it can safely deliver them. Divide energy by average power and you get runtime: a 100-watt-hour battery feeding a robot that averages 50 watts lasts about two hours. Engineers then leave a margin, because cold weather, friction, climbing, and aging batteries all quietly eat into the plan.

Getting this wrong is one of the most common reasons real robots disappoint. Under-budget the power and the robot stalls the first time it meets a hill or a heavy load; under-budget the energy and it dies halfway through its rounds. So designers trade ruthlessly: a lighter robot needs less power to move, smaller motors and gearboxes save weight and waste less, and choosing motions that coast instead of fighting friction stretches every watt-hour further. The power-and-energy budget is where the dream of what a robot should do meets the hard limit of what its batteries and motors can actually afford.

Also calledpower budgetenergy budget功率预算能量預算

Every real motor, valve, or heater has a ceiling: there is a fastest it can spin, a hardest it can push, a hottest it can get. Actuator saturation is what happens when a controller asks for more than that ceiling allows. The controller might compute "drive at 150 percent power," but the motor can only deliver 100 percent, so the extra command simply has no effect. From that moment on, the machine is doing its absolute best, and asking it to push harder changes nothing in the real world.

Integrator wind-up is the nasty side effect that often follows. Many controllers contain an integral term, a running tally that keeps adding up the error (the gap between where you want to be and where you actually are) so that small, stubborn errors eventually get corrected. But while the actuator is pinned at its limit, the error refuses to shrink, so that tally keeps growing and growing — it "winds up" like an over-cranked spring. Later, when the machine finally reaches its target, the controller is sitting on a huge stored-up command and keeps over-driving past the goal, causing a big overshoot and a slow, sloppy recovery. The classic picture is an elevator that, after climbing a long way at full speed, sails right past your floor because its integral term wound up during the climb.

The fix is called anti-wind-up: the moment the controller notices the actuator has hit its limit, it stops piling onto the integral tally (or quietly bleeds it back down) until the command falls within reach again. Cheap to add and easy to forget, anti-wind-up is one of those small touches that separates a jerky, overshooting machine from a smooth, well-behaved one.

Also calledsaturationintegral windupreset windup饱和积分饱和飽和積分飽和
See alsoPID control

Adaptive control is a robot's ability to retune its own controller on the fly, as it runs, when it discovers that the world is not quite what it expected. Most controllers are set up once with fixed numbers based on an assumed model of the robot — how heavy its arm is, how much friction sits in its joints. But the real robot might pick up a heavier tool, run a motor warm, or wear down over months. Instead of failing or needing a human to re-tune it, an adaptive controller watches how it is actually doing and quietly adjusts its own settings until performance comes back.

The way it works is a constant feedback loop on top of the normal control loop. The controller compares what it expected the robot to do with what the robot actually did. If the arm keeps drooping lower than commanded, the controller infers 'I must be underestimating the load' and increases the right internal parameter; the droop shrinks; it nudges again; and so the estimate creeps toward the truth. Over a little time the controller's idea of the robot lines up with the real robot, and the errors fade away on their own.

This is exactly what you do learning to lift an unfamiliar box: your first lift overshoots or undershoots because you guessed the weight wrong, but within a heave or two your muscles recalibrate. Adaptive control gives robots that same self-correcting knack, which is why it shows up wherever the load or the dynamics keep changing — arms that grasp objects of unknown weight, aircraft that burn off fuel and grow lighter mid-flight, or aging machines that must keep working as their parts drift.

Also calledself-tuning control自整定控制自整定控制

Adeno-associated virus, or AAV, is a small, mild virus that has become the favourite delivery vehicle for gene therapy. On its own it causes no known disease in people, which makes it a gentle, low-drama courier. Think of it as a reliable compact delivery van: it does not carry much, but it shows up quietly, gets into a lot of useful places, and rarely makes a scene.

Engineers empty the AAV shell and pack a therapeutic gene inside. Once injected, the AAV finds its way into cells and releases the gene, which usually settles beside the cell's own DNA and keeps producing its protein for a long time, especially in cells that divide slowly like those in muscle, liver, eye, or nerve. Its small cargo hold is the catch: big genes simply will not fit.

AAV sits behind several approved gene therapies, which is why it is called the workhorse vector. Its main limits are that tiny cargo space and the fact that many people already carry immune memory against it from natural exposure, which can blunt a dose or rule out giving the same vector twice.

Also calledAAV腺相关病毒腺相關病毒

Adenosine is a small molecule that slowly piles up in your brain the whole time you are awake, and the more of it there is, the sleepier you feel. Think of it like sand trickling into an hourglass: every hour you stay up, a bit more collects, and the rising heap is your brain's way of keeping a running tally of how long it has been since you last rested. Scientists call this growing pressure to sleep the 'sleep drive,' and adenosine is one of the main signals that carry it.

Adenosine builds up partly as a leftover of the brain's busy work. Brain cells run on a fuel molecule called ATP, and as they spend that fuel to think, fire, and stay alert, adenosine is released as a by-product. It then settles onto special docking spots called receptors on certain neurons, where it acts like a brake: it quiets the wide-awake, arousal-promoting circuits and tips the brain toward drowsiness. Once you fall asleep, the brain clears the adenosine away, the hourglass empties, and you wake refreshed with the pressure reset.

This is exactly where caffeine comes in. Caffeine has a shape so similar to adenosine that it can slip into the very same receptors and plug them up, like a key that fits the lock but won't turn it. The adenosine is still there and still rising, but with its docking spots blocked it can no longer apply the brake, so you feel more awake. The catch is that nothing has actually drained the hourglass: when the caffeine wears off, all that accumulated adenosine floods the now-open receptors at once, which is part of why a 'caffeine crash' can leave you suddenly exhausted.

Also calledsleep pressureadenosine sleep drive睡眠压力睡眠壓力腺苷睡眠驱力腺苷睡眠驅力

ADHD, short for attention-deficit/hyperactivity disorder, is a condition of the developing brain in which a person has lasting trouble holding their attention, sitting still, or waiting before they act — to a degree that gets in the way of everyday life. Almost everyone gets distracted, fidgets, or blurts something out now and then; with ADHD these tendencies are much stronger and steadier, showing up across many settings like home, school, and work, and they usually begin in childhood. It is not a sign of low intelligence or bad parenting. Picture a radio that keeps drifting off the station you chose and picking up whatever signal is loudest at that moment: the person can focus, but their attention is hard to point and hold where they want it.

The pattern shows up in three overlapping ways. Inattention means losing the thread — drifting off mid-task, missing small details, misplacing things, and struggling to finish work that feels boring even when one truly wants to. Hyperactivity means a body that is restless and overcharged — squirming, tapping, pacing, or feeling driven as if by a motor, which in adults often softens into an inner sense of restlessness rather than visible movement. Impulsivity means acting before the brake comes on — interrupting, blurting answers, or making snap decisions. A person may lean toward one cluster or show a mix of all three.

Researchers think ADHD grows out of differences in how the brain manages attention, motivation, and self-control — circuits that lean heavily on chemical messengers called dopamine and norepinephrine, which help the brain flag what matters and hold a plan in mind. These networks tend to mature more slowly and work a little differently, which is partly why some people grow steadier with age. ADHD often runs in families, and it has nothing to do with laziness or willpower. With understanding, supportive routines and structure, and treatments such as behavioral strategies and medication, many people learn to work with their wiring and do well.

Also calledADHDattention deficit disorderADD注意力缺陷多动症多动症注意力不足過動症過動症

Admittance control is the mirror image of impedance control: instead of taking a desired position and producing a yielding force, it takes a measured force and produces a commanded motion. The robot carries a force sensor that feels how hard the world is pushing on it; the controller reads that push and decides how far and how fast to move in response, as if the robot were a virtual spring-and-damper being pressed by hand. So when you lean on the robot, it senses your shove and glides away by an amount you have programmed — heavy pushes giving bigger motions, light touches giving small ones.

Why have two flavours that aim for the same soft, contact-friendly feel? It comes down to the robot's hardware. A naturally stiff, geared, position-controlled industrial arm cannot easily be made to gently 'give' on its own, but it is excellent at going precisely where commanded — so you bolt a force sensor to its wrist, read the contact force, and turn it into a position command: that is admittance control. A lightweight, backdrivable arm that already moves freely is better suited to the opposite approach (impedance control). Admittance control thus lets a rigid, accurate machine fake the softness it cannot achieve mechanically.

The trade-off is that this scheme leans entirely on its force sensor and on closing the loop fast enough; in very stiff contact it can become twitchy or unstable, because a tiny extra push reads as a large force and triggers a large move. Tuning the virtual mass, stiffness, and damping is the art of keeping it smooth and safe.

Also called位置型柔顺控制位置型柔順控制

Adolescent brain maturation is the long, uneven remodeling the brain goes through during the teenage years, on its way from a child's brain to an adult's. The key surprise is that it does not all finish at once. By the early teens the parts of the brain that handle emotion and the thrill of rewards are already running at full strength, but the part that handles calm judgment, planning, and putting on the brakes — the prefrontal cortex, just behind the forehead — keeps maturing well into the mid-twenties. So for several years a teenager is driving a car with a very responsive gas pedal and brakes that are still being installed.

Underneath, two slow building projects are going on. First, the brain trims away connections it does not use much and strengthens the ones it does, a tidying-up called synaptic pruning that sharpens its wiring. Second, it wraps its long-distance cables in a fatty insulation called myelin, which lets signals travel faster and lets distant regions talk to each other smoothly. This insulating reaches the deep emotion-and-reward circuits earlier than it reaches the front of the brain, which is one reason the two systems mature out of step. The mismatch is normal, not a defect: the same plasticity that makes teenagers impulsive also makes them quick to learn, eager to explore, and able to adapt to the adult world they are about to enter.

This uneven timing helps explain a lot of familiar teenage behavior — strong sensitivity to peers and praise, a taste for risk and novelty, intense feelings — without treating any of it as a flaw. It also has practical weight: it shapes debates about driving ages, criminal responsibility, and why this window is both a time of great opportunity for learning and a time of raised vulnerability to stress, addiction, and the first appearance of many mental-health conditions.

Also calledteenage brain developmentadolescent neurodevelopment青少年大脑发育青少年大腦發育

An ADR — Architecture Decision Record — is a short document that records one important technical decision and, just as importantly, WHY it was made. Months later, when someone asks 'why on earth did we build it this way?', the answer is already written down.

Each ADR is small and follows the same shape: the Context (the situation that forced a choice), the Decision (what we chose), the Rationale (why), the Alternatives we considered, and the Consequences (what we gain and what we now live with).

You keep them as plain markdown files in the project, numbered in order (0001, 0002…), so the team's reasoning grows into a readable history rather than vanishing into someone's memory.

Also calledarchitecture decision recorddecision logdecision record

Adult neurogenesis is the making of brand-new neurons — the brain's signaling cells — inside a brain that has already grown up. For a long time scientists assumed you were born with every neuron you would ever have, and that the adult brain could only lose cells, never add them. We now know that is not the whole story: in certain small corners of the mature brain, a reserve of unspecialized parent cells called neural stem cells keeps quietly dividing, and some of their offspring grow into working neurons that wire themselves into the existing circuits.

It does not happen everywhere, and it is not a flood. The clearest site in humans is a sliver of the hippocampus, the seahorse-shaped structure deep in the brain that helps build new memories; many other mammals also make fresh neurons in a region feeding the smell system. Think of it less like rebuilding a whole house and more like a gardener tucking a few new seedlings into one well-tended flower bed. Each newborn cell must survive a risky early stretch, sprout connections, and prove useful, or it is pruned away — only a fraction make it.

Why it matters: these late-arriving neurons are thought to help the hippocampus keep similar experiences from blurring together and to support learning, mood, and flexible memory. Their numbers tend to fall with age and with chronic stress, and rise with exercise and rich, engaging surroundings, which is part of why researchers study them as a possible foothold for keeping the aging brain sharp and for repairing it after injury or disease. Just how much of this carries over to the adult human brain is still actively debated.

Also calledbirth of new neurons in the adult brainadult-born neurons成体神经新生成體神經新生

Adult stem cells are the stem cells that already live inside the tissues of a grown body, quietly maintaining and repairing the place they call home. Unlike embryonic stem cells, they are not harvested from an embryo — they are tissue-resident, found in marrow, skin, gut, muscle, and many other organs throughout life. Picture each tissue keeping its own small in-house repair crew on permanent standby, ready to patch wear and tear without outside help.

These cells are usually multipotent rather than pluripotent: each kind is tuned to its own tissue and can produce the related cell types of that tissue, but not the body's full range. A blood-forming stem cell makes the various blood cells; a skin stem cell renews skin. They tend to divide slowly and only when needed, spending much of their time at rest. This restraint is a feature — it conserves the reserve and limits the risk of errors creeping in.

Adult stem cells matter because they are the everyday engine of natural healing and turnover, and because they can sometimes be collected from a patient's own body, which sidesteps the ethical questions surrounding embryos and lowers the chance of immune rejection. Their limitation is their narrower range and the difficulty of growing them in large numbers, which is why their proven medical uses, though real, remain more modest than the headlines often suggest.

Also calledtissue stem cellsomatic stem cell成体干细胞成體幹細胞

For fifty years the way to a faster, cheaper chip was to shrink the transistors and cram more onto one slab of silicon. That escalator is slowing: the wires between transistors now choke speed, a single die can only grow so big before yield collapses, and memory can't feed a processor fast enough. Advanced packaging is the answer to all three at once. Instead of betting everything on one ever-bigger, ever-finer monolithic die, you build the system out of several dies and wire them together so tightly inside the package that they behave almost like one chip. The package stops being a passive plastic box that just protects the silicon and routes a few pins, and becomes an active part of the design — which is why people call it the new scaling.

Advanced packaging is really an umbrella over a family of tricks for connecting dies in very short, very dense paths. In 2.5D, you set several dies side by side on top of an interposer — a slab of silicon (or organic substrate) acting as a high-density circuit board whose ultra-fine wires link the dies far more tightly than a normal motherboard ever could; this is how a processor sits next to its HBM memory stacks. In 3D, you go vertical, stacking dies on top of each other and tunnelling signals straight up through them with through-silicon vias, or fusing two dies copper-pad-to-copper-pad with hybrid bonding for connections finer than any solder bump. Shorter links mean less delay, less energy per bit, and enormously more bandwidth between the pieces.

The payoff is both performance and cost. Splitting a chip into smaller dies (chiplets) lets you test each one before assembly and throw away only the bad ones, rescuing the yield a giant monolithic die would have squandered — and it lets you mix process nodes, putting the logic on a cutting-edge node while memory or analog stays on a cheaper, more suitable one. Packaging has become so central that the most advanced AI accelerators are defined as much by their interposer, their HBM stacks, and their bonding pitch as by the transistors inside — the integration scheme is now a first-class part of the chip's competitiveness, not an afterthought.

Also called2.5D/3D packagingheterogeneous packagingsystem-in-packageSiP

Affective valence and arousal are two simple yardsticks that scientists use to map any feeling. Valence asks: does this feel good or bad? It runs from pleasant (joy, comfort, delight) at one end to unpleasant (fear, disgust, sadness) at the other, with a neutral middle. Arousal asks a separate question: how worked up are you? It runs from calm and sleepy at one end to wide-awake and revved-up at the other. Picture a flat map with two roads crossing at right angles — pleasantness goes left-to-right, intensity goes bottom-to-top — and almost any emotion you can name finds a spot on it. Excitement sits in the pleasant-and-high-energy corner; serene contentment in the pleasant-and-low-energy corner; rage in the unpleasant-and-high-energy corner; gloom in the unpleasant-and-low-energy corner.

Splitting emotion into these two dials matters because the brain seems to treat them somewhat separately. Roughly speaking, circuits tied to reward and threat help set valence — telling you to approach what feels good and avoid what feels bad — while systems that ramp the body up, such as the release of stress chemicals and a faster heartbeat, track arousal and prepare you to act. The same bodily buzz of high arousal can ride along with very different feelings: your heart pounds both on a first date and during a near-miss in traffic, and it is valence that decides whether you call the moment thrilling or terrifying. Because just two numbers can place a feeling, researchers use the valence-and-arousal grid to compare emotions across people, label faces and music, and study mood disorders, where one dial often gets stuck — depression dragging valence down, anxiety pushing arousal up.

Also calledthe two dimensions of emotioncore affect效价与唤醒效價與喚醒核心情感

Afferent and efferent pathways are the two directions in which nerve signals travel, named for which way they point relative to the central command center — your brain and spinal cord. Afferent means carrying inward, toward the center: these are the lines that bring in news from your eyes, ears, skin, and inner organs, the sensory reports about what is happening to you and around you. Efferent means carrying outward, away from the center: these are the lines that send orders back out to your muscles and glands, telling them to move, squeeze, or release. A simple memory trick: Afferent Arrives, Efferent Exits.

Picture the central nervous system as the headquarters of a large company. Afferent pathways are the incoming mail and phone calls — every observation and complaint flowing in from the field. Efferent pathways are the outgoing instructions — the memos and commands dispatched to the workers who actually do something. When you touch a hot stove, an afferent signal races inward to report the burn, and within a fraction of a second an efferent signal races outward to yank your hand away. Neither direction is useful alone; sensing without acting is helpless, and acting without sensing is blind.

This in-and-out split is one of the most basic organizing ideas in the whole nervous system, and it repeats at every scale. A single reflex loop uses one afferent leg and one efferent leg. Whole nerves are often labeled by their dominant direction, and even individual nerve fibers are classed as sensory (afferent) or motor (efferent). Keeping the two directions straight is the first step to understanding how the body turns what it feels into what it does.

Also calledsensory vs motor pathwaysinput vs output pathways传入神经与传出神经傳入神經與傳出神經感觉与运动通路

The aging brain is the brain as it slowly changes over the decades of a healthy adult life — not from any disease, but simply from getting older. Like a well-used pair of shoes, it keeps working but shows wear: it gets a little smaller, some signals travel a touch slower, and tasks that once felt instant — recalling a name, juggling several things at once — may take a beat longer. Most of this is normal, and many older brains stay sharp and capable for a very long time.

Under the hood, several gentle shifts add up. The brain gradually loses some volume, especially in regions tied to memory and planning, such as the hippocampus (a seahorse-shaped memory hub) and the prefrontal cortex (the forehead region that handles focus and decisions). The protective fatty wrapping around nerve fibers, called myelin, thins in places, so messages between brain areas pass a bit less briskly. Blood flow drops slightly, and the brain clears waste proteins less efficiently. At the same time, the brain compensates — recruiting extra regions or leaning on a lifetime of accumulated knowledge — which is why wisdom, vocabulary, and judgment often hold steady or even improve with age.

Why it matters: knowing what is ordinary aging helps separate it from warning signs of disease. Forgetting where you parked is typical; forgetting that you drove at all is not. Habits that keep the body healthy — regular exercise, good sleep, social connection, and mental engagement — also help the aging brain stay resilient, a relationship scientists call cognitive reserve.

Also calledbrain aging脑老化腦老化normal cognitive aging

Agricultural robotics is the use of robots to grow and harvest food — machines that plant seeds, pull weeds, pick fruit, and tend crops out in open fields, orchards, and greenhouses. Unlike a factory, a farm is a messy, unpredictable place: the ground is uneven, the weather changes, plants grow in slightly different shapes every time, and a tomato that is ripe today was green yesterday. A farm robot must cope with all of that outdoors, which makes it one of the harder jobs in robotics.

These field robots take many forms — a slow rover crawling between crop rows, an arm on wheels reaching into a bush, or a drone flying overhead — but they share a common difficulty: the world refuses to hold still. There are no painted lines to follow, the lighting swings from glare to shadow, dust and mud foul the sensors, and the robot must tell a weed from a seedling or a ripe berry from an unripe one using cameras and learned vision. A weeding robot, for instance, must roll down a row, recognize each small green thing as either crop or weed, and zap or pluck only the weeds without harming the food beside them.

The umbrella goal is precision agriculture: instead of treating a whole field the same — spraying every square meter, watering everywhere equally — robots and sensors act plant by plant, giving each one exactly the water, fertilizer, or attention it needs and nothing more. The payoff is less chemical use, less waste, higher yield, and relief from back-breaking, hard-to-staff labor like stoop harvesting. The reason it is still mostly emerging rather than everywhere is that handling soft, delicate, ever-varying living things gently and reliably in rough outdoor terrain remains genuinely hard.

Also calledagbotsfield robotics农田机器人農田機器人

An airbridge is a tiny free-standing metal arch on a quantum chip: a strip of superconductor that lifts up off the surface, hops clean over the wires beneath it, and lands again on the other side, with nothing but vacuum in the gap underneath. Picture a footbridge over a road. It looks like a fussy little detail, but airbridges do a quietly essential job. Without them the large metal ground regions of the chip get sliced into separate islands by all the signal lines running between them, and those islands start to misbehave.

The problem they cure is that when a control line cuts across a ground plane, the two halves of the ground are no longer firmly tied together. They can drift to slightly different voltages and host an unwanted ringing mode along the slot between them, called a slotline mode, which steals energy and lets one qubit's signal leak into another as crosstalk. An airbridge is the stitch: it carries the ground from one side, arches over the offending line without touching it, and reconnects to the ground on the far side, so the whole ground stays at one potential and the slot mode is shorted out. The same trick lets a wire cross another wire without a short. Fabrication is delicate, you pattern a sacrificial scaffold of resist, evaporate or plate the metal bridge over its rounded top, then dissolve the scaffold away so the bridge is left spanning empty space.

The honest catch is that an airbridge is a small structure carrying current right next to the qubits, so a poorly made one can add its own loss or trap stray magnetic flux and shorten coherence. The metal must stay superconducting across the arch, the landing pads must bond cleanly, and the spans cannot sag or collapse, all repeated thousands of times across a wafer without a single failure. So airbridges are routine but not free: they are a real fabrication step that has to be tuned alongside everything else, not a magic fix you sprinkle on at the end.

Also calledair-bridge crossovercrossover气桥氣橋

An algorithm is a precise, step-by-step recipe for solving a problem or getting a result. Before your code does anything, there's a plan behind it — the exact sequence of steps that turns the input you have into the answer you want. The algorithm is that plan; the code is just one way of writing it down.

A good way to feel it: a cooking recipe is an algorithm. Take these ingredients, do these steps in this order, and you reliably get the dish. So are the directions to a friend's house. What makes it an algorithm rather than a vague idea is the precision — no step left to guesswork, each one clear enough that a machine could follow it.

The same problem can have many algorithms, and they're not equally good. Sorting a list of names can be done a dozen ways; some finish in a blink, others crawl on a long list. So choosing the right algorithm — fast enough, simple enough, correct in every case — is a real part of the craft, separate from the typing of code itself.

Also calledproceduremethod

The all-or-none principle says that a neuron's electrical pulse, called an action potential, either fires completely or does not fire at all — there is no in-between. Think of it like a camera flash: pressing the button halfway does nothing, but once you press hard enough, the flash goes off at full brightness every single time. A weak nudge to the cell produces no signal; a strong enough nudge produces a full one. There is no such thing as a half-sized spike.

This works because of a threshold, a kind of trigger point. As long as the push on the cell stays below threshold, nothing happens. The instant the push crosses threshold, a self-reinforcing chain reaction sweeps through the membrane and produces a spike of fixed size and shape, no matter how far past threshold the trigger was. So a neuron cannot say 'how strong' a signal is by making bigger spikes. Instead, it reports strength by firing faster — more spikes per second — and by how many neurons join in. This keeps signals crisp and reliable as they travel long distances, because every spike is regenerated at full strength and never fades along the way.

Also calledall-or-nothing law全或无定律全或無定律

An allogeneic cell comes from a donor — a different person from the one who will receive it. The word means 'other', and that captures both its strength and its catch. Because the cells are made from one donor's supply, a single batch can be expanded and frozen into many ready-to-use doses, giving an 'off-the-shelf' product that can be handed out on demand, like a standard medicine rather than a custom order.

The making is straightforward in principle: a lab collects cells from a carefully screened donor, grows large quantities, processes them, and stores them frozen until a patient needs treatment. This scalability is the big draw — no waiting weeks to grow each patient's own cells, and a far lower cost per dose. It is the difference between buying a coat in your size off a rack and tailoring one from scratch.

The price of that convenience is the immune system. Because donor cells carry someone else's identity markers, the recipient's body may recognise them as foreign and attack them — the same rejection problem seen in organ transplants. Researchers try to dodge this by gene-editing the cells to be less visible to the immune system, but managing rejection remains the central challenge that autologous, self-derived cells avoid.

Also called异体细胞異體細胞同种异体细胞allogeneic

Allostasis means staying stable by changing — your body keeps you healthy not by holding everything perfectly still, but by actively adjusting on the fly to meet whatever the moment demands. Think of a skilled driver keeping a car at a steady speed on a hilly road: going uphill they press harder on the gas, going downhill they ease off and brake. The speed stays roughly constant, but only because the driver is constantly making changes. In the same way, your brain reads the situation — a looming deadline, a cold morning, a sudden scare — and tells the rest of the body to raise blood pressure, release energy, or pump out stress hormones, then dial all of that back down once the challenge has passed. The brain is the conductor here, predicting what you'll need and rallying the heart, the immune system, and the glands before trouble even arrives.

Allostatic load is the bill that comes due when this adjusting never stops. Each burst of stress is meant to be brief — flare up, then settle. But under chronic strain — money worries, a hostile workplace, broken sleep, loneliness that grinds on for months or years — the system stays switched on, or fails to switch fully off, or fires when it isn't needed. The very chemicals that protect you in the short term, like the stress hormone cortisol, begin to harm you when they linger: they wear on blood vessels, blunt the immune system, disturb sleep and appetite, and reshape brain regions for memory and emotion. That accumulated wear and tear is the allostatic load.

This idea reframes stress for everyday life. It explains why ongoing hardship — not just dramatic single events — can quietly raise the risk of heart disease, diabetes, depression, and memory trouble, and why the toll falls hardest on people facing relentless adversity with little chance to recover. It also points to what helps: anything that lets the body return to calm — restful sleep, exercise, supportive relationships, a sense of control — gives the system the off-switch it needs and keeps the load from piling up.

Also calledstability through changewear and tear of stress适应稳态適應穩態

An alpha motor neuron is a large nerve cell — one of the biggest in your body — that acts as the final messenger telling your skeletal muscles to contract. Skeletal muscles are the ones you move on purpose: the muscles that bend your arm, kick a ball, or shape your lips into a smile. Wherever a movement command comes from — your brain deciding to wave, or a reflex circuit in your spinal cord jerking your hand off a hot stove — it all has to funnel through these neurons to reach the muscle. For this reason they are nicknamed the 'final common pathway': the last cell in the chain before muscle, the single door every order must pass through to become actual motion.

Each alpha motor neuron lives in the spinal cord (or in the brainstem, for face and neck muscles) and stretches a long, fast wire called an axon out to the muscle. There it splits into many endings that hook onto individual muscle fibers — the tiny threads that make up a muscle. One alpha motor neuron plus all the fibers it grabs is called a 'motor unit', and when the neuron fires an electrical pulse, every fiber in its unit squeezes together at once. Small, delicate units (like those moving your eye or fingertips) let just a handful of fibers, giving fine control; big, powerful units (like those in your thigh) command hundreds, giving raw strength. By firing faster, or by switching on more motor units, your nervous system dials a muscle's effort smoothly from a gentle touch to a full heave.

Because every movement depends on them, alpha motor neurons are a weak point: if they are damaged or die, the muscle they served goes limp and wastes away even though the brain's wish to move is perfectly intact — the order simply has no messenger left to deliver it. This is exactly what happens in diseases such as polio and ALS (amyotrophic lateral sclerosis), which attack these cells and leave the muscles they once drove unable to respond.

Also calledlower motor neuronalpha motoneuronα-MN下运动神经元下運動神經元

The alpha rhythm is a steady electrical pulsing of the brain that beats roughly 8 to 12 times per second — about as fast as you can flutter your fingers. You can think of it as the cortex (the brain's wrinkled outer layer) humming an idle tune when it is awake but relaxed and not busy with a demanding task. It shows up most strongly when a person sits quietly with their eyes closed, and it tends to fade or shrink the moment they open their eyes, pay close attention, or start working hard on a problem.

This rhythm is one of the easiest brain signals to spot. When the German doctor Hans Berger first recorded human brain waves in the 1920s using electrodes on the scalp (a method called electroencephalography, or EEG, which reads the faint voltage from billions of neurons firing together), the alpha rhythm was the clear, regular wave that jumped out at him. It is strongest over the back of the head, above the visual areas, which is why simply opening or closing the eyes flips it on and off so dramatically. Many scientists now think alpha is not just empty idling but an active 'standby' state — a way the brain quiets down regions it is not using, so attention can be aimed where it is actually needed.

Also calledalpha wavealpha bandBerger rhythmα波α波

Alternating current is electricity that keeps changing its mind about which way to flow. Instead of marching steadily in one direction like a river, the charge sloshes back and forth many times a second — in most homes, 50 or 60 round trips every second. Picture a crowd doing the wave in a stadium: nobody actually travels around the arena, yet the wave of motion races along the seats. AC carries energy the same way, by wiggling charge in place.

The grid uses AC because its voltage is wonderfully easy to change. A transformer — two coils of wire sharing a magnetic field — can step voltage way up for long-distance travel (so less is lost as heat) and back down to a safe level near your house. Direct current (DC), the steady one-way flow, can't pass through a simple transformer like that. So power plants ship AC down the lines, while batteries and the chips inside your phone run on DC.

Also calledACdirect currentDC交流电直流电交流電直流電

Alzheimer's disease is the most common cause of dementia — a slow, progressive brain disease that gradually erodes memory, thinking, and the ability to handle everyday life. It usually begins quietly, often after age 65, with small lapses: forgetting a recent conversation, misplacing things, struggling to find words. Over years it deepens, until a person may no longer recognize loved ones or care for themselves. Imagine a vast library where, year by year, the newest books vanish first and the shelves themselves slowly crumble — that captures the heartbreaking arc of the disease, which is not a normal part of aging but a specific illness that physically damages the brain.

Under the microscope, two abnormal protein clumps mark the disease. Sticky fragments of a protein called amyloid-beta build up between neurons (the brain's signaling cells) into clusters known as plaques, like litter piling up in the gaps of a city. Inside the neurons, a protein called tau — which normally acts as scaffolding that keeps the cell's internal transport tracks straight — twists into tangled knots called neurofibrillary tangles, so the tracks collapse and the cell starves. As plaques and tangles spread, synapses (the tiny junctions where neurons talk) are lost, the brain's immune cells stir up damaging inflammation, and whole regions wither. The damage typically starts in and around the hippocampus, the brain's memory-forming hub, which is why losing recent memories is so often the first sign.

There is no cure yet, but understanding the plaque-and-tangle story has shaped how doctors diagnose and treat it. Most older medicines only ease symptoms for a time by boosting the brain's remaining signaling chemicals, while newer antibody drugs aim to clear amyloid and modestly slow the decline in early stages. Researchers still debate exactly how amyloid, tau, inflammation, and other factors combine to drive the illness, and the search for treatments that truly halt it is one of the great open challenges of neuroscience.

Also calledAlzheimer diseaseAD老年痴呆症失智症(阿尔茨海默型)失智症(阿茲海默型)

Imagine every possible answer to your problem as a slider on a giant mixing board, and the height of each slider is that answer's amplitude. When you finally measure, you don't read the slider directly; the chance of getting a given answer is the square of its slider's height. At the start, all the sliders sit at roughly the same low level, so every answer is about equally (un)likely. Amplitude amplification is a careful, repeated nudge that raises the sliders for the answers you want and lowers the rest, so that by the end a measurement almost always hands you a correct one.

Each round does two things: an oracle marks the good answers (flipping the sign of their amplitude), and then a second step reflects all the amplitudes about their average. Geometrically, the combined move rotates the whole state a little closer to the marked answers each time, like inching a compass needle toward true north. You have to stop at the right moment, though: keep rotating past the target and the amplitude swings back down, so the answer gets less likely again. This is the engine inside Grover's search, where you find a marked item among N candidates in about sqrt(N) steps. That is a real and useful speedup, but a quadratic one, not the dramatic exponential gain that some structured problems (like Shor's factoring) enjoy.

Also calledamplitude amplification technique振幅放大振幅放大技术振幅放大技術

The amygdala is a small, almond-shaped cluster of brain cells tucked deep inside each side of your brain, near the temples. There are two of them, one in each half of the brain. Its job is to act like a fast alarm system: it constantly scans what you see, hear, and feel for anything that might be a threat or strongly matter to you, and it sounds the alarm before you have even consciously thought about it. When you jump at a sudden noise or freeze when you spot a snake-shaped stick, that quick jolt of fear is largely your amygdala at work.

Beyond fear, the amygdala helps tag experiences with emotional meaning, which is why frightening or thrilling moments are often burned into memory far more vividly than ordinary ones. When it flags something as dangerous, it quickly signals other parts of the brain and body to react, speeding up the heart, tensing muscles, and preparing you to fight, flee, or freeze. It works closely with neighboring structures such as the hippocampus, which handles memory, and the prefrontal cortex, which can calm the alarm once it judges the situation to be safe. An overactive or poorly regulated amygdala is linked to anxiety, phobias, and post-traumatic stress.

Also calledamygdaloid body杏仁体杏仁體

Amyotrophic lateral sclerosis, or ALS, is a disease in which the nerve cells that command your muscles slowly die off. These cells, called motor neurons, are like the wiring that carries every order from your brain to your muscles — telling your hand to grip, your legs to walk, your throat to swallow. In ALS, that wiring frays and breaks down a little more each month. The muscles, no longer receiving signals, stop being used, shrink, and grow weak. The name itself describes this: 'amyotrophic' means the muscles waste away from lack of nourishing signals, and 'lateral sclerosis' means the side regions of the spinal cord, where these nerve fibers run, harden and scar as the cells are lost.

ALS is progressive, meaning it keeps advancing — it usually begins with something small, like a weak grip, a stumble, or slurred speech, and over months to a few years spreads to more and more muscles, leading to paralysis (the loss of the ability to move). Crucially, ALS attacks movement but typically spares the senses and, in most people, the thinking mind: someone can become unable to walk, speak, or eventually breathe on their own while still seeing, hearing, feeling, and understanding everything around them. There is no cure yet, but care, breathing support, and a few medicines can ease symptoms and slow the decline. Scientists study ALS hard because it reveals, in stark form, how delicate and irreplaceable motor neurons are, and the hunt for treatments drives much of modern neuroscience.

Also calledLou Gehrig's diseasemotor neuron disease渐冻症漸凍症运动神经元病運動神經元病

An anachronism is something stranded in the wrong slice of time — a detail that simply couldn't have been there. Think of a Roman centurion in a movie glancing at his wristwatch, or a knight in a medieval tale sipping coffee centuries before it reached Europe. The thing exists; it's just landed in the wrong century, like a guest who shows up to the party a hundred years early.

Historians worry about a quieter, sneakier version of the same mistake: judging the past by today's ideas. We reach for words like "nation," "economy," or "privacy" — and forget that people back then didn't carry those concepts in their heads. To assume a medieval peasant thought about freedom the way we do is to dress the past in our own clothes and then act surprised that they fit.

Here's the common misreading: spotting anachronisms is not about scolding the past for being "backward." It's the opposite — a discipline of humility. The goal is to meet people on their own terms, in their own world, rather than measuring them against a yardstick they never owned.

Also calledpresentism当代主义时代倒错時代倒錯anachronistic

An analog-to-digital converter is the doorway from the messy continuous world into the clean world of numbers your digital chip can actually compute on. A microphone, a temperature sensor, a radio antenna — they all speak in smoothly varying voltages, an infinite shade of grey between high and low. An ADC listens to that voltage and hands the processor a number. It does this in two moves. First it samples: like a camera snapping frames, it freezes the voltage at evenly spaced instants instead of watching it forever. Then it quantizes: it rounds each frozen value to the nearest rung on a fixed ladder of levels, because a number can only have so many digits. Sampling chops up time; quantizing chops up amplitude.

Two honest costs come with that convenience. You must sample fast enough — at least twice the highest frequency you care about (the Nyquist rule, fs greater than 2*fmax) — or fast wiggles disguise themselves as slow ones, an error called aliasing that no later math can undo. And rounding to the nearest rung throws away the tiny leftover, which acts like a faint hiss called quantization noise. More bits means a finer ladder and a quieter hiss: for an ideal converter the signal-to-noise ratio is about 6.02*N + 1.76 dB, so each extra bit buys you roughly 6 dB of headroom. That single line is why a 16-bit audio ADC sounds so much cleaner than an 8-bit one.

Which architecture you reach for is a trade between speed, resolution, and power. A flash ADC is the sprinter: it compares the input against every ladder rung at once with a bank of comparators, so it converts in a single tick — blisteringly fast, but the comparator count explodes with bits, so it stays low-resolution and power-hungry (think multi-gigahertz radio and oscilloscope front-ends). A SAR (successive-approximation) ADC plays a binary-search guessing game, pinning down one bit per step; it lands in the comfortable middle — moderate speed, 8 to 18 bits, frugal power — which makes it the workhorse of sensors and microcontrollers. A sigma-delta ADC trades speed for accuracy: it samples far faster than needed and cleverly pushes its quantization noise up out of the band of interest (noise shaping), then filters it away, reaching the highest resolutions (up to ~24 bits) for audio and precision instrumentation.

Also calledADCA/D converterA-to-D converter模数转换器类比数位转换器

Analytic inverse kinematics means solving the backward problem — what joint angles put the hand at the target? — with an exact formula, worked out once with pen-and-paper geometry and algebra. Instead of letting the computer grope toward the answer, you derive a tidy equation (a closed form) into which you plug the desired position and orientation, and out come the joint angles directly. It is the difference between using the quadratic formula to solve an equation in one clean step versus trying numbers over and over until one fits.

Its great virtues are speed and certainty: the answer appears almost instantly, the same target always gives the same result, and the method lists every possible solution at once — for a typical robot arm, a handful of distinct "elbow up / elbow down" type configurations. That makes it the preferred choice for robots that must react in real time, like fast pick-and-place machines on a production line. The catch is that a closed-form solution only exists for arms with cooperative, special geometry. Most classic six-joint industrial arms qualify thanks to a clever design where the last three joint axes meet at a single point (a so-called spherical wrist), which neatly splits the hard problem into an easier position part and an orientation part. Arms without such friendly structure cannot be solved this way and must fall back on the numerical approach.

Also calledclosed-form IKanalytical IK封闭解逆运动学解析法逆解

Anatomical directional terms are a shared compass for talking about the brain and body, so that two scientists always mean the same spot no matter how the head is tilted. Instead of saying "up," "down," "front," or "back" (which change as you move), anatomists use fixed labels. The four you meet most in the brain are rostral (toward the nose, the front end), caudal (toward the tail, the back end), dorsal (toward the back or top), and ventral (toward the belly or bottom). Picture a fish or a four-legged animal lying flat: rostral is its snout, caudal is its tail, dorsal is its spine-side, and ventral is its belly-side.

Planes are the imaginary flat cuts you make to slice the brain open and look inside, and there are three standard ones. The sagittal plane slices from front to back and divides the brain into left and right halves, like cutting a loaf of bread lengthwise down the middle. The coronal plane (also called frontal) slices from ear to ear and divides front from back, like cutting that same loaf into round vertical slices. The horizontal plane (also called axial or transverse) cuts parallel to the ground and separates top from bottom, like slicing the loaf flat into a top piece and a bottom piece.

Together, directions and planes let anyone describe an exact location and viewing angle. A brain scan or microscope slide is almost always presented as one of these three views, so knowing the planes tells you instantly what you are looking at. The terms get a little tricky in humans because we stand upright, which bends the spine's axis: in the human brainstem and spinal cord, "dorsal" points toward the back, while in the forebrain "dorsal" points toward the top of the head. Learning this vocabulary first makes every later brain map far easier to read.

Also calledanatomical directionsplanes of section方位词切面平面方位詞切面平面

Anesthesia is the use of drugs to switch off pain — and sometimes consciousness itself — so that a surgeon can cut, stitch, or set a broken bone without the patient feeling a thing. Think of it as a temporary, carefully controlled pause button on the body's alarm system: the dentist numbs one tooth, or the patient drifts off entirely and wakes up with the whole operation already over.

It comes in two broad flavors. Local anesthesia silences the nerves in just one small area — a numbed gum, a deadened patch of skin — while you stay wide awake. General anesthesia reaches the brain itself, sweeping you into a deep, dreamless unconsciousness for major surgery, with a machine breathing for you and a specialist watching every heartbeat.

It's easy to picture general anesthesia as ordinary sleep, but it isn't — you can't be shaken awake, and your breathing and blood pressure need constant minding. That's exactly why anesthesia is one of the great gifts of modern medicine: before it arrived in the 1840s, surgery meant being held down and enduring every searing second.

Also calledgeneral anesthesialocal anesthesiaanaesthesia麻醉全身麻醉局部麻醉

Anhedonia is the loss or strong dimming of your ability to feel pleasure — the things that used to light you up, like a favorite song, a good meal, a hug, or a hobby, now feel flat, gray, or simply not worth the effort. It is not sadness exactly; many people describe it as an emotional numbness, as if the volume knob on enjoyment has been turned almost all the way down. Imagine eating your most-loved dessert but tasting nothing special, or seeing a friend you adore and feeling no spark of warmth — that hollow gap where delight should be is anhedonia.

Scientists usually split it into two flavors: a fading of pleasure in the moment (you do the fun thing but it does not feel good) and a fading of the wanting and looking-forward-to (you no longer feel pulled toward rewards or motivated to seek them out). Both are linked to the brain's reward circuitry — the network of regions and chemical messengers, especially dopamine, that normally tags experiences as worth pursuing and worth repeating. When that circuitry runs low or signals weakly, the brain stops 'lighting up' for rewards.

Anhedonia is one of the two core symptoms doctors look for when diagnosing major depression, and it also shows up in conditions like schizophrenia, Parkinson's disease, and after long stretches of severe stress. Because it dulls the very motivation a person needs to seek help or do things that aid recovery, clinicians treat it as an important target — and a sign worth taking seriously rather than dismissing as mere laziness or a passing bad mood.

Also calledloss of pleasureinability to feel pleasure失乐症失樂症兴趣减退興趣減退

An antibiotic is a medicine that fights bacteria — the tiny living things behind infections like strep throat, many ear infections, and some wound infections. It works by either killing the bacteria outright or stopping them from multiplying, so your body can mop up the rest.

Here's the catch worth remembering: antibiotics do nothing against viruses. A cold or the flu is caused by a virus, so an antibiotic won't help you feel better one day sooner — it just exposes you to side effects for no gain.

The first one was a happy accident. In 1928, Alexander Fleming noticed a mold had killed bacteria growing in his lab dish; that mold gave us penicillin. But there's a cost to overuse: every time we use antibiotics when we don't need them, the toughest bacteria survive and pass on their resistance — slowly creating infections our drugs can no longer beat.

Also calledantibacterialantibiotics抗菌素

An antibody is a tiny Y-shaped protein your body builds to grab hold of one specific intruder. The two tips of the Y are exquisitely shaped to clamp onto a particular target — a piece of a virus, a bacterium, a speck of pollen — the way a key fits one lock and no other. That target is called the antigen, and a single antibody ignores everything except its own.

Once it latches on, the antibody acts like a flag and a handcuff at the same time. It can smother a virus so it can't break into your cells, clump invaders together into a sticky useless wad, or tag them so the immune system's clean-up crews know exactly what to swallow. Your body can make an astonishing variety of them — billions of different shapes — ready for almost anything it might meet.

Here's the part that protects you for life: after an infection, a few cells keep the winning recipe on file. Meet that same germ again and your body churns out matching antibodies fast, often before you ever feel sick. That memory is exactly what vaccines train. Antibodies are also why a blood transfusion has to match: your plasma carries antibodies aimed at the blood-group markers — the antigens — that your own red cells happen to lack, so the wrong blood gets attacked. A common myth is that antibodies kill germs directly; mostly they don't. They mark and disarm, then hand the target over to the rest of the immune system.

Also calledimmunoglobulinIg免疫球蛋白免疫球蛋白(immunoglobulin)

An antipodal grasp is the simplest reliable way to hold something: press on two opposite sides of the object so that the two contact points face directly toward each other, like two fingertips pinching a card from front and back. The word antipodal means on opposite ends — the same idea as the North and South Poles sitting on exactly opposite sides of the Earth. The straight line joining the two contacts passes cleanly through the object, and both fingers push inward along that line.

This head-on arrangement is what makes the grip work. Because the two pushes point right at each other, they squeeze the object between them and balance out, so the object cannot squirt sideways out of the pinch. As long as each fingertip's push stays within its cone of friction — that is, it does not press at too shallow an angle for the surface to grip — that single squeezing line is enough to lock the object in place. It is the natural target for a parallel-jaw gripper, the common two-plate robot hand whose jaws close straight toward each other and so grip antipodally by design.

Antipodal grasps are popular because they are easy to find and easy to trust. Many grasp planners do little more than search an object's shape for a good pair of facing surfaces — two flat or rounded spots directly across from each other — and place the gripper there. The grip is not fancy, but for boxes, bottles, tools, and countless everyday items, a clean antipodal pinch is all a robot needs to lift and carry them confidently.

Also calledantipodal griptwo-finger pinch grasp对置抓取

An antiseptic is a germ-killer safe enough to apply to living tissue. When a nurse swabs your arm with stinging alcohol before a jab, or you dab iodine on a scraped knee, that's an antiseptic at work — wiping out the invisible bacteria that would otherwise sneak into the wound and start trouble.

This simple idea once saved a revolution's worth of lives. In the 1860s, surgery was terrifyingly deadly: operations often went perfectly, only for the patient to die days later of infection. The British surgeon Joseph Lister, convinced that unseen germs were the culprit, began spraying and washing his wounds and instruments with carbolic acid. His death rate from infection plummeted, and the age of clean, survivable surgery began.

Here's the distinction people often miss: an antiseptic goes on you — skin, wounds, living tissue — while a disinfectant is for things, like a countertop or a scalpel. They may even share the same active chemical, but a disinfectant is usually far too harsh to put on your body. Both fight germs; only one is safe to wear.

Also calledantisepsisskin antiseptic抗菌剂消毒防腐剂防腐劑

Anxiety disorders are a family of mental health conditions in which fear and worry grow so strong, so frequent, or so out of step with the actual situation that they start to wreck everyday life. A jolt of fear is normal and even useful — it is the brain's smoke alarm, meant to make you freeze, run, or pay sharp attention when something threatens you. In an anxiety disorder, that alarm goes off too easily and keeps blaring long after any real danger has passed, like a smoke detector that shrieks every time you make toast. The dread can attach to almost anything: crowds, open spaces, illness, a coming exam, or simply a vague sense that something terrible is about to happen.

Because the fear feels real and urgent, people often start avoiding whatever sets it off — skipping social events, staying home, or steering clear of anything that might trigger a panic attack, a sudden surge of pounding heart, breathlessness, and terror. That avoidance brings short-term relief but quietly shrinks a person's world and makes the anxiety stronger over time. Inside the brain, this seems to involve an overactive amygdala, the almond-shaped alarm center deep in the brain, together with a prefrontal cortex (the reasoning region just behind the forehead) that struggles to calm the alarm back down, often tangled up with stress hormones and imbalances in calming chemical messengers. Anxiety disorders are among the most common conditions in the world, and they respond well to treatment — usually talk therapy, medication, or a mix of both.

Also calledpathological anxiety焦虑症焦慮障礙

Aphasia is the loss or weakening of the ability to use language after the brain is injured — usually after a stroke, a head injury, a tumor, or a slowly progressing disease. A person with aphasia may struggle to find words, scramble them, leave them out, or have trouble understanding what others say, even though their mouth, ears, and intelligence still work fine. Imagine knowing exactly what you want to say but the door between the thought and the words is jammed: the idea is there, yet it cannot get out cleanly.

Language in most people leans on a network of regions in the left side of the brain, and aphasia shows up differently depending on which part is damaged. When the front part (an area linked to Broca) is hurt, speech becomes slow and effortful — short, broken phrases — yet understanding stays fairly good; when a region farther back (linked to Wernicke) is hurt, speech flows easily but the words come out jumbled or empty of meaning, and understanding others becomes hard. Because the damage is to the language machinery and not to the muscles or the mind, many people with aphasia recover some ability with time and speech therapy, and they often understand far more than they can express.

Also calledlanguage disorderloss of language言语障碍言語障礙

An API is an agreed-upon way for two programs to talk to each other. It's a contract: 'here are the requests you're allowed to make, and here's exactly what you'll get back.' You don't need to know how the other program works inside — you just need to know what to ask for and what shape the answer comes in.

The classic picture is a restaurant menu. You don't walk into the kitchen and cook; you read the menu, point at item #4, and a plate comes out. The menu is the API: a fixed list of things you can ask for, hiding all the chopping and frying behind it. The kitchen can rearrange itself completely and your order still works, as long as the menu stays the same.

This is why APIs are everywhere. When a weather app shows you tomorrow's forecast, it didn't measure the sky — it asked a weather service's API and got back a tidy answer. APIs let programs borrow each other's abilities without ever sharing their messy insides.

Also calledinterfacerest apiweb apiapplication programming interface

Approach versus avoidance describes two opposing pulls inside the brain that steer almost everything an animal does: one system urges you to move toward things that seem good — food, a friendly face, a warm fire — while the other urges you to back away from things that seem bad — a snake, a bad smell, an angry stranger. Think of them as a gas pedal and a brake wired into your motivation. At any moment your behavior is the tug-of-war between 'go get it' and 'stay clear of it,' and whichever pull is stronger wins out in what you actually do.

These two drives are not just feelings but separate working systems in the brain, each with its own circuitry. Approach leans heavily on reward-related pathways that release dopamine, a chemical messenger that flags something as worth pursuing and energizes you to chase it. Avoidance leans on threat-related circuits — especially the amygdala, a small almond-shaped structure deep in the brain that acts as an alarm — which trigger caution, fear, and the impulse to freeze or flee. Because the systems are partly independent, a single situation can switch on both at once: a tempting but risky choice lights up the 'approach' and 'avoid' machinery together, and the conflict you feel is those two systems literally pushing in opposite directions.

This framework helps explain why decisions feel hard when something is both attractive and dangerous, like asking someone out or eating a rich dessert while on a diet. Many emotional struggles — anxiety, addiction, procrastination — can be read as one system overpowering the other, with avoidance running too hot in anxiety and approach running too hot in addiction.

Also calledapproach-avoidance motivationapproach and withdrawal趋避动机趨避動機

An array is an ordered list of values that you keep in a single variable. Instead of three separate variables for three names, you put all three in one array and carry them around together — like a row of numbered lockers, each holding one item, all under the same name.

You reach into an array by position, called the index. The catch that trips up every beginner: counting starts at 0, not 1. So the first item is at index 0, the second at index 1, and so on. The first time you ask for 'item 1' and get the second thing, you'll remember this forever.

Because the items sit in order, an array is the natural shape for anything that's a sequence — a to-do list, the days of the week, search results. And it pairs perfectly with a loop: you write one small piece of code and let it walk down the whole array, doing the same thing to each item in turn.

Also calledlistvector

An artifact is non-brain junk that sneaks into a brain recording and masquerades as real signal. The sensors do not only pick up neurons; they also catch electrical activity from elsewhere — and that intruding clutter is the artifact. It is the static on the radio that has nothing to do with the song.

Common culprits are very ordinary: an eye blink sends a big sweep across nearby electrodes, clenched or moving muscles add a buzzing mess, the heartbeat leaves a steady pulse, head or cable movement causes jumps, and the building's power lines hum a constant 50 or 60 cycles per second into everything. Because brain signals are so faint, these intruders are often much larger than the activity you actually want.

Dealing with artifacts is a huge part of practical brain–computer interface work. Engineers design recordings to avoid them, then detect and remove or filter them out afterward, so the genuine neural signal underneath can be read. A system that ignores artifacts will happily mistake a blink or a twitch for a brain command.

Also callednoiseartefact噪声雜訊

Artificial intelligence — AI — is the art of getting machines to do things that normally take human smarts: recognizing a face in a crowd, understanding a spoken question, translating a poem, or steering a car through traffic. The machine isn't conscious and doesn't "understand" the way you do; it's spotting patterns in mountains of examples and acting on them. Think of it less as a robot brain and more as an extraordinarily fast, tireless apprentice that has read more than any human ever could.

The dream is old. In 1950 the mathematician Alan Turing skipped the slippery question "Can machines think?" and proposed a practical test instead: if a machine can hold a conversation so convincingly that you can't tell it from a person, does the difference still matter? That shift — from arguing about thought to measuring behavior — set the tone for the whole field, which was christened "artificial intelligence" at a 1956 summer workshop at Dartmouth.

Here's the part worth getting right: almost everything we call AI today is narrow. A program that plays world-champion chess can't fold your laundry; one that writes fluent essays can't reliably add up a grocery bill. Each system is brilliant in one lane and helpless outside it. The grand goal — a general AI that learns and reasons across any task the way a person can — remains unbuilt, and nobody knows how far off it is. Today's tools are powerful precisely because they're specialized, not because they're secretly minds.

Also calledAImachine intelligence人工智能人工智慧AGI(通用人工智能)artificial general intelligencenarrow AI窄人工智能弱人工智能

The artificial potential field method is a way of steering a robot by pretending the world is a landscape of hills and valleys, and then letting the robot roll downhill. The goal you want to reach is treated like the lowest point of a valley, so it gently pulls the robot toward it, the way a ball rolls to the bottom of a bowl. Every obstacle, meanwhile, is treated like a hilltop that pushes the robot away, the way two magnets with the same pole repel each other. At any spot, the robot simply adds up the pull from the goal and the pushes from nearby obstacles, gets one combined arrow telling it which way is 'downhill', and takes a small step that way.

What makes this method appealing is that it is fast and reactive: the robot does not need to plan a whole route in advance, it just feels the forces around it right now and moves, which lets it dodge things that suddenly appear. The big weakness is that it can get stuck in a 'local minimum' — a little dip in the landscape that is not the goal, like a small hollow partway down a hill where the ball settles and stops. A classic trap is a U-shaped wall: the goal pulls the robot straight in, the walls push back evenly from both sides, and the robot freezes in the pocket, never reaching the goal on the other side. Because of this, the basic method is often combined with smarter planners or extra tricks to escape these traps.

Also calledpotential field methodAPF势场法

The ascending arousal system is the brain's wake-up network — a set of pathways rising from the deep core of the brain that keep the thinking part of your mind switched on, alert, and ready to register the world. Picture the large wrinkled outer sheet of the brain (the cortex, where seeing, thinking, and deciding happen) as a vast hall full of lights. On its own that hall would sit dim and idle; the ascending arousal system is the electrician downstairs who keeps flipping the switches so the lights blaze. When this network is firing, you are awake and aware. When it quiets down, the lights dim and you drift toward drowsiness and sleep.

The switches live mostly in two regions tucked low in the brain: the brainstem, the stalk that connects the brain to the spinal cord, and the hypothalamus, a small control hub just above it. Clusters of cells there release chemical messengers — acetylcholine, norepinephrine, serotonin, dopamine, histamine, and a wake-promoting signal called orexin — that travel upward along two main routes. One route runs through the thalamus, the brain's relay station, helping it pass sensory information cleanly to the cortex; the other spreads more widely to bathe the cortex directly. Together these signals raise the cortex's background excitability, the way warming up an engine lets it respond instantly when you press the pedal.

This system matters because consciousness depends on it. During healthy sleep the network deliberately powers down, allowing the brain to rest, and a daily clock in the hypothalamus times when it should ramp back up at dawn. When the pathways are damaged — by a stroke, a tumor, or a deep brain injury — a person can fall into a coma even if the cortex itself is intact, because the lights have no one left to switch them on. Understanding this network also explains how stimulants, anesthetics, and many sleep medicines work: they nudge these same arousal switches up or down.

Also calledascending reticular activating systemARASwake-promoting system上行网状激活系统上行網狀激活系統觉醒系统覺醒系統

Picture a smoke detector wired into your design. You state a rule once — "this alarm must never go off" or "every request must get an answer within three clock ticks" — and from then on a little watcher sits there, eyes open, checking that rule on every cycle. The moment reality breaks the rule, it shrieks and points right at the spot. An assertion is exactly that: a check baked into the design that fires the instant a stated property is violated, so instead of staring at thousands of waveform cycles wondering where things went wrong, the simulator drops you at the exact time and signal where the rule first broke.

More precisely, an assertion is a statement of intent about how your hardware must behave, written so a tool can watch it continuously. The most common flavour, SystemVerilog Assertions (SVA), comes in two styles. An immediate assertion checks a plain condition at one moment in procedural code, like a guard clause. A concurrent assertion describes a relationship that unfolds over time against a clock — "if grant goes high, then within two cycles busy must follow" — and it is evaluated on every clock edge, sampling its signals just before the edge so it reads stable values rather than racing them. Because the rule lives right next to the RTL, it documents the designer's assumptions in a form that can never silently drift out of date: if the design stops honouring the assumption, the assertion fails.

The payoff is twofold. In simulation, assertions turn silent, far-downstream corruption into a loud failure caught at the source — the difference between "the output was wrong" and "the bug is here, on this signal, at this cycle." And because they are precise mathematical statements of intent, the very same assertions can be handed to a formal tool that tries to prove them true for all legal inputs, not just the stimulus your testbench happened to try. Coverage tools can also track how often each assertion's interesting cases were actually exercised, so you learn not just that nothing broke, but whether you ever really tested the rule at all.

Also calledSystemVerilog AssertionsSVAimmediate assertionconcurrent assertion断言斷言

Assistive and rehabilitation robotics is the use of robots to help people move, recover, and manage daily life when their bodies cannot do it alone. The two words point at slightly different goals. Assistive robots stand in for or support an ability the person may not regain — a powered wheelchair, a robotic arm on a prosthetic limb, a feeding aid for someone who cannot lift a spoon. Rehabilitation robots are more like tireless coaches: they guide a recovering patient through exercise again and again to help the body relearn a lost skill, such as walking after a stroke.

The signature machines here are exoskeletons, prosthetics, and therapy robots. An exoskeleton is a wearable robotic frame, strapped over the legs or body, that adds strength or holds a person upright so they can stand and step. A robotic prosthetic is an artificial limb with motors and sensors that reads the body's signals and moves more like the real thing. A therapy robot is a device that takes hold of a weak arm or leg and guides it through precise, repeated motions — far more repetitions, and more consistent ones, than a tired human therapist could provide by hand.

What makes this field special is its gentleness. Unlike a factory arm that must be strong and fast, these robots wrap around fragile, sometimes painful human bodies, so they are built to be soft, compliant, and quick to yield rather than push. They also lean heavily on the brain and nerves: many read muscle or nerve signals to sense what the person is trying to do, and good rehabilitation gives just enough help — never so much that the patient stops trying, since the effort itself is part of how the body heals.

Also calledassistive robotics辅助机器人輔助機器人rehab robotics

Associative learning is how a brain figures out that two things tend to go together, and then starts treating one as a clue about the other. If a sound keeps coming right before dinner, you eventually expect food the moment you hear it. If pressing a certain button always turns on the light, you learn to press it on purpose. In both cases nothing was memorized like a fact — instead, repeated experience quietly built a link between events, so that one now predicts or triggers the other. This kind of learning is everywhere in animals and people, from a dog drooling at the rattle of its leash to a child learning that saying please earns a treat.

Scientists usually split it into two flavors. In classical (Pavlovian) conditioning, you learn that one signal predicts another event you don't control — like a bell predicting food — and your body starts reacting to the signal itself. In operant conditioning, you learn from the consequences of your own actions: behaviors that bring rewards happen more often, and ones that bring unpleasant results fade away. Both work because the brain is constantly tracking what reliably follows what, and strengthens the neural connections that capture those regularities.

Underneath, associative learning is thought to depend on plasticity — lasting changes in the strength of the connections (synapses) between neurons. When two patterns of brain activity fire together repeatedly, the wiring between them tends to tighten, a rough version of the saying neurons that fire together wire together. That physical re-tuning is how a fleeting coincidence in the world gets stored as a stable expectation inside the brain.

Also calledconditioningassociative conditioning关联学习關聯學習

An astrocyte is a star-shaped support cell in the brain and spinal cord, named for the many thin arms that branch out from its body in every direction, like a child's drawing of a star. It is not a neuron (the cell that fires electrical signals), but one of the helper cells called glia, which means glue in Greek. The old idea was that these cells were just packing material holding neurons in place, but we now know astrocytes are busy caretakers, and they are so plentiful that they make up a large share of all the cells in your brain.

Their job is to keep the neighborhood around each neuron in good working order. With their many arms, astrocytes mop up spare potassium and other charged particles, called ions, that build up in the fluid around neurons after the neurons fire, so the next signal can travel cleanly. They also soak up leftover chemical messengers, called neurotransmitters, from the gaps between neurons once a message has been sent, then recycle them and hand the raw materials back. On top of this housekeeping, astrocytes feed neurons: they reach out to nearby blood vessels, take in sugar and other fuel from the blood, and pass energy along to the hard-working neurons next door.

Also calledastrogliastar cell星状胶质细胞星狀膠質細胞

Async is a way of starting something slow — fetching data over the network, reading a big file — and then carrying on with other work instead of standing around waiting. When the slow thing finally finishes, your code circles back to deal with the result.

Think of ordering coffee: you don't freeze at the counter until it's ready. You take a buzzer, go find a seat, and the buzzer goes off when your drink is done. The buzzer is a 'promise' — a placeholder for an answer that hasn't arrived yet. And 'await' is just you choosing to sit and wait for that one buzzer before doing the next thing.

This is why beginners meet promises and await so early: a network call can take half a second, and half a second is an eternity to a computer. Async lets the program stay lively and responsive instead of locking up while it waits.

Also calledasynchronouspromiseasync/awaitnon-blockingcallback

An atmosphere is the blanket of gases that a planet's gravity holds snug against its surface — invisible, but very much there. On Earth it's mostly nitrogen and oxygen, plus a shifting amount of water vapour, thinning out the higher you go until it fades into space. You feel it every time the wind pushes against you or your ears pop in a plane: that's the weight and pressure of the air you live at the bottom of.

This thin skin of air does an astonishing amount of work. It filters out the Sun's most dangerous radiation, burns up incoming meteors, and gives us oxygen to breathe. Its trace gases also trap heat — the greenhouse effect — keeping Earth's average temperature about 33°C warmer than it would otherwise be, enough to stop the whole planet from freezing over. Meanwhile the sheer bulk of the air stores and carries heat around, so days don't scorch and nights don't plunge to lethal cold. Without all this, the surface would swing wildly, and nothing could breathe.

A common mistake is to picture the atmosphere as huge and deep. It isn't. About three-quarters of it sits within roughly 11 kilometres of the ground — the cruising height of an airliner — and 99% lies below about 30 kilometres. Compared to the size of the Earth, it's no thicker than the skin on an apple, which is exactly why it's worth protecting.

Also calledairthe airatmospheric layers气层氣層

An atom is the smallest piece of an element that still counts as that element — the tiniest bit of gold that is still gold, the smallest scrap of oxygen that is still oxygen. Everything you can touch, from this page to your own hand, is built from these grains. They are unimaginably small: a single drop of water holds more atoms (very roughly 5 x 10^21 of them) than there are grains of sand on all of Earth's beaches.

Picture an atom as a tiny solar system, but almost entirely empty. At the center sits a dense core, the nucleus, packed with positively charged protons and neutral neutrons. Whirling around it, far out, is a haze of tiny negative electrons. The number of protons is the atom's identity card: one proton makes hydrogen, six make carbon, seventy-nine make gold — change that number and you change the element itself.

Here is the part that surprises everyone: an atom is mostly nothing at all. If the nucleus were a marble on the floor of a cathedral, the electrons would flit around near the distant walls, with empty space in between. Solid things feel solid not because atoms are packed full, but because their electron clouds push back when they meet. We don't draw the electrons as neat orbiting balls anymore either — they behave more like a blurry cloud of likelihood than tiny planets circling on tracks.

Also calledatomic structure原子结构原子結構

Attachment theory says that the bond a baby forms with its earliest caregivers becomes a kind of inner blueprint for love and trust. A toddler at the playground keeps glancing back at a parent on the bench — venturing out, then checking that home base is still there. That parent is a "secure base": when a child trusts that comfort is reliably available, they feel safe enough to explore the world.

Why it matters: those first experiences quietly shape how we handle closeness for the rest of our lives. The psychiatrist John Bowlby proposed the idea, and Mary Ainsworth studied it empirically with a clever experiment — briefly separating babies from their mothers and watching the reunion. She found patterns: securely attached babies were upset at the parting but soothed quickly on return; insecure ones either clung anxiously or seemed coolly indifferent, masking their distress.

One common misreading is to treat your style as a life sentence — "I'm just the anxious type, end of story." It isn't destiny. Attachment patterns are tendencies, not chains; a later loving relationship, a good friend, or therapy can gently rewrite the blueprint. And it describes leanings on average, never a verdict on any single person.

Also calledattachment stylessecure baseStrange Situation依恋类型安全依恋依戀類型陌生情境實驗Bowlby-Ainsworth

Attention is the brain's way of choosing what to care about. At any moment your senses are flooded with far more than you could ever handle — voices, colors, the feel of your chair, a dozen thoughts. Attention is the spotlight that picks out a few of these and pushes the rest into the background, so you can read this sentence instead of drowning in everything at once. Think of a busy party: the room is full of conversations, but you can lock onto the one friend talking to you and let the rest blur into a hum. That selective tuning, turning some signals up and others down, is attention.

Under the hood, attention is the brain prioritizing certain inputs over others rather than treating them all equally. When you attend to something, networks in the front and side of your brain (especially the prefrontal and parietal areas) act like a control tower, boosting the neurons that handle the chosen target and quieting the ones handling distractions — so the spotlight makes the important signal louder and clearer, not just brighter to you. It comes in two flavors that constantly trade off: voluntary attention, when you deliberately aim your focus (searching a crowd for a face), and automatic attention, when something grabs you whether you like it or not (a sudden flash, your own name across the room). This is why attention matters so much: with limited brainpower, what you attend to is largely what you perceive, remember, and learn — and what you ignore can vanish as if it never happened.

Also calledselective attentionfocus注意力選擇性注意選擇性注意

An attractor network is a way of describing a group of brain cells that are richly wired back into each other, so that their activity naturally rolls toward, and then settles into, a few stable patterns — a bit like a marble released on a bumpy landscape that always rolls down into one of a handful of dips and rests there. Each dip, called an attractor, is one steady state the network can hold, and it stands for something the brain wants to keep firm: a remembered face, a chosen direction, a decision that has been made. Because the cells feed their signals back to one another in loops (this looping wiring is called recurrence), the pattern can keep itself alive on its own, holding the answer steady even after the thing that triggered it is gone.

What makes this so useful is that the network cleans up and completes messy input. Nudge it part of the way toward a dip — give it a blurry hint or only half of a memory — and the recurrent feedback pulls the whole activity pattern the rest of the way down into the nearest stable state, recovering the complete answer; this is how a single clue can bring back a full memory. The same idea explains decisions: as evidence arrives, the network drifts until it tips into one dip rather than another, and that final resting pattern is the choice. Small disturbances or noise get smoothed out because the activity slides back into the dip, which is why these networks can hold information reliably for seconds at a time and recover gracefully from interference.

Researchers use attractor networks both as a theory of how real circuits work and as a tool they can simulate on a computer. The picture fits several brain systems: cells in the hippocampus and cortex are thought to store memories as attractors, head-direction cells appear to settle onto a ring of states that act like an internal compass, and circuits that keep a decision or a held thought in mind seem to lean on the same self-sustaining loops. The model also predicts characteristic failures — for example, if two stored patterns sit too close together, the marble can roll into the wrong dip, blending or confusing memories.

Also calledattractor neural networkpoint attractor network吸引子神经网络吸引子神經網路

Authentication is how a system proves WHO you are. It's the login step: you show a password, a one-time code, a fingerprint, and the server is satisfied you really are the person you claim to be — like a bouncer checking your ID at the door.

Crucially, it answers only 'who?', not 'what are you allowed to do?'. That second question is authorization, and people mix the two up constantly. The handy memory trick: authentication is the door, authorization is the rooms you're allowed into once you're inside.

Once you've authenticated, the server usually hands you a token or sets a cookie so you don't have to type your password on every single request — proof of identity you carry with you for the rest of the session.

Also calledauthnloginsign in

Authorization decides WHAT you're allowed to do, once the system already knows who you are. You've logged in — fine — but can you delete this file? View someone else's salary? Open the admin panel? Authorization is the gatekeeper that answers each of those.

It always comes after authentication. First the system confirms your identity (authn), then it checks your permissions (authz). Knowing who you are tells it nothing about what you may touch — a logged-in guest and a logged-in admin are equally 'authenticated' but very differently 'authorized'.

When you hit a wall you can't pass, that's usually an authorization failure: the server knows exactly who you are, it just won't let you do that. On the web it often shows up as a 403 Forbidden.

Also calledauthzpermissionsaccess control

Autism spectrum disorder is a lifelong difference in how the brain develops, shaping the way a person communicates, connects with others, and experiences the world. It is not an illness that comes on and can be cured, and it is not caused by bad parenting or by vaccines; it is a pattern that is present from early childhood, woven into how the brain was built. The word spectrum is the key: autistic people vary enormously. One person might speak fluently, hold a demanding job, and simply find small talk and eye contact draining, while another might not use spoken language at all and need help with everyday tasks. There is no single look to autism, which is why the older idea of one fixed type has been replaced by a wide, continuous range.

Two broad threads run through the diagnosis. The first is differences in social communication: reading unspoken cues like tone of voice, facial expressions, or when it is your turn to talk can take more conscious effort, and back-and-forth conversation may not come automatically. The second is a tendency toward focused interests, a love of routine and predictability, and repeated movements or phrases that feel calming, such as rocking or repeating a favorite line. Many autistic people also sense the world more intensely: a flickering light, a scratchy tag, or a noisy room can be genuinely overwhelming, while a deep interest in trains, numbers, or a beloved topic can be a source of real joy and skill.

Scientists think autism arises mostly from how the brain wires itself up in the first years of life, guided strongly by genetics, with hundreds of genes each nudging brain development a little. One leading idea is that the balance between the brain's accelerator (excitatory signals) and its brakes (inhibitory signals) is tuned differently, changing how regions connect and how strongly the brain reacts to sensation. Crucially, autism is increasingly seen not as something broken to be fixed but as a different way of being — many autistic people and researchers favor support, acceptance, and accommodations over trying to erase the traits themselves.

Also calledautismASD自闭症孤独症自閉症孤獨症

An autologous cell is a cell taken from the patient's own body, then grown, treated, or returned to that same person. The word means 'self', and that is the whole point: because the cells already belong to you, your immune system recognises them as part of you and does not attack them. It is like repairing your house with bricks taken from your own back garden — a perfect match by definition.

In practice, a clinician collects cells from the patient — from blood, skin, fat, or bone marrow — and a lab multiplies them, sometimes edits or coaxes them into another cell type, then puts them back. Because the genetics are an exact match, there is no foreign-tissue rejection, the central obstacle that haunts most transplants. This self-to-self approach underpins several established and experimental cell therapies.

The trade-off is practicality. Each batch is custom-made for one person, which makes autologous cells slow to produce, expensive, and impossible to keep ready on a shelf in advance. If a patient is very sick, the weeks needed to grow their cells can be a real problem. So autologous cells win on safety from rejection but lose on speed and scale — the mirror image of donor-sourced cells.

Also called自体细胞自體細胞autologous

An automated market maker is a smart contract that lets people trade one token for another instantly, by trading against a shared pool of funds rather than waiting for a matching buyer or seller. Traditional exchanges run an order book: your order to sell sits in a list until someone wants to buy at your price. An AMM throws out the waiting room entirely. There is always a counterparty, because you are swapping with a pool of two tokens, and a formula sets the price on the spot.

The clever part is that formula. A common one keeps the product of the two token amounts in the pool constant — if the pool holds, say, apples and oranges, then apples × oranges must stay the same after every trade. When you take apples out, you must put oranges in, and because the leftover apples are now scarcer, each one costs more oranges than the last. The pool prices itself automatically: the more of something you buy, the steeper the price climbs, with no human quoting it. This self-balancing math is why an AMM never needs to be told what anything is worth.

AMMs matter because they made trading possible for any token, anywhere, without a company in the middle matching trades or holding your money. Anyone can create a market for a new token by seeding a pool, and anyone can trade against it a second later. This is the engine under most decentralized exchanges, and it turned market-making — once the job of specialized firms — into something an ordinary person can take part in just by adding funds to a pool.

Also calledAMMautomated market maker自动做市商自動造市商

Automation is letting machines do work that people used to do by hand; labor displacement is what happens to those people when the machine takes over their task. When a warehouse buys robots that fetch shelves, or a farm buys a machine that picks fruit all night, the work still gets done — but the human who used to do it may no longer be needed for that exact job. The pairing of these two ideas is one of the oldest and most heated debates around robotics, because it touches paychecks, dignity, and the shape of whole communities.

The story is rarely as simple as "robots steal jobs." Automation usually swallows tasks, not whole occupations: it eats the dull, repetitive, or dangerous parts and leaves the parts that need judgment, care, or a human touch. It also creates new work — someone has to build, install, program, and repair the machines — and by making goods cheaper it can grow the economy and spin up jobs nobody predicted. But these gains and losses do not land evenly. A worker whose single task vanishes may not easily slide into the new role, and the new role may be in a different city, industry, or skill level entirely.

That uneven landing is why the conversation centers on reskilling (helping people learn the new skills the changed workplace needs), the safety net (income support and time to retrain so a lost task does not mean a lost livelihood), and timing (a slow shift gives people room to adapt, a sudden one causes real hardship). The honest summary: automation tends to raise total wealth while scattering pain onto specific people and places, so the ethical and policy question is less "should we automate?" and more "how do we share the gains and cushion the losses?"

Also calledfuture of work工作的未来工作的未來技术性失业

The autonomic nervous system is the part of your nervous system that quietly runs the body in the background — without you ever deciding to. It controls things you never think about: how fast your heart beats, how wide your pupils open, whether your stomach is busy digesting lunch, how much you sweat, and how blood is steered toward muscles or away from them. Think of it as the building's automatic facilities crew, adjusting heat, plumbing, and electricity behind the walls so the people inside can just go about their day. You can flex your arm on command, but you cannot simply will your heart to slow down or your gut to digest faster — that job belongs to this system.

It works by sending signals through nerves to your internal organs, glands, and smooth muscle — the soft, involuntary muscle found in the walls of blood vessels, the intestines, and the airways (as opposed to the skeletal muscle you move on purpose). The system has two main branches that usually pull in opposite directions to keep you balanced: the sympathetic branch revs the body up for action — speeding the heart, widening the airways, releasing stored energy — in the famous fight-or-flight response, while the parasympathetic branch calms things down for rest, recovery, and digestion, sometimes called rest-and-digest. By dialing these two up and down moment to moment, the autonomic nervous system keeps your inner environment steady whether you are sprinting, sleeping, or sitting down to eat.

Also calledANSinvoluntary nervous systemvegetative nervous system植物神经系统植物神經系統自律神经系统自律神經系統

An autonomous underwater vehicle, or AUV, is a robot submarine that swims through the ocean on its own, with no cable tying it to a ship and no human steering it moment to moment. You give it a mission ahead of time — survey this stretch of seabed, follow this depth, take these measurements — then it dives, carries the plan out alone for hours or days, and surfaces to hand back what it found. This makes it different from a tethered ROV (remotely operated vehicle), which is flown live by a pilot through a long umbilical cord; the AUV cuts that cord and trades constant control for true independence and far greater range.

Two everyday problems become surprisingly hard once a robot goes underwater. The first is simply staying at the right depth: a body in water floats or sinks depending on its buoyancy, the balance between its weight and the upward push from the water it shoves aside, so an AUV carefully tunes that balance and uses fins, propellers, or thrusters to drive forward and steer, much as a fish uses its body and tail. Some gliders even save power by changing their buoyancy to sink and rise in long, slow zig-zags, barely running a motor at all. The second problem is power and shape: it must carry its own batteries and resist the crushing squeeze of deep water, so AUVs tend to be sleek, sealed tubes built to slip through the sea efficiently.

The hardest problem of all is knowing where it is, because the satellite signals that guide cars and drones — GPS — do not travel through seawater. Cut off from that, an AUV must navigate almost blind: it tracks its own speed and heading to estimate how far it has moved, listens to sound bouncing off the seabed, and sometimes triangulates off underwater sound beacons, because radio is useless and light reaches only a few metres in murky water. Despite all this, AUVs map the seafloor, inspect pipelines and undersea cables, hunt for shipwrecks, monitor pollution and sea life, and survey under polar ice where no crewed vessel can safely go.

Also calledAUVunderwater drone自主式水下机器人自主式水下機器人

An autonomous vehicle is a car (or truck, or shuttle) that can drive itself by sensing the road, deciding what to do, and steering, braking, and accelerating on its own — with little or no human input. It is really a robot on wheels: cameras, radar, and laser scanners stand in for eyes, a computer plays the role of a brain, and the steering and pedals are the muscles. The dream is to take the same machinery that lets a robot arm find a part on a table and aim it at the far harder problem of moving safely through traffic.

Under the hood, every self-driving system runs the same three-step loop. Perception turns the flood of sensor data into an understanding of the scene — where the lanes, cars, pedestrians, and traffic lights are. Planning then decides what to do next: which lane to take, when to slow for the child near the curb, how to merge. Control finally turns that plan into smooth, precise commands to the steering, throttle, and brakes. The hard part is not any single step but doing all three many times a second, reliably, in rain, glare, road work, and the endless surprises of real streets.

Because 'self-driving' covers everything from cruise control to a car with no steering wheel, engineers use a 0-to-5 scale of autonomy (defined by SAE) to be precise. Level 0 is fully manual; levels 1 and 2 are driver assistance where the human must stay fully in charge; level 3 lets the car handle some situations but expects the person to take over when asked; and levels 4 and 5 are true self-driving, with level 5 able to go anywhere a human could. Most cars sold today sit at level 2, and the leap to levels 4 and 5 is hard precisely because of those rare, weird, dangerous moments — the 'edge cases' — that a human handles by common sense but a machine must be explicitly prepared for.

Also calledself-driving carAV无人驾驶汽车無人駕駛汽車

The axis–angle representation describes any orientation as one single twist: pick a line to spin around, then say how far to spin. The line is given as a unit axis, an arrow of length one pointing in some direction, and the amount is just an angle in degrees or radians. This rests on a tidy fact, known as Euler's rotation theorem, that no matter how complicated a reorientation looks, it can always be reproduced by a single rotation about a single fixed axis. So 'turn 90 degrees about the vertical axis' is a complete answer, not a simplification.

This view is wonderfully intuitive because it matches how we naturally talk about turning things: one direction, one amount. It is also compact, needing only an axis and a number, and it makes 'how much did the robot rotate' easy to read off directly. Often the axis and angle are folded into a single rotation vector, an arrow whose direction is the axis and whose length is the angle, which is handy for math. Its main weakness is that combining two rotations is awkward in this form, and the axis becomes meaningless when the angle is zero (there is no 'direction' to a non-turn). For that reason robots frequently convert axis–angle into a quaternion or rotation matrix for actual computation, while still using axis–angle to express things like a commanded turn or the error between two orientations.

Also calledangle-axisrotation vector旋转向量旋轉向量

An axon is the long, thin tail that grows out of a nerve cell and carries the cell's outgoing message away from its body. A nerve cell, called a neuron, has a plump central part (the cell body, or soma) where it lives and makes decisions, a bushy crown of short branches that catch incoming signals, and then a single long fiber that leaves the body to deliver the cell's own reply. That fiber is the axon. Think of the neuron as a tiny radio station: the branches are its antennas listening for news, and the axon is the broadcast cable running out the door to send the station's own signal onward.

The axon's job is one-way output. A signal starts where the axon joins the cell body, then travels down the fiber as a fast electrical pulse, finally reaching tiny terminals at the far end that hand the message to the next cell across a narrow gap called a synapse. Axons can be astonishingly long for a single cell: some that run from your spinal cord down to a toe are nearly a meter from end to end. To move signals quickly over such distances, many axons are wrapped in myelin, a fatty insulating sheath that lets the pulse skip along and arrive sooner. Bundles of these fibers, grouped together, are what we casually call nerves.

Because the axon is the part that reaches out and connects, it is central to how the whole nervous system is wired. One neuron's axon can branch and touch thousands of other cells, and the precise pattern of which axon meets which target is what builds the circuits behind moving, sensing, remembering, and thinking. When an axon is cut or its myelin is damaged, messages slow down or stop, which is why injuries and diseases affecting axons can rob a person of movement or feeling.

Also callednerve fibernerve fibre神经纤维神經纖維

Axon cable properties are the plain electrical habits of a neuron's long output wire — the axon — treated like a real-life cable. Just as an old undersea telegraph wire leaks and blurs the signal you push into one end, a stretch of axon is not a perfect conductor: as a voltage change spreads along it, the signal gets weaker and slower the farther it travels. Two physical features set this behavior. One is resistance, which is how hard it is for electric charge to flow — there is resistance to current running lengthwise down the inside of the axon, and a separate resistance to current leaking sideways out through the wall (the membrane). The other is capacitance, the membrane's ability to store charge like a tiny battery that must be filled up before the voltage on the other side can change.

These two features together decide two things engineers and neuroscientists care about: how far a signal reaches and how fast it gets there. A fatter axon with a tightly sealed, low-leak wall lets charge run far before it drains away, so a voltage bump can travel a long distance before fading out — this reach is captured by a number called the length constant (the distance over which the signal shrinks to about a third of its starting size). Speed, meanwhile, is slowed mainly by capacitance: every patch of membrane must be charged and discharged like filling and emptying a bucket, and more capacitance means more time. This is exactly why thickening the axon and wrapping it in fatty myelin insulation — which lowers leak and capacitance — makes nerve signals travel both farther and faster, and why these passive cable properties shape how quickly you feel a touch or move a muscle.

Also calledpassive cable propertieselectrotonic properties电缆特性電纜特性被动电缆特性被動電纜特性

Axon guidance is the process by which a growing nerve fiber finds its way through the developing body and plugs into exactly the right target. A neuron (nerve cell) sends out one long cable, the axon, that carries its signals away — and that axon may have to travel a very long distance, past thousands of other cells, to reach the muscle or brain region it is meant to connect to. Axon guidance is the set of road signs and traffic rules that keep it from getting lost. Picture a traveler crossing an unfamiliar country with no map, relying only on signposts planted along the way: turn here, keep going, do not enter. That is what a growing axon does, and axon guidance is the system of signposts that makes the journey come out right.

The signposts are molecules — guidance cues — scattered through the tissue the axon grows across. Some cues are attractive and say come closer, while others are repulsive and say keep away; some are glued to the surface of cells the axon crawls over, and others drift loose, forming a faint chemical scent that is strong in one spot and weak in another. At the very tip of the axon sits a restless, hand-shaped explorer called the growth cone, studded with sensors that read these cues. When the growth cone meets an attractive cue it steers toward it; when it meets a repulsive one it turns away. Famous families of these molecules — netrins, slits, semaphorins, and ephrins — work in pairs of cue and matching sensor, like a lock and its key, so that each axon responds only to the signs meant for it.

This careful steering is how the staggering wiring of the nervous system, with its billions of precisely placed connections, gets laid down in the first place. When axon guidance goes wrong, fibers wander to the wrong destinations, and the miswiring can show up as developmental disorders of the brain and eyes. The same guidance molecules can also reawaken after injury, which is part of why severed nerves in the adult brain and spinal cord struggle to find their way back — understanding the original road map is a first step toward helping damaged wiring regrow.

Also calledaxon pathfindingaxon navigation轴突寻路軸突尋路

The axon hillock is a small, cone-shaped bump on the body of a neuron — the cell that carries signals in your brain and nerves. Picture the neuron's main body as a round hub with many short branches reaching in; on one side, the hub narrows into a little ramp, and from the bottom of that ramp the single long output cable, called the axon, sets off. That tapering ramp is the axon hillock: the spot where the cell body hands off to the wire that carries its message away.

This little hump matters because it is the decision point. A neuron collects countless tiny nudges from its neighbors — some pushing it toward firing, some holding it back — and all of those nudges spread across the cell and pile up at the hillock. Here the membrane is unusually crowded with voltage-gated sodium channels, tiny gates that pop open when the electrical charge crosses a threshold. If the combined push is strong enough, the gates fly open and a full nerve signal, the action potential, ignites and races down the axon. So the axon hillock is the neuron's trigger: the place that adds up the votes and decides, moment by moment, whether to fire.

Also calledspike initiation zone轴突起始段附近区域軸突起始段附近區域

An axon terminal is the very tip of a neuron's long sending fiber — the little swollen ending where the cell finally hands its message to whatever comes next. A neuron is a nerve cell, and its axon is the thin cable that carries the cell's electrical signal away from the main body. At the far end, that cable doesn't just stop bluntly; it usually splits into many fine branches, and each branch ends in a tiny bulb. Those bulbs are the axon terminals, and they are the business end of the neuron, the spot built specifically for talking to another cell.

The terminal sits right up against its target — another neuron, a muscle fiber, or a gland cell — separated only by a microscopic gap. This whole junction, terminal plus gap plus the receiving surface, is called a synapse, and because the axon terminal is on the sending side, it is described as presynaptic (meaning before the synapse). When the neuron's electrical signal races down the axon and arrives at the terminal, it triggers the bulb to release tiny packets of chemicals called neurotransmitters. These drift across the gap and land on the next cell, passing the message along. So the axon terminal is best pictured as a loading dock at the end of a delivery road: the signal arrives, gets converted into a chemical parcel, and is shipped across the gap to the cell waiting on the other side.

Also calledsynaptic terminalterminal boutonnerve terminalpresynaptic terminal突触终末终扣神经末梢突觸終末終釦神經末梢

Axonal transport is the delivery system a neuron uses to move supplies up and down its axon — the long, cable-like tail that carries the cell's signals. Picture the axon as a single very long road running from the cell body (the neuron's headquarters, where most building work happens) out to the distant tip where it talks to the next cell. That road can stretch a thousand times the width of the cell body, far too far for anything to drift along on its own. So the neuron runs a freight service: it packs supplies into little membrane bubbles and tiny machines actively haul them to wherever they are needed.

The hauling is done by motor proteins — molecular machines that literally walk, step by step, along internal tracks called microtubules that run the length of the axon. Cargo heading away from the cell body, out toward the axon tip, moves by anterograde transport; this carries fresh deliveries such as the bubbles of chemical messengers used to talk to the next cell, plus mitochondria (the cell's power plants) and building materials, pulled by a motor called kinesin. Cargo heading the other way, back from the tip to the cell body, moves by retrograde transport, pulled by a motor called dynein; this returns worn-out parts for recycling and carries status reports — including, unfortunately, some viruses and toxins that hitch a ride inward.

This shuttle matters because the far end of an axon cannot manufacture much for itself, so it depends on a steady stream of deliveries to keep working and to repair itself. When the tracks are damaged or the motors fail, supplies pile up or never arrive, the axon's tip starves, and the neuron can sicken and die — a breakdown seen in many nerve diseases. In short, axonal transport is the lifeline that keeps a neuron's most remote outpost stocked, powered, and in touch with home.

Also calledaxoplasmic transportaxonal trafficking轴浆运输軸漿運輸
B

Backdrivability is how easily you can move a robot's joint by pushing on its output end — the part that does the work — instead of by commanding its motor. A backdrivable joint is like a bicycle wheel coasting freely: give it a gentle nudge and it turns, and you can even feel the motor being turned backward through it. A non-backdrivable joint is like a screw jack under a car — you can crank the handle to lift the car, but no amount of pushing down on the car will spin the handle back. Many gear systems trade away backdrivability on purpose: a high gear ratio makes a motor's output strong, but it also makes the joint very hard to move from the outside.

Backdrivability is prized when a robot must work safely and feel responsive around people, because a backdrivable arm can be pushed out of the way by hand and gives way under unexpected contact, rather than stubbornly holding its ground. It also lets a robot sense and respond to outside forces through the joint itself, almost like feeling pressure through your own arm, which can even replace a dedicated force sensor.

Under-actuation is a related idea about counting: it means a mechanism has fewer motors than it has independent ways to move. A robot hand with many finger knuckles but only one or two motors is under-actuated — the fingers curl together in a fixed pattern set by their springs and linkages rather than each being driven on its own. This keeps the design simple, light, and cheap, and a well-designed under-actuated hand can still wrap naturally around objects of different shapes, even though it cannot pose every knuckle independently.

Also calledbackdrivableunderactuation可反驱欠驱动

The backend is the part of an app that runs on the server, out of sight. It holds the data, enforces the rules, and does the real work — checking your password, saving your order, totting up your bill. You never look at it directly; you only ever see the answers it sends back.

Think of a restaurant. The dining room you sit in is the frontend — menus, tables, the friendly waiter. The backend is the kitchen and the back office: where the food is actually cooked, the stock is counted, and the till keeps the money straight. Customers never wander back there, and they don't need to — they just enjoy the meal that comes out.

The two halves talk through an API: the frontend asks ('log this person in', 'give me their orders'), and the backend does the heavy lifting and replies. It's also where the sensitive stuff lives — the database, the passwords, the business logic — kept on the server precisely so it stays out of the user's hands.

Also calledserver-sideback endserver

Backlash is the tiny bit of free play between two meshing gears — the small slack you feel when you turn one gear and the other does not respond right away. Gears cannot be made to touch perfectly, or they would jam and grind; so engineers leave a sliver of gap between the teeth. That gap is helpful for smooth running, but it means the driven gear lags by a hair every time the driving gear changes direction. You meet the same thing in an old bicycle: pedal forward and there is a brief dead spot before the chain catches. That dead spot is backlash.

For a robot, this small slop matters a lot. When a joint reverses direction, the motor has to first 'take up' the backlash before the limb actually moves, so the real position lags behind what the controller commands — a positioning error that shows up as a little wiggle or imprecision at the fingertip of an arm. Worse, the gap lets the load rattle and bang against the teeth under vibration, which feeds back into the control system and can make tight, fast moves jitter or hunt instead of settling cleanly. This is exactly why high-precision joints favor near-zero-backlash designs like the harmonic drive, and why cheaper geared toys feel loose and sloppy by comparison.

Also calledgear playlost motion空程間隙

Backpropagation is how a layered neural network learns from its mistakes. The network makes a guess, you measure how wrong it was, and then that error is passed backward through the layers, telling every single connection how much it was to blame. Picture a kitchen where a dish comes out too salty: the head chef traces the fault back down the line — a little from the sauce station, a little from the seasoning — and each cook nudges their part. Do this over and over with millions of examples, and the whole network gets better.

Under the hood it is just careful bookkeeping with the chain rule from calculus — a way to figure out, layer by layer, how a tiny change in each weight would change the final error. Working backward from the output is the clever bit: it computes all those blame-shares in one sweep instead of testing each weight separately, which would be hopelessly slow. The weights are then adjusted a notch in the direction that lowers the error, and the cycle repeats.

Its importance is hard to overstate: backpropagation is what made deep networks — stacks of many layers — actually trainable, and it powers nearly every modern AI, from image recognizers to chatbots. One common mix-up: backpropagation only finds the direction to adjust each weight; a separate step (gradient descent) decides how big a step to take. It is the messenger that delivers the error, not the hand that turns the dial.

Also calledbackpropbackward propagation of errors误差反向传播誤差反向傳播

For decades, a chip stacked everything on one side of the silicon: dozens of metal layers carrying both the signal wires (the logic talking to itself) and the power wires (feeding every transistor its supply voltage). As features shrank, those two jobs started fighting for the same crowded space — and power had a special problem. The wires bringing current down through that tall stack are thin and resistive, so the supply voltage sags a little on the way down. That sag is IR drop, and it gets worse exactly as the interconnect-scaling limit predicts: skinnier wires mean more resistance, less margin, slower and less reliable logic. Backside power delivery answers that limit by giving power its own real estate. You thin the wafer down and build a second metal network on the back of the silicon, dedicated entirely to delivering power, while the front stack is freed up to do nothing but route signals.

Think of an apartment building that originally ran water, electricity, and hallways all through the same set of shafts — everything elbowing for room. Backside power is like moving all the plumbing to a service corridor behind the building. Now the front halls (signals) are wider and easier to lay out, and the plumbing (power) can use big, short, low-resistance pipes that reach each floor from directly behind it instead of snaking down from the roof. Two wins fall out of this. First, IR drop shrinks, because the back-side power rails are thicker and the current reaches each transistor over a much shorter path. Second, routing congestion eases, because freeing the front layers of all those fat power rails leaves more room for the signal wires that place-and-route was struggling to fit. It is one of the techniques entering volume production around the 2nm generation.

Also calledBSPDNbackside power delivery networkburied power rails背面供电网络背面供電網路埋入式电源轨埋入式電源軌

Bacteria are tiny living things, each made of a single cell so small that millions could sit on the head of a pin. They are everywhere — in the soil, in the sea, on your skin, and by the trillions inside your gut right now. A single drop of pond water can hold more of them than there are people on Earth.

Here is the surprise: the vast majority are harmless, and many are downright helpful. Bacteria in your gut help digest your food, and others turn milk into yogurt and cheese. Only a small minority are troublemakers — the kinds that cause strep throat, tuberculosis, or food poisoning.

For most of history nobody knew germs caused disease. Then, in the 1880s, Robert Koch laid down a clear test — now called Koch's postulates — for proving that a specific microbe causes a specific illness: find the germ in every sick patient, grow it in pure culture isolated from the body, use it to make a healthy host sick, then recover the same germ again. That chain of proof turned vague suspicion into hard science and helped found modern medicine.

Also calledbacteriumgermmicrobe细菌細菌

A brain signal is a jumble of rhythms at many speeds happening at once, like several musical notes played together. Band power asks a simple question about one of those notes: how loud is it? More precisely, it is how much of the signal's energy sits inside a chosen frequency band — for example the mu band around 8–12 cycles per second, or the beta band a bit faster.

Band power is a primary feature for rhythm-based BCIs because it rises and falls with what the person is doing in their mind. When someone imagines moving a hand, for instance, the mu and beta rhythms over the motor cortex tend to quiet down, so the band power in those bands drops. A decoder can watch that number and infer the intention behind it.

To compute it you take a short window of signal, work out how its energy is spread across frequencies, and add up the part that falls within your band. It is cheap to calculate and easy to interpret, which is part of why it has stayed popular for decades.

Also calledspectral power频带功率頻帶功率

A bandgap reference is a small analog circuit that produces one steady voltage — close to 1.2 V — that barely budges as the chip heats up, cools down, or sees its supply sag. Almost every chip needs a rock-solid yardstick to measure against: an ADC needs to know what "full scale" means, a voltage regulator needs to know what output to aim for, a power-on-reset needs to know when the supply is "high enough." A raw battery or supply rail drifts with temperature and load and is useless as a yardstick. The bandgap is the circuit that makes the yardstick.

The trick is to cancel temperature by adding two opposite drifts. A forward-biased diode (or a transistor's base-emitter voltage, Vbe) drops a little less voltage as it warms — it falls roughly 2 mV for every degree Celsius. That is a CTAT term: Complementary To Absolute Temperature. Separately, if you run two transistors at different current densities, the difference in their Vbe rises with temperature — a PTAT term, Proportional To Absolute Temperature, set by the thermal voltage kT/q (about 26 mV at room temperature). Add a falling CTAT to a rising PTAT, each scaled just right, and the two slopes cancel: the sum sits flat across temperature.

Why does the flat point land near 1.2 V? Because that is, near enough, the bandgap voltage of silicon extrapolated to absolute zero — the energy gap that an electron must cross to conduct. When you force the CTAT and PTAT slopes to cancel, you are really extrapolating Vbe back to 0 K, and silicon hands you its bandgap. That is the whole reason for the name: the circuit does not measure the bandgap on purpose, but the physics of the cancellation drags the answer to it. Real bandgaps hold their output to within a fraction of a percent over the full automotive temperature range, often after a small one-time trim.

Also calledbandgap voltage referenceBGRbandgap带隙基准源能隙基準

Bang-bang control is the simplest way to steer a system: there is no dial, only a switch. The controller looks at the error — are we below the target or above it? — and responds with one of two extremes: full on or full off, push or don't push, heat or don't heat. There is no "a little bit" in between. The name comes from this all-or-nothing slamming back and forth, bang one way, bang the other.

Your home thermostat is the everyday example. When the room drops below the set temperature, the heater turns fully on; when the room climbs above it, the heater turns completely off. Because a real heater cannot react instantly, the temperature always sails a little past the line before the switch flips, so the room actually drifts up and down in a gentle sawtooth around your chosen setting rather than holding perfectly still. To stop the switch from chattering on and off rapidly when the temperature hovers right at the line, designers add a small dead band: the heater waits until the room is, say, a degree too cold before kicking on, and a degree too warm before shutting off.

The appeal of bang-bang control is that it is dirt cheap, dead simple, and surprisingly hard to break — a single relay or transistor can run it, with no delicate tuning of gains. The price is that it can never settle exactly on the target; it forever hunts around it, and the constant slamming can wear out hardware. So it shines where a little wobble is harmless — fridges, water heaters, simple pumps — but gives way to smoother schemes like PID wherever you need a steady, precise hold.

Also calledon-off controltwo-position controlrelay control开关控制双位控制開關控制雙位控制

The basal ganglia are a cluster of deep brain structures sitting beneath the wrinkled outer surface (the cortex), tucked near the center of each half of the brain. Think of them as the brain's behind-the-scenes movement committee: they do not start a movement on their own, but they quietly approve or veto the plans the rest of the brain proposes. When you decide to reach for a cup, your cortex sketches the idea, and the basal ganglia give the green light to the smooth, intended motion while holding back the dozens of competing twitches you did not mean to make.

Their everyday jobs go beyond movement. The basal ganglia are central to building habits, the routines you can run on autopilot like tying your shoes or driving a familiar route, and to action selection, which means choosing one action out of many possibilities and committing to it. They learn from rewards: when an action turns out well, a chemical messenger called dopamine helps stamp that choice in, so it becomes easier to pick next time. When these structures are damaged or starved of dopamine, the consequences are striking. In Parkinson's disease movements become slow and stiff and tremors appear, while in Huntington's disease movements become excessive and uncontrolled, which is why doctors lean heavily on the basal ganglia to understand both too little and too much movement.

Also calledbasal nucleistriatum and friends基底核纹状体系统紋狀體系統

The basal ganglia motor loop is a kind of decision-and-approval circuit buried deep under the surface of the brain that helps choose which movement to make and waves it through while holding all the other possible movements back. The basal ganglia are a cluster of grey-matter blobs sitting beneath the wrinkled outer sheet of the brain, the cortex. In this loop, the cortex sends down a noisy shortlist of movements it is thinking about, the basal ganglia pick the winner, and the chosen plan is passed back up through a relay station called the thalamus to the cortex, which then actually fires the muscles. Think of it like a strict casting director: many actors audition for one role, but only one gets the part, and everyone else is told to wait.

The trick that makes the loop work is that the basal ganglia hold movement on a default leash. Their main output is constantly applying the brakes, quietly suppressing movements so the body does not twitch and flail on its own. When you decide to act, one pathway through the loop briefly releases the brake on the single movement you want, like lifting a finger off just one key on a held-down piano, while a second pathway clamps the brakes down even harder on the competing movements. A chemical messenger called dopamine sets how easily the brake comes off, which is why this loop is at the heart of so many movement disorders. In Parkinson's disease the dopamine supply fades, the brake stays too tight, and movements become slow and stiff and hard to start; in Huntington's disease and some other conditions the braking fails, and unwanted movements leak out as twitches and jerks.

Importantly, this is a loop, not a one-way street: signals travel from cortex to basal ganglia to thalamus and back to cortex, around and around, so the system can keep adjusting a movement while it is happening rather than just firing once and forgetting. The same basic loop design is reused for non-movement jobs too, with parallel copies handling habits, motivation, and even patterns of thought, which is one reason damage here can affect far more than walking and reaching.

Also calledcortico-basal ganglia-thalamo-cortical loopmotor loop皮层-基底神经节-丘脑环路运动环路皮層-基底神經節-視丘迴路運動迴路

The Bayesian brain is the idea that your brain works like a careful detective who is never quite certain. The world reaches your senses only as noisy, blurry, incomplete clues, so the brain can never know exactly what is out there. Instead, it makes its best guess by combining two things: what it already expects (its prior beliefs, built up from past experience) and the fresh evidence arriving right now through your eyes, ears, and skin. Whenever it can lean more on reliable evidence it does, and whenever the evidence is weak or ambiguous it leans more on what it expected. This way of weighing belief against evidence is named after Bayes' rule, an old piece of mathematics that describes the best way to update a guess when new information shows up.

Why does this matter? It explains many everyday quirks of perception. When you hear a friend in a noisy room, your brain fills in the muffled words using its expectations, which is why you sometimes mishear or why illusions can fool everyone the same way. It also explains why surprises grab attention: a surprise is exactly the moment when reality clashes with the brain's prediction, forcing it to update. Researchers like this framework because it turns vague questions about thinking into precise math, and because it connects perception, learning, attention, and even some mental illnesses (where priors may be tuned too strongly or too weakly) under one tidy idea. It is a theory or guiding lens, not a proven fact, but it has been remarkably productive.

Also calledBayesian brain hypothesisprobabilistic brain贝叶斯大脑假说貝氏大腦假說

BB84 is the first protocol ever proposed for quantum key distribution (QKD): a way for two people, traditionally called Alice and Bob, to agree on a secret string of random bits while being able to notice if anyone was listening. The clever part is not that it transmits a message secretly, but that it lets you build a shared key and check afterward whether the channel was clean. Picture Alice sending one photon at a time, and for each one she flips two private coins: one decides the bit (0 or 1), the other decides which of two 'orientations' she uses to encode it. Bob, who can't read her mind, picks an orientation at random too when he measures each photon.

After all the photons are sent, Alice and Bob talk over an ordinary public line and compare only which orientations they chose, never the bit values. Whenever they happened to pick the same orientation, Bob's reading is reliable, and they keep those bits; the rest they throw away. Here is where the physics earns its keep: because of the no-cloning theorem, an eavesdropper cannot copy an unknown photon to inspect it later, and any attempt to measure it in the wrong orientation disturbs it. So an eavesdropper is forced to guess orientations too, and her guesses introduce errors. By sacrificing a small sample of their kept bits and checking the error rate, Alice and Bob can detect that tampering. If the channel looks clean, the remaining bits become a shared secret key; if not, they discard everything and try again.

It helps to be clear about what BB84 does and does not promise. It is not a faster computer and has nothing to do with Shor's algorithm or breaking RSA. It is a key-exchange method whose security rests on the laws of physics rather than on a hard math problem, which is what distinguishes it from post-quantum cryptography (classical algorithms designed to resist quantum attacks). In practice BB84 needs a genuine quantum channel such as fiber or free-space optics, real hardware is imperfect and limited in range, and it secures only the key-distribution step, not your whole communication system.

Also calledBennett-Brassard 1984

Behavior cloning is the simplest way to teach a robot a skill by example: you record an expert doing the task, and then train the robot to copy what the expert did. Each recorded moment is turned into a single flashcard — on the front is what the robot was seeing and feeling at that instant (the camera image, the joint positions, the gripper state), and on the back is the exact action the expert took next (move this way, close the gripper, turn the wheel). The robot studies thousands of these flashcards and learns a rule of thumb that maps 'this is what I see' straight to 'this is what I should do.' Because it is just matching answers to questions, this is ordinary supervised learning, the same kind of pattern-fitting used to label photos — only here the labels are actions instead of names.

The appeal is that it needs no reward, no trial and error, and no simulator: a few human demonstrations can be enough to get a robot mimicking a pick-and-place or a steering motion. The catch is a quiet but serious flaw called compounding distribution shift, or compounding error. The robot only ever saw the situations the expert visited, which are tidy and on-track. The moment its own small mistake nudges it slightly off that track — a cup gripped a centimeter too far left — it faces a scene the expert never demonstrated, so its guess gets worse, which pushes it further off track, which makes the next scene even stranger. The errors snowball, and a robot that looked perfect in testing can drift into a situation it has no idea how to handle.

Practitioners fight this snowballing by collecting many more demonstrations, including deliberately messy ones that show how to recover from mistakes, or by letting the expert correct the robot live as it practices so it learns to find its way back onto the track. Plain behavior cloning is still the workhorse first attempt, though, precisely because it is so easy to set up.

Also calledBCsupervised imitation监督式模仿

A behavior tree is a tidy, branching diagram that a robot reads from the top down to decide what to do next, moment by moment. Picture a flowchart shaped like an upside-down tree: at the very bottom are the small concrete actions and checks — "walk to the door," "is the door open?", "pick up the box" — and above them are simple junction nodes that decide which of those to try and in what order. Each tick of the clock, the robot starts at the top and works its way down, and every node reports back one of a few simple answers: it succeeded, it failed, or it is still running. Those answers ripple back up and steer the next choice.

The clever part is just two kinds of junction. A sequence node says "do these in order, and stop if any one fails" — good for steps that must all happen, like open-the-gripper, then move-down, then close-the-gripper. A fallback (or selector) node says "try these one at a time until one works" — good for plans with backups, like try-the-front-door, else try-the-side-door, else ask-a-human. By nesting sequences and fallbacks, you can build rich, layered behavior out of these few simple pieces, and a designer can read the whole tree almost like a sentence.

Robot builders like behavior trees because they are modular and easy to change. Because each branch is self-contained, you can add a new skill, reorder priorities, or graft in an emergency "if battery low, go charge" branch near the top without untangling everything else — the tree naturally checks high-priority branches first. This is why behavior trees have largely replaced the older finite-state-machine style in game characters and many robots: a state machine wires every situation directly to every other, which grows into a tangle, whereas a behavior tree keeps the logic organized and reusable as the robot's repertoire grows.

Also calledBT行为树结构行為樹結構

Behaviorism was a bold movement in psychology that said: study only what you can actually see. Forget peering inside the mind — its private thoughts, feelings, and wishes can't be measured, so leave them aside. What you can watch and count is behavior: a rat pressing a lever, a child flinching at a loud noise, a dog drooling at a bell. For roughly the first half of the twentieth century, this was the dominant way to do psychology in America.

The appeal was a fresh start. Early behaviorists, especially in John B. Watson's program, treated the mind as a sealed black box and looked only at what goes in (the situation) and what comes out (the action), so they could run tight, repeatable experiments — psychology as a hard science at last. Watson launched the movement in 1913, and B. F. Skinner became its towering figure, showing in careful lab work how rewards and punishments shape what animals and people do. Skinner actually softened the black-box stance: he agreed that private thoughts and feelings are real, only insisting they not be treated as hidden causes.

A common misreading is that behaviorists thought there is no mind, or that thinking doesn't happen. That's not quite it. Most simply argued that the mind wasn't something you could study scientifically yet, so the responsible move was to bracket it and stick to behavior. When later researchers found clever ways to probe memory, attention, and reasoning, the field swung back toward the mind — but behaviorism's hard-won lessons about how consequences mold behavior never went away.

Also calledbehavioural psychologybehavior analysis行为心理学行為心理學

Bench to bedside is the long, uphill journey that turns a discovery in a laboratory into a treatment a patient can actually receive. The 'bench' is the lab; the 'bedside' is the clinic. Think of it like getting a brilliant kitchen experiment onto restaurant menus everywhere: tasting good once is the easy part — the hard part is everything after.

Along the way the idea must survive animal studies, be made to strict and consistent quality standards, then pass human trials in carefully staged steps, and finally clear regulators who weigh benefit against harm. Each stage filters out most candidates. Promising lab results routinely stall here — not because the science was fake, but because safe, reliable, large-scale treatment is far harder than a one-off success.

It matters because it explains the gap between exciting headlines and what a doctor can responsibly offer. A result that 'works in mice' or in a dish may be years — or forever — from the bedside, and honest scientists say so.

Also called从实验台到病床從實驗檯到病床translational medicinebench-to-bedside

Every rung below this one has been a way to keep the silicon CMOS transistor going as it shrank: FinFET, then gate-all-around nanosheets, backside power, chiplets. But there is a floor. A silicon channel only has so many atoms across, the gate can only get so thin before electrons tunnel straight through, and the supply voltage can't drop much below the threshold a silicon transistor needs to switch cleanly. "Beyond CMOS" is the research search for a different switch entirely — not a better silicon transistor, but a new device built from new materials or even a new physical knob, so that scaling can continue after silicon runs out of room. Think of it as asking what replaces the engine, not how to tune the one you have.

The candidates each attack a specific limit. Carbon-nanotube FETs use a tube of carbon atoms as the channel: carriers move through it fast and the tube is naturally thin, so the gate keeps tight control at sizes where a silicon fin would leak. Two-dimensional channel materials like MoS2 (molybdenum disulfide) are sheets a single layer of atoms thick — about as thin as a channel can physically be — which is exactly the body thinness GAA chases, taken to the atomic limit. Spintronics goes further and changes what carries the information: instead of pushing charge around (which costs energy every time you charge and drain a wire), it flips the electron's spin, in principle switching with far less energy and even holding its state with the power off. Others reach for tunnelling transistors, ferroelectrics, and more exotic ideas still.

The honest status: none of these is mainstream. Silicon CMOS is extraordinarily good, decades of manufacturing know-how are poured into it, and a lab device that switches beautifully once is a long way from billions of identical, cheap, reliable ones. So today's roadmap leans on architecture — nanosheets, CFET, chiplets, advanced packaging — to buy more years, while beyond-CMOS devices stay in research. The point of watching this space is not to predict the winner but to see the shape of the question: what does computing look like once you can no longer just make the silicon switch smaller?

Also calledpost-CMOS devicesemerging logic devicesnon-silicon transistors后 CMOS 器件新兴逻辑器件後 CMOS 元件新興邏輯元件

Before a transistor can amplify anything, you have to wake it up and hold it in the right posture. The bias point — often called the Q-point, for quiescent — is the set of steady DC voltages and currents you deliberately establish at every terminal when no signal is present. Think of it like setting a swing in gentle motion at the middle of its arc: once it's poised there, the tiniest push (your AC signal) sends it swinging cleanly up and down. Your real signal is a small wiggle that rides on top of these DC values, and the whole point of biasing is to park the device in its useful amplifying region — for a MOSFET, that means saturation (also called the active region), where the drain current responds strongly to the gate voltage but barely cares about the drain voltage.

Get the bias wrong and the amplifier either goes deaf or shouts garbage. Starve the transistor of current and it slips out of saturation into triode or subthreshold, where its transconductance gm collapses and you get almost no gain. Set the DC output too close to a supply rail and even a modest signal swing slams into the ceiling or floor, clipping the waveform flat. Both gain and headroom are inherited from the Q-point: the small-signal transconductance is set directly by the bias current (in the square-law region gm = 2*Id/Vov, where Vov = Vgs − Vth is the overdrive), and the intrinsic voltage gain gm*ro likewise lives or dies with where you parked the device.

Because everything downstream — gain, swing, noise, bandwidth — flows from this DC posture, finding the operating point is the very first thing any analog designer (and any SPICE simulation) does. You solve for the DC equilibrium first, then linearize around it to study the small AC signal. A good bias is also a stable one: it must hold its position across temperature, supply variation, and part-to-part spread, which is exactly why analog circuits lean so heavily on current mirrors and bandgap references to pin the bias down rather than trusting a lone resistor.

Also calledQ-pointquiescent pointDC operating point

The Big Bang is our best account of how the universe began: about 13.8 billion years ago everything we can see was packed into a state unimaginably hot and dense, and it has been expanding and cooling ever since. Picture the dots drawn on a balloon as you blow it up — every dot drifts away from every other, not because the dots are moving across the rubber, but because the rubber itself is stretching. The universe is doing the same thing, on the grandest scale.

Despite the name, it was not an explosion that flung matter outward into empty space. Space itself was expanding — there was no "outside" for it to expand into, and no single spot you could point to and call the center. Every galaxy sees all the others rushing away from it, which is exactly what you'd expect if space everywhere is swelling.

We're not just guessing. The whole sky glows faintly with leftover heat from that hot beginning — a feeble microwave hum coming from every direction — and the way galaxies fly apart, faster the farther off they are, fits the picture beautifully. Rewind that expansion in your mind and everything crowds back together to a single fiery start.

Also calledBig Bang theory宇宙大爆炸大爆炸理论大爆炸宇宙論宇宙大霹靂

Bin picking is the job of reaching into a box or tray full of objects dumped in randomly — all jumbled, overlapping, and facing every direction — and pulling one out cleanly. Picture a parts bin at a factory where hundreds of identical bolts lie in a tangled heap. A person does this without thinking: you glance in, see a bolt you can reach, grab it, and lift. For a robot, every part of that is hard, because nothing is where it expects, and the next item to grab is often buried under others.

What makes bin picking so much harder than picking from a neat conveyor is the mess, called clutter. The robot first has to look into the bin with a camera or depth sensor and figure out, from the pile, where individual objects are and which way each is turned — its pose. Then it has to choose one object that is actually graspable (not pinned down by its neighbors), plan a grip that will not collide with the bin walls or knock the pile over, reach in, and lift it out. After each pick the pile shifts, so the robot must look again and start fresh every single time.

Bin picking is one of robotics' classic proving grounds because it combines seeing, planning, and grabbing in a messy, ever-changing scene. It shows up everywhere goods are stored loose: factories feeding parts into machines, warehouses fulfilling orders, and recycling lines sorting waste. Reliable bin picking has been a goal for decades, and modern systems lean heavily on cameras plus learned models to handle the endless variety of piles.

Also calledrandom bin picking随机料箱拣取隨機料箱揀取

Bio-inspired robotics is the practice of looking at living animals — how they walk, swim, fly, climb, or grip — and borrowing those ideas to design robots. Evolution has spent hundreds of millions of years tuning bodies to move through the real world, so nature is a vast, free catalog of solutions that already work. A robot that scampers on six legs like a cockroach, one that swims by flexing its body like a fish, a wall-climber whose feet copy the microscopic hairs on a gecko's toes, a flying machine that flaps like an insect — all are taking a proven trick from biology and rebuilding it in motors, plastic, and circuitry.

The appeal is that animals routinely do things our boxy, wheeled robots struggle with. Wheels are wonderful on smooth roads but helpless on stairs, sand, or rubble, whereas legs — the design countless creatures evolved — handle rough, broken ground with ease, which is why legged robots copy how animals balance and place their feet. A fish wastes very little energy gliding through water, so a robot that swims its way can travel farther on one charge; an insect can right itself after a tumble and keep going, a knack that makes a small robot far more rugged. Crucially, bio-inspired does not mean an exact copy: engineers take the underlying principle — the springiness of a tendon, the wrap-around grip of an elephant's trunk, the way a gecko's foot peels off cleanly — and adapt it to what motors and materials can actually do, keeping the idea while dropping the parts that do not translate.

Also calledbiomimetic roboticsbiomimicry in robots生物启发机器人生物模拟机器人

Biocompatibility describes how well a material coexists with the body without setting off a harmful reaction. A biocompatible material is a good house guest: it does its job, stays out of trouble, and does not poison the cells around it, provoke a damaging immune attack, or make blood clot where it should not. A material that fails this test, however clever, simply cannot be used inside a person.

The body treats anything foreign with suspicion. Immune cells investigate a new implant, and if they read it as a threat they wall it off in scar tissue, inflame the area, or attack it outright. Biocompatibility is the art of designing the material's surface and chemistry so the body either ignores it peacefully or, better still, welcomes its own cells to move in and integrate with it.

Crucially, biocompatibility is not a fixed property stamped on a material — it depends on the job. A metal that is perfectly safe as a hip joint might be a disaster as a heart-valve surface where blood clotting is the danger. So engineers always ask biocompatible for what, and where, and for how long, rather than treating it as a simple yes-or-no label.

Also called生物相容性

Bioink is the printable, cell-laden gel that a bioprinter uses as its ink. Where a paper printer sprays colored liquid, a bioprinter pushes out a soft gel with living cells suspended inside it. The bioink is therefore both the building material and the cargo — it carries the cells and, once printed, hardens just enough to hold the new tissue's shape.

Designing a good bioink is a tricky balancing act. It has to be runny enough to flow smoothly through a fine nozzle, yet able to firm up immediately after printing so the layers do not slump into a puddle. At the same time it must be soft, watery, and nourishing enough that the delicate cells riding inside survive the squeeze and feel at home, rather than being crushed or starved.

Most bioinks are built on hydrogels — water-swollen polymer networks that mimic the squishy, moist feel of real soft tissue. Recipes are often tuned per tissue type, sometimes blended with natural extracellular-matrix proteins so the cells recognize familiar surroundings. The bioink is, in short, the make-or-break ingredient that decides whether printed cells live and thrive or simply die.

Also called生物墨水

A biomarker for a brain disease is something you can actually measure in the body that quietly signals what is happening inside the nervous system — a fingerprint of disease that doctors can read. Because the brain is locked inside the skull and cannot be examined by simply looking at it, doctors instead hunt for clues that leak out or show up elsewhere: a particular protein floating in the blood or in the cerebrospinal fluid (the clear liquid that bathes the brain and spinal cord), a telltale shape on a brain scan, or a pattern in the brain's electrical activity. Think of it like a warning light on a car dashboard — you cannot see the engine itself, but the light reliably tells you that something specific is going on under the hood.

Biomarkers matter because they make invisible diseases visible and measurable, and they do several jobs at once. Some help diagnose — for example, certain proteins that build up in Alzheimer's disease can be detected years before memory clearly fails. Others track progression, showing whether a condition is getting worse or holding steady, or predict who is at risk before symptoms even start. Many are also used to test treatments: if a drug is meant to clear a harmful protein, a biomarker can show whether the protein actually went down. A good biomarker has to be specific (it points to this disease and not a dozen others), measurable in a practical way, and tightly tied to the real biology of the illness — otherwise the warning light is just noise.

Also calledneurological biomarkerdisease marker生物标记疾病标志物生物標誌物

A biomaterial is any natural or synthetic material designed to work inside or right alongside living tissue. It is the special category of material that the body is meant to tolerate as a long-term neighbor rather than reject as a splinter. Everyday examples are surprisingly common: dental fillings, titanium hip joints, dissolving stitches, soft contact lenses, and the scaffolds used to grow new tissue.

What makes a material a biomaterial is not what it is made of but how it is chosen and engineered for the job. Designers tune its strength, flexibility, surface texture, and whether it stays put for decades or safely dissolves in weeks. Above all it must be biocompatible — it has to coexist with the body without poisoning cells, triggering a damaging immune attack, or making blood clot in the wrong place.

Biomaterials are the physical backbone of regenerative medicine. A hip implant simply has to survive in the body, but a tissue scaffold has a harder job: it must invite the body's own cells to move in, grow, and eventually replace it. Getting that conversation between material and living cells right is one of the central challenges of the whole field.

Also called生物材料

Bioprinting is 3D printing with living cells. A normal 3D printer squeezes out molten plastic layer by layer to build an object; a bioprinter instead lays down a soft, cell-laden gel, stacking thin layers until a piece of living tissue takes shape. The big advantage is control: you can place different cell types exactly where they belong, building structures far more precise than letting cells settle on their own.

It works from a digital blueprint, often based on a real scan of a body part. Software slices that 3D shape into hundreds of thin layers, and the printer traces each one in turn, depositing cells and supporting biomaterials point by point. Because the gentle gel sets in place, the printed cells stay where they were put long enough to knit together and begin behaving like genuine tissue.

Bioprinting is one of the most exciting tools for building tissue with a designed internal architecture — including the channels a future blood supply might use. But printing a working organ is still largely experimental: keeping millions of printed cells alive, fed, and properly organized after the print finishes remains a formidable, unsolved challenge.

Also called3D bioprinting生物打印生物列印

A bioreactor is a controlled vessel that keeps living cells or growing tissue alive and helps them mature. Cells are fussy: they need a steady supply of nutrients, the right amount of oxygen, a stable temperature, and waste carried away — all at once. A bioreactor is essentially a high-tech incubator and life-support tank that manages those conditions automatically, like a fish tank engineered to keep its inhabitants thriving rather than merely surviving.

Beyond feeding cells, the best bioreactors give tissue the physical cues it would feel inside a body. They can pump fluid so it flows past cells, gently stretch a growing heart patch, or apply pressure to bone-like tissue — because many cells only build proper, strong tissue when they are exercised. Sensors track oxygen, acidity, and nutrients, and the system adjusts the flow to keep everything in a healthy window over days or weeks.

Bioreactors matter because growing real tissue takes time and constant care that no one could provide by hand. They are workhorses for tissue engineering and for manufacturing cell therapies at scale, turning a fragile lab experiment into a more reliable, repeatable process — an essential bridge between a few cells in a dish and something large and mature enough to be useful.

Also called生物反应器生物反應器

Bipedal walking is moving on two legs the way humans do — taking steps by lifting one foot, swinging it forward, and catching the body's weight on it before lifting the other. It sounds effortless because you have done it since you were a toddler, but for a robot it is one of the hardest tricks in all of robotics. With only two narrow feet for support, a two-legged machine is almost always on the edge of toppling over, and a single mistimed step sends it crashing down.

The trouble is balance. When both feet are on the ground the robot is fairly stable, but to actually move it must lift one foot, and in that instant it is standing on a single small foot, like balancing on one leg. Walking is really a controlled, repeated near-fall: the robot tips its weight forward, then quickly swings the free leg out to catch itself before it hits the floor, over and over. To do this it must sense its tilt many times a second and constantly nudge its joints and shift its weight to stay upright — a tireless juggling act that never stops while it is on its feet.

Engineers describe a stride by which feet are down. During the double-support phase both feet touch the ground and the robot is steadier; during the single-support phase only one foot is planted while the other swings through the air, and balance is most precarious. A smooth walk is just these two phases alternating in a steady rhythm — left single-support, double-support, right single-support, double-support — repeating with every step. The faster and more aggressively this rhythm runs, the more the robot relies on motion rather than a wide stance to stay up.

Also calledtwo-legged walkinghumanoid walking双足步行

Bipolar disorder is a long-term mood illness in which a person's mood swings between two opposite extremes, often with stretches of normal mood in between. At one end are highs called mania, where someone may feel unstoppable, race with ideas, sleep very little, talk fast, and act on risky impulses they would normally hold back. At the other end are deep lows of depression, where the same person may feel heavy, hopeless, exhausted, and unable to enjoy anything. The word 'bipolar' simply means two poles — think of a thermostat that, instead of holding a steady setting, lurches between blasting hot and freezing cold.

These mood states come in episodes that can last days, weeks, or months, and they are far stronger and longer than ordinary good days and bad days. During mania the brain's drive and reward systems seem to run in overdrive, while during depression they run nearly empty; many researchers point to unstable signaling among chemical messengers such as dopamine and serotonin and to disturbed sleep and body-clock rhythms as part of what tips a person from one pole to the other. The illness tends to run in families, which shows that genes load the dice, while stress, sleep loss, and major life upheavals often help trigger when an episode actually arrives.

Bipolar disorder is a serious but treatable condition, not a moral failing or a simple choice. Because the high of mania can feel good or even productive, it is easy to miss or mistake for ordinary depression, yet recognizing both poles is what makes the right diagnosis possible. Mood-stabilizing medicines, steady sleep, and talk therapy can flatten these swings and let people live full lives — which is why it is treated as a lifelong condition to manage rather than a passing mood to wait out.

Also calledmanic-depressive illnessmanic depression躁郁症躁鬱症双相障碍雙相障礙
See alsoanhedonia

The birdsong neural circuit is the dedicated network of brain regions that songbirds use to learn, store, and produce their songs. Instead of being scattered everywhere, the key players are a handful of compact clusters of neurons — scientists call such a cluster a nucleus — wired together into a clear chain of command. Because these clusters are so well-defined and only fully developed in birds that learn their songs, the whole system is one of the cleanest natural examples of a brain circuit built specifically for a learned skill.

Two main pathways run through the circuit. One is a 'play it now' pathway, running from a region called HVC to a region called RA and on to the muscles of the bird's voice box, which actually drives singing in real time, syllable by syllable. The other is a 'learn and correct' loop that passes through a structure known as Area X; this loop compares the sound the bird is making against the tutor song it memorized as a chick and nudges the motor pathway until the two match. Think of one pathway as the musician performing and the other as the coach listening and giving feedback.

Birdsong is a model for vocal learning because, like a human child learning to speak, a young songbird must hear an adult tutor, hold that sound in memory, and then practice babbling sounds of its own until they slowly converge on the model. Very few animals learn their vocalizations this way — most just inherit their calls — so songbirds give scientists a rare, experimentally accessible window into how a brain turns listening into speaking, with lessons that may reach all the way to human language.

Also calledsong systemsong-control nuclei鸣唱系统鳴唱系統发声控制核团發聲控制核團

Bitcoin is the first widely used blockchain and the digital money that runs on it. Launched in 2009 from a design published under the name Satoshi Nakamoto, it set out to solve a long-standing puzzle: how to let strangers send value directly to one another over the internet, the way they hand over cash in person, without a bank or payment company sitting in the middle to approve and record every move. Bitcoin answered this by replacing the trusted middleman with a shared public ledger that thousands of independent computers all keep and agree on.

Under the hood, Bitcoin works by collecting transactions into blocks and chaining those blocks together, secured by a process called proof of work in which participants spend real computing effort to earn the right to add the next block. This makes rewriting history enormously expensive and keeps everyone honest without anyone being in charge. The supply is capped by the rules at twenty-one million coins, released on a gradually slowing schedule, so no central authority can print more at will.

Beyond being a currency, Bitcoin matters as a proof of concept: it showed that a ledger with no owner could still be trustworthy, scarce, and global. That demonstration launched an entire field — thousands of later blockchains, tokens, and applications all trace their lineage back to ideas Bitcoin proved could work. It remains the largest and most recognized network of its kind, often treated as the reference point against which every newer design is compared.

Also calledBTC比特币比特幣

A black hole is a place where gravity has won so completely that nothing can climb back out — not a rocket, not a beam of light, not even the fastest thing in the universe. Picture a funnel so steep that whatever rolls in can never roll back up. That "point of no return" is a real, invisible boundary called the event horizon: cross it, and there is simply no road back.

Most black holes are the corpses of giant stars. When a star far heavier than our Sun runs out of fuel, its core collapses under its own weight and crushes down to an unimaginable density — so much mass squeezed into so little space that gravity near it becomes overwhelming. We can't see the hole itself, because no light leaves it; we spot it by how it bends starlight, whips nearby stars around, or heats the gas spiralling in until it blazes.

A common myth is that black holes are cosmic vacuum cleaners, roaming space and sucking everything in. They don't. From a safe distance a black hole pulls on you exactly as an ordinary star of the same mass would — if the Sun were swapped for a black hole of equal weight, Earth's orbit wouldn't change at all. You only meet your doom if you wander past the edge.

Also calledevent horizonstellar black hole事件视界事件視界Schwarzschild radius

A blastema is the mass of de-specialized cells that forms at an amputation site — the stump of a salamander's lost leg, for example — and then rebuilds the missing part. It is, in a real sense, nature's regeneration kit: a small bud of flexible cells that knows how to regrow a whole limb. Where humans would seal the wound with a scar, these animals form a blastema and grow the limb back instead.

What is remarkable is how it forms. Mature cells near the wound appear to step backward, shedding their specialized identity to become flexible, fast-dividing cells again. This bud of cells then multiplies and, guided by positional signals, re-grows exactly what was lost — the right bones, muscles, and nerves, in the right order — rather than a random lump.

The blastema is a kind of holy grail for the field, because it is living proof that a complex body part can be regrown from scratch. Studying how salamanders and zebrafish build one — and why mammals do not — is a central thread in the search to unlock fuller regeneration in humans.

Also called胚芽基再生芽基

Picture a single qubit as an arrow pointing from the center of a globe out to a spot on its surface. That picture is the Bloch sphere. The north pole stands for the state we call |0>, the south pole for |1>, and every other point on the surface is some superposition of the two — a specific blend with a specific phase. The two numbers you need to name a point, a latitude and a longitude, are exactly the two real numbers it takes to describe one qubit's state, so the sphere isn't a loose metaphor: it's a faithful map of every possible state of a single qubit.

Once you have that map, single-qubit gates become easy to see: each one simply rotates the arrow to point somewhere new. A gate that flips |0> and |1> turns the arrow from one pole to the other; a phase gate spins it around the vertical axis. Measurement is different — it doesn't rotate the arrow, it forces a readout along the poles, and the closer your arrow leans toward a pole, the more likely you are to get that pole's outcome. Once measured, the arrow snaps to whichever pole came up.

A few honest limits keep this picture useful rather than misleading. The Bloch sphere is a mental model, not a piece of hardware — nothing inside the machine is literally spinning. It describes exactly one qubit at a time, so it can't draw the entanglement that links two or more qubits together, which is where much of quantum computing's real power lives. And points on the surface are the clean, idealized states; real qubits drift inward toward the center as noise blurs them.

Also calledBloch ball布洛赫球面布洛赫球量子比特状态球量子位元狀態球

A block is a bundle of recent transactions, packaged together and added to a blockchain as a single batch. Rather than writing every transaction to the shared ledger one at a time, a network collects a few hundred or a few thousand of them, wraps them up, and appends the whole parcel at once. Think of it as a single page in a communal account book: each page holds many entries, the pages are filled in order, and once a page is full it is glued permanently into the binding.

What makes a block more than just a list is how it is sealed and chained. Every block carries a compact summary called a header, which includes a cryptographic fingerprint (a hash) of the block before it. Because that fingerprint changes completely if even one character of the earlier block is altered, each block effectively locks the entire history that came before it. Tamper with an old page and every later page's seal stops matching, so the whole network instantly sees that something is wrong.

Blocks are why a blockchain can be both append-only and trustworthy without any central record-keeper. New blocks arrive at a roughly steady pace set by the network's rules, and once enough later blocks pile on top, a block becomes practically impossible to rewrite. This steady, chained, batch-by-batch growth is the literal shape behind the name blockchain: a chain of blocks, each one vouching for all the ones before it.

A block header is the small summary section at the top of every block — the cover sheet that describes the block without listing all its transactions. While a block's body may hold thousands of transactions and be quite large, its header is tiny and fixed in size, holding just a handful of essential fields. This compactness is deliberate: it lets the network identify, verify, and link blocks quickly without dragging around the full contents each time.

The header packs in the few facts that make the chain hang together. It contains the hash of the previous block's header (the link backward that forms the chain), a single fingerprint summarizing all the transactions inside (the Merkle root, like one number that vouches for the entire receipt book), a timestamp, and the rule-specific values the network uses to accept the block — for example, on a proof-of-work chain, a difficulty target and a nonce. Hashing just this small header, rather than the whole block, is enough to commit to everything.

Headers matter because they let lightweight devices trust the chain without storing all of it. A phone wallet can download just the chain of headers — a fraction of the full data — and still confirm that a given transaction was included, by checking it against the Merkle root in the relevant header. The header is the handle by which the entire heavy block can be safely grasped, referenced, and proven.

A blockchain is a shared record book that many computers keep identical copies of at the same time. Instead of one company owning the master copy, everyone on the network holds the same list of entries, and they all follow the same rules to agree on what gets added next. It solves a very old problem: how can strangers who do not trust each other agree on a single set of facts without a referee in the middle?

The name comes from how the data is packed. New entries (such as payments) are bundled into a group called a block, and each block carries a tiny fingerprint of the block before it. Chaining the fingerprints together means the blocks form a strict order, like beads on a string. If anyone tries to quietly change an old entry, its fingerprint changes, the next block no longer matches, and the tampering is obvious to everyone. This is what makes the history practically impossible to rewrite.

Because every participant keeps a full copy and the rules are public, no single party can secretly edit the past, block a valid entry, or print extra money for themselves. That is why a blockchain can power things like digital cash, ownership records, and self-running programs without needing a bank or a central administrator to be trusted.

Also called区块链區塊鏈

A blockchain bridge is a system that lets value or information move between two separate blockchains that otherwise cannot talk to each other. Each blockchain is its own self-contained world with its own ledger, so a coin on one chain has no native way to appear on another. A bridge is the connecting infrastructure that makes a token or message on chain A usable on chain B, which is essential once an ecosystem spreads across many chains and layer-2 networks.

The most common method is lock-and-mint. To move an asset from chain A to chain B, the bridge locks the original on chain A and mints an equivalent "wrapped" representation on chain B, backed one-for-one by what is locked. To return, you burn the wrapped version on chain B and the original is unlocked on chain A. The whole scheme depends on something reliably watching both chains and honestly reporting what happened, and how trustworthy that watcher is varies enormously between bridge designs.

Picture an airport currency exchange: you hand over dollars, which go into the vault, and receive an equal value in euros to spend abroad; bring the euros back and reclaim your dollars. The bridge is the exchange desk that keeps both sides balanced. Bridges are what turn a scattered collection of chains into one connected economy, letting assets and data flow where they are most useful rather than being stranded on whichever chain they were born on.

Also calledcross-chain bridge跨链桥跨鏈橋

A fork is what happens when a blockchain splits into two possible paths. Because the chain is just a single growing line of blocks, a fork is a fork in the road — a moment where two different versions of 'what comes next' exist at once. Some forks are momentary accidents the network quickly resolves; others are deliberate changes to the rules that can permanently divide a chain into two.

Temporary forks happen naturally. If two miners find a valid block at nearly the same time, parts of the network briefly see different tips of the chain. The protocol settles this automatically: whichever branch gets extended first becomes the accepted chain, and the orphaned block is discarded. This is just the network healing a brief disagreement, and it resolves within a block or two.

Deliberate forks are upgrades to the rules themselves, and they come in two flavors. A soft fork tightens the rules in a backward-compatible way, so nodes that have not upgraded still accept the new blocks — the network stays unified. A hard fork loosens or changes the rules so that old and new software no longer agree; if part of the community keeps running the old rules, the chain permanently splits into two separate networks with two separate coins, as happened when Bitcoin Cash split from Bitcoin.

Also calledforkhard forksoft fork分叉硬分叉软分叉軟分叉

A blockchain oracle is a service that brings real-world information onto the blockchain so that smart contracts can use it. By design, a blockchain is a sealed world: contracts can only see data already on the chain, and they cannot reach out to a website or sensor on their own. This keeps everyone's computers in agreement, but it also means a contract has no native way to know yesterday's exchange rate, the score of a match, or the weather. An oracle is the trusted messenger that fetches such facts from the outside and delivers them on-chain in a form contracts can read.

The reason contracts cannot simply browse the internet themselves is determinism: every node must compute the exact same result, but an outside website might answer differently from one moment or one machine to the next, breaking that agreement. An oracle solves this by gathering the information off-chain and then writing it onto the blockchain as ordinary data that every node sees identically. To avoid trusting a single source that could be wrong or dishonest, robust oracles often pull from many independent providers and combine their answers, so no lone reporter can quietly feed the contract a false number.

Oracles matter because most useful applications need to react to the outside world. A loan that must check whether collateral is still worth enough, an insurance payout triggered by a real flight delay, a bet settled by a real game result, all depend on reliable outside data. Oracles are the bridge that lets self-contained contract logic connect to reality, which is why they are sometimes called critical plumbing for the whole space, and why their honesty is taken so seriously.

Also calledoracle预言机預言機

Blood pressure is the push your blood makes against the walls of your arteries as your heart pumps it around the body. Think of a garden hose: the water inside presses outward on the rubber, and if you crank the tap higher, the walls feel the strain. Your arteries live with that push every second of your life.

It's read as two numbers — say, 120 over 80. The top, systolic, is the harder shove each time the heart beats; the bottom, diastolic, is the gentler pressure between beats, while the heart refills. A healthy adult sits around 120/80; doctors watch when it creeps up and stays there.

Here's the quiet danger: high blood pressure usually causes no symptoms at all. You can feel perfectly fine while years of extra strain slowly damage your heart, brain, kidneys, and eyes — which is why it earned the nickname "the silent killer." The only way to know is to measure it, and the good news is that catching it early makes it very treatable.

Also calledsystolic over diastolichypertension (when chronically high)BP高血压收缩压舒张压

The blood-brain barrier is a living gatekeeper that wraps around the tiny blood vessels feeding the brain, deciding what is allowed to leave the bloodstream and reach the brain's cells. In most of the body, the walls of the smallest vessels are a little leaky, like a chain-link fence that lets all sorts of things drift through. In the brain, those same vessel walls are sealed up tight, more like a brick wall: the cells lining them (called endothelial cells) are stitched together by special seams known as tight junctions, leaving almost no gaps. The result is a fence so picky that most molecules floating in the blood — toxins, germs, stray drugs, even many nutrients — simply cannot cross on their own.

This careful screening keeps the brain in a calm, stable chemical bath, protected from the constant ups and downs of the blood, and shielded from many bacteria and poisons that would otherwise wreak havoc on delicate neurons. The barrier is not a passive wall, though: it actively pumps in the specific things the brain needs, such as the sugar glucose for fuel and certain amino acids, while pumping unwanted substances back out. It is built and maintained by a team — the vessel cells working together with supporting brain cells called astrocytes and others — which is why scientists describe it as part of a larger neurovascular unit rather than a barrier acting alone.

The same protection that guards the brain also makes it hard to treat. Because so few molecules can slip through, many medicines that would help a sick or infected brain are blocked at the gate, which is one of the great challenges in developing drugs for conditions like brain tumors, Alzheimer's disease, and infections. And when the barrier itself breaks down — after a stroke, injury, or in some diseases — harmful substances and immune cells can flood in, contributing to swelling and further damage.

Also calledBBB血脑障壁血腦障壁

Boilerplate is the repetitive setup code you write almost the same way every single time — the standard opening lines you have to lay down before the interesting part of a program even begins.

Every new project needs its plumbing: import the libraries, configure the settings, wire up the basics. None of it is the clever idea you came to build — it's the same scaffolding around it, identical from one project to the next. The name comes from old print shops, where ready-made blocks of text were cast on steel plates and reused unchanged across many newspapers.

Because it's so predictable, tools love to generate it for you — a 'create-app' command or a starter template hands you the boilerplate so you can skip straight to the fun part. When you copy it without quite reading it, that's normal; just know it's the floor you're standing on, not the room you came to decorate.

Also calledboilerplate codescaffoldingstarter codetemplate

Boolean algebra is the math of true and false — or, in a computer, 1 and 0. Instead of adding and multiplying numbers, you combine yes/no facts using just three operations: AND, OR and NOT. Think of a porch light wired to two switches: AND means the light glows only when both switches are on; OR means either one is enough; NOT simply flips a switch's answer to its opposite.

George Boole worked this out in the 1850s, long before computers existed. Decades later engineers realised those same true/false rules describe circuits perfectly, since a wire is either carrying voltage (1) or not (0). Today every chip is a vast pile of AND, OR and NOT gates. Boolean algebra lets designers write down what a circuit should do, then shrink that into fewer gates — for example proving "A AND A" is just "A," saving transistors and power.

Also calledBoolean logictruth table布尔代数布林代數

Brain allometry is the study of how brain size changes in step with body size as you compare one animal species to another. The key idea is that bigger bodies tend to come with bigger brains, but not in a simple one-to-one way: when an animal is, say, ten times heavier, its brain is usually only a few times bigger, not ten times bigger. Scientists capture this lopsided relationship with a tidy rule of thumb called a scaling law, which is just a formula describing how one measurement grows relative to another. Picture plotting body weight against brain weight for hundreds of species on a chart: instead of a chaotic scatter, the points line up along a smooth, predictable curve.

Why does this matter? Because the curve gives us a baseline expectation, and the interesting animals are the ones that sit far above or below it. A species whose brain is much heavier than the scaling law predicts for its body, such as humans, dolphins, or crows, is said to have a high relative brain size, and that surplus often hints at richer behavior or intelligence. But brain weight is a crude yardstick, so researchers increasingly count actual neurons, the cells that do the brain's information processing. It turns out neuron number does not track brain size the same way in every group: a primate brain packs far more neurons into each gram than a rodent brain of the same weight, which is one reason a human brain, though smaller than an elephant's, holds more neurons in its outer layer. Allometry, then, is the toolkit for asking which brains are truly exceptional and which are simply the expected size for the animal carrying them.

Also calledbrain-body scalingbrain size scaling脑体异速腦體異速

Brain-inspired AI is artificial intelligence that borrows its design ideas from how living brains work, rather than from ordinary computer engineering. Most familiar AI runs as math on standard computer chips. Brain-inspired AI instead asks a simpler question: the brain is the only thing we know that is truly good at learning, seeing, and acting in a messy world, so why not copy the tricks it uses? Think of it like an aircraft designer studying a bird's wing — you do not need feathers, but the shape and motion teach you something about flight.

In practice this means imitating a few key features of real brains. Brain cells, called neurons, do not send steady signals; they fire short electrical blips, or spikes, only when something matters, which saves enormous energy. The connections between neurons, called synapses, grow stronger or weaker as you learn, so memory and computing happen in the very same place instead of being shuttled back and forth. Brain-inspired systems try to copy these habits — spiking signals, local learning, and tight packing of memory with processing — sometimes in software and sometimes in special chips. The hoped-for payoff is hardware that learns continuously and runs on a tiny fraction of the power that today's data-center AI consumes, closer to the roughly twenty watts a human brain uses.

Also calledneuromorphic AIbrain-like computing类脑计算類腦計算神经形态人工智能神經形態人工智慧

The brainstem is the stalk-like part of the brain that sits at the very bottom, connecting the large wrinkled brain above it to the spinal cord running down your back. Think of it as the thick cable and switchboard between your head and the rest of your body: almost every signal traveling between brain and body passes through it. It is small, but it runs the machinery that keeps you alive without you ever thinking about it.

The brainstem is built from three stacked sections. At the top is the midbrain, which helps control eye movements and relays signals for sight and sound. In the middle is the pons, a bulging bridge that ferries messages between the two halves of the brain and helps with breathing and sleep. At the bottom is the medulla, which sets the rhythm of your heartbeat and breathing and triggers automatic reflexes like swallowing, coughing, and vomiting. These housekeeping jobs are called autonomic functions, meaning they happen on their own, and reflexes are fast, built-in responses you do not have to decide on.

Because so many vital controls are packed into this small region, the brainstem is one of the most delicate and important parts of the body. Damage here can be life-threatening, since it can stop the very breathing and heartbeat we rely on every moment. It is also the route that ten of the twelve cranial nerves use, the wires that connect the brain directly to the face, eyes, ears, mouth, and throat.

Also calledbrain stem脑桥及邻近结构腦幹結構

A brain–computer interface is a direct link between brain activity and a machine. Normally your intentions reach the world by traveling out through nerves to your muscles; a BCI taps the signal earlier, reading activity straight from the brain so it can act without that detour.

The loop has a few steps. The system records neural signals, decodes what they mean — an intended movement, a chosen letter, a mental state — and turns that into an output like a moving cursor, a robotic arm, or a typed word. Often it also shows you the result so you can adjust, closing the loop. Setups range from a non-invasive cap of scalp electrodes to fine wires implanted in the brain.

Crucially, a BCI is not mind-reading. It learns to recognize specific, trained signals — say, the pattern you produce when you imagine squeezing your hand — and reacts to those. It cannot pull out your private, unspoken thoughts; it only responds to the particular signals it was set up to detect.

Also calledBCIbrain–machine interfaceBMI脑机接口腦機介面脑机界面

A branch is a parallel line of work — your own private copy of the project where you can build something new without touching what everyone else relies on. The shared, official version usually lives on a branch called main; you make your own branch off it, tinker freely, and only fold your work back in once it's ready.

It's lighter than it sounds. A branch isn't a folder full of copied files — it's just a movable pointer to a commit. Making one is instant, and switching between branches is like flipping the project to a different version in place. This cheapness is on purpose: you're meant to branch often, even for a five-minute experiment.

The everyday rhythm is one branch per task. Fixing a bug? Branch. Trying a risky idea? Branch. If it works out, you merge it in; if it doesn't, you just throw the branch away and main never knew a thing. Your messes stay your own until you decide to share them.

Also calledgit branchfeature branchmainmaster
See alsocommitmerge

Broca's area is a small patch of brain tissue near the front of the left side of the brain, just above and behind the temple, that helps you turn thoughts into spoken or written words. Think of it less as the place where ideas are born and more as the workshop where those ideas get packaged into smooth, grammatical speech — choosing the right words, putting them in the right order, and lining up the muscle movements of the lips, tongue, and throat that actually produce sound. When you smoothly say a full sentence like "I'd love a cup of tea," this region is quietly doing a lot of the assembly work behind the scenes.

We know about it largely thanks to what happens when it is damaged, often by a stroke. People with injury here can usually still understand what others say and still know exactly what they want to express, but speaking becomes slow, effortful, and broken — they may drop small grammar words like "the" and "is," leaving short, telegram-style phrases such as "want… tea… please." This pattern is called Broca's aphasia, and the gap between clear understanding and struggling speech is the classic clue that this particular workshop, rather than the brain's comprehension machinery, has been hit.

The region is named after the French physician Paul Broca, who in the 1860s linked this spot to speech after examining patients who had lost fluent speech. In most people the language-producing area sits in the left half of the brain, even in many left-handers, which is one of the clearest examples of the two halves of the brain taking on different jobs. Modern brain scanners that light up busy regions during a task confirm that this area grows active when people form sentences and grammar, not just when they make simple sounds, showing it is tied to the structure of language itself.

Also calledBroca's regionspeech production area布罗卡氏区言语运动区言語運動區

A Brodmann area is one of roughly 50 numbered patches of the cerebral cortex — the wrinkled outer sheet of the brain — that a German doctor named Korbinian Brodmann mapped out in 1909. He stained thin slices of brain tissue and looked at them under a microscope, noticing that the cortex is built from layers of nerve cells stacked like floors of a building. In some patches the layers are thick, in others thin; in some the cells are crowded, in others spread out. Wherever the pattern of cells changed, he drew a border and gave the region a number, from 1 up to about 52.

What makes these areas so useful is that the way the cells are arranged (called cytoarchitecture, literally the architecture of cells) often lines up with what that piece of brain does. Area 17, for example, has a distinctive striped layer and turns out to be the first place vision is processed; areas 44 and 45 sit where much of speech is produced. So Brodmann's numbers became a shared address system: a scientist anywhere in the world can say a brain scan lit up in area 4 and others immediately know they mean the strip that controls movement. The map links structure (how the brain is built) to function (what it does), which is why it is still used in textbooks and research more than a century later.

Also calledBrodmann's areaBAcytoarchitectonic area布罗德曼区布羅德曼區细胞构筑分区細胞構築分區

A browser is the program you use to visit websites — Chrome, Safari, Firefox, Edge. Its job is to fetch a web page from some server far away and then draw it on your screen as something you can read and click. Everything you do 'on the web' actually happens through a browser.

Under the hood it's running three things a website sends it. HTML is the page's structure and words; CSS is the styling — colours, fonts, layout; and JavaScript is the behaviour that makes the page react when you type or click. The browser takes those three, assembles them into the page you see, and keeps it lively. In that sense a modern browser is less a viewer and more a little machine that runs other people's programs.

It also handles the messy plumbing for you: looking up addresses, opening a secure connection, downloading images, keeping you logged in. You type 'go here', and the browser quietly does the fetching, decoding, and drawing — so the whole web feels like one smooth place rather than thousands of separate servers.

Also calledweb browserChromeSafariFirefox

A brushless DC motor is the high-performance cousin of the ordinary DC motor, with the wearing, sparking brushes thrown out. It is the motor spinning your drone's propellers, your hard drive's platter, and the wheels of many electric vehicles. With no rubbing parts to wear away, it runs cleaner, quieter, cooler, and far longer — often for tens of thousands of hours.

The clever part is how it does without brushes. In a plain DC motor, brushes mechanically flip the current at the right moment to keep it turning. A brushless motor moves that job out of the motor and into electronics: the permanent magnets are now on the spinning part, the coils are fixed to the motor's body, and a small circuit switches the current through the coils in the right sequence, at the right instant, to pull the magnets around. This electronic switching is called commutation, so a BLDC is also known as an electronically commutated motor. The catch is that it cannot simply be plugged into a battery — it always needs that driver circuit to run at all.

Because the timing is handled by electronics rather than dragging brushes, a BLDC squeezes more torque and speed out of the same size and weight, wastes less energy as heat, and can be controlled with great finesse. Those gains are exactly why it dominates anywhere efficiency, power-to-weight, or long life matters — from quiet ceiling fans to racing drones to robot joints. The price is complexity and cost: you are paying for the brains in the driver as well as the motor itself.

Also calledBLDCelectronically commutated motorECM无刷电机無刷馬達

A bundler is a tool that stitches your many source files — JavaScript, CSS, images, and the libraries they pull in — into a few small, optimized files a browser can download and run fast. You write code split across dozens of tidy files; the bundler packs them for the trip.

It also tidies along the way: removing dead code, shrinking file sizes, and translating newer syntax so older browsers cope. The result is far fewer downloads, so your page loads quicker.

Vite, webpack, and esbuild are the popular ones today. You mostly meet a bundler through a 'build' step that turns your readable project into the lean bundle you actually ship.

Also calledvitewebpackesbuildrollupbuild tool

The burden of proof answers a simple but powerful question: when two sides disagree, who has to do the convincing? The law's default is that the person making the claim must back it up — not the person denying it. If you say your neighbor borrowed your ladder and never returned it, it's on you to show it, not on your neighbor to prove they didn't. Think of it as a backpack: whoever carries it has to walk it all the way to the finish line, and if they can't, they lose.

But the burden has two layers — not just who must prove, but how convincingly. In a criminal trial, where someone's freedom is at stake, the prosecution must prove guilt 'beyond reasonable doubt' — so sure that no sensible person would hesitate. In an ordinary civil dispute, like a money quarrel, the bar is much lower: 'the balance of probabilities,' meaning simply more likely than not — if the evidence tips even slightly past the midpoint, that is enough. (Think of it loosely as just over 50/50; the test is really about which story is more believable, not about counting to a precise number.)

A common mix-up is to think the accused must prove their innocence. For the elements of the charge, they don't — the prosecution must prove guilt, so a defendant who stays silent and proves nothing on those points can still walk free. (Some specific defences are an exception: when an accused raises something like insanity, they may have to prove that defence themselves, though usually only on the lighter balance of probabilities.) But on the core question of guilt, if the accuser never carries its backpack to the line, the tie goes to the defendant.

Also calledonus of proofonus probandi证明责任證明責任

Byzantine fault tolerance is the ability of a network to keep working correctly even when some of its participants are not just broken, but actively lying or trying to sabotage agreement. The name comes from a classic puzzle: several generals surrounding a city must coordinate to all attack or all retreat, sending messages by courier — but some generals may be traitors sending contradictory orders. Can the loyal ones still reach a unanimous, correct decision?

This is exactly the problem a public blockchain faces. Thousands of anonymous participants, some of whom may be malicious, must agree on one shared ledger without trusting each other. A system is called Byzantine fault tolerant if it can reach correct agreement as long as the dishonest participants stay below some threshold — classically, fewer than one-third of them. Beyond that limit, the traitors can force confusion; below it, the honest majority always prevails.

Every blockchain consensus mechanism is, at heart, a practical solution to this puzzle. Proof of work makes it expensive to be a loud traitor by requiring real computation; proof of stake makes treachery costly by putting the traitor's own deposit at risk. Either way, the design goal is the same: tolerate a bounded number of liars and failures, and still let the honest participants converge on one true, agreed-upon history. Byzantine fault tolerance is the formal property that makes a trustless network possible.

Also calledBFT拜占庭容错拜占庭容錯拜占庭将军问题拜占庭將軍問題
C

A connectome is a complete wiring diagram of a nervous system: a map that names every neuron and draws every connection between them. The C. elegans connectome is that map for a tiny soil roundworm called Caenorhabditis elegans, and it was the first one ever finished for a whole animal. Because the adult hermaphrodite worm has exactly 302 neurons, the same count in every individual, its entire nervous system could be charted neuron by neuron.

Producing it was painstaking handwork. In the 1970s and 1980s a team led by John White and Sydney Brenner sliced the worm into thousands of slivers thinner than a soap bubble, photographed each one under an electron microscope, and traced by eye which neuron touched which across the whole stack of images. The result, published in 1986, was nicknamed The Mind of a Worm and gave biology its first full circuit diagram of a living creature.

This map turned the worm into a foundational model for circuit neuroscience, the study of how connected groups of neurons produce behavior. Knowing every cell and link, researchers can ask precisely how a fixed circuit generates feeding, mating, or fleeing from danger, and they can test their answers by switching single neurons on or off. It remains the reference and the inspiration for the much harder work of mapping larger brains, such as those of flies and mice.

Also calledworm wiring diagram302-neuron connectome线虫连接组線蟲連接組
See alsonerve net

Cable theory is the math that describes how an electrical signal spreads along the thin, wire-like parts of a neuron — the long output cable called the axon and the bushy receiving branches called dendrites. The idea was borrowed, name and all, from the engineers who in the 1800s tried to send telegraph messages through undersea cables and found their signals arriving smeared and faint. A stretch of dendrite or axon turns out to behave just like one of those imperfect cables: it is a leaky tube, not a clean wire, so a voltage nudge applied at one spot does not arrive unchanged somewhere else. Cable theory writes down, in a single equation, exactly how that nudge fades and slurs as it travels.

The picture behind the math is simple. The watery inside of the fiber lets charge flow lengthwise but resists it a little, like a long thin pipe; meanwhile the membrane wall is a leaky, slightly elastic skin that both lets some charge dribble out sideways and stores charge like a tiny battery before it will pass a change along. Balancing flow-down-the-middle against leak-and-storage-through-the-wall gives two numbers that say almost everything. The length constant is the distance over which a steady signal shrinks to about a third (37 percent) of its starting size — fatter, better-insulated fibers carry it farther. The time constant says how sluggishly the voltage at each point responds, so signals not only shrink but also blur in time.

This is why cable theory sits at the heart of computational neuroscience. It explains why a neuron must regenerate the action potential — its all-or-nothing electrical spike — at point after point to send a message over long distances, since pure passive spread would die out within a millimetre or two. It also predicts how the thousands of small inputs landing on a dendritic tree shrink and combine on their way to the cell body, shaping whether the neuron fires at all. Modern simulations chop a neuron into many tiny cable segments and solve the equation in each, turning a real cell's branching shape into a working model of how it computes.

Also calledcable equationcore-conductor theory电缆方程電纜方程

A cache is a stash of results kept somewhere close and fast, so you don't have to redo slow work every time. The first time is expensive — fetch from a faraway server, run a heavy calculation — but you save the answer, and every time after that you just grab the saved copy.

Think of it like keeping your everyday mugs on the counter instead of climbing up to the top shelf each morning. Your browser caches images so a page loads instantly on your second visit; a database caches frequent queries so it doesn't have to recompute them.

The catch is staleness: a cached copy can fall out of date with the real thing. Deciding when to throw the old copy away is 'cache invalidation' — only half-jokingly called one of the two hardest problems in computer science.

Also calledcachingmemoizationcdnbrowser cache

Calcium imaging is a method for watching neurons fire by making them light up. Researchers cannot see an electrical signal directly with a microscope, so they use a clever stand-in: every time a neuron fires, a brief flood of calcium ions rushes into the cell. The trick is to load the cell with a special dye or protein, called a calcium indicator, that glows brighter when calcium is around. So a flash of light becomes a visible sign that the neuron just spiked.

The most popular indicators today are engineered proteins like the GCaMP family. Because they are built from genes, scientists can switch them on in just the cell types they care about, and even in a living animal, then watch hundreds or thousands of neurons brighten and dim at once under a microscope. This turns invisible activity into a glittering movie of a whole population of cells working together.

There is a trade-off worth knowing. The calcium glow is a slow, indirect echo of the firing — it rises and fades over a fraction of a second, far more sluggishly than the lightning-fast electrical spike itself. So calcium imaging is excellent for seeing which cells are active and where, but it blurs the exact timing of individual spikes.

Also calledcalcium fluorescence imagingCa2+ imaging钙荧光成像鈣螢光成像

Calibration is the short training session at the very start of a BCI session, where the user produces known signals on cue. The system prompts: "now imagine moving your right hand," then "now your left," recording the brain activity each time. Because it knows what the user was told to do, it ends up with a small, labelled collection of examples — exactly what the decoder needs to learn from.

It is needed because no two brains are alike, and even the same brain differs from day to day. Electrode positions shift slightly, the person is more or less alert, the gel has dried a little — so a decoder tuned last week may not fit today. Calibration re-fits the decoder to this person, on this day, in this setup, which is why so many BCIs begin with a few minutes of these cued trials.

The trade-off is time and patience: long calibrations are tiring and eat into useful work. A major thread of research aims to shrink or skip them, by reusing models across sessions or letting the decoder keep adapting quietly while the system is actually in use.

Also calledcalibration sessiontraining session校准环节校準階段

Camera calibration is the measuring process that pins down a camera's hidden numbers — its intrinsic parameters, its lens distortion, and often its extrinsic pose — so the robot can trust exactly how that camera maps the world onto pixels. Out of the factory, you only have a rough idea of a camera's focal length and where its optical center sits, and every lens bends light a little differently. Calibration replaces those guesses with precise values measured from real images.

The classic method uses a target whose geometry is known perfectly, most often a flat checkerboard with squares of an exact size. You photograph it from many angles and distances. Software then detects every corner of the board in each image and asks: what set of intrinsic numbers, what distortion, and what camera pose for each shot would make the model's predicted corner locations line up best with the corners actually seen? It searches for the answer that minimizes the total mismatch, and out come the camera's parameters along with a distortion model that says how the lens warps straight lines.

Without calibration, measurements drawn from images are systematically wrong: distances are off, straight edges look curved, and stitched-together views do not align. With it, a robot can undistort its pictures, measure real sizes and angles, judge depth from a stereo pair, and place what it sees correctly in the world. It is the unglamorous but essential first step of almost every vision pipeline.

Also calledgeometric calibration相机校准相機校準

Camera extrinsic parameters describe where a camera is and which way it is facing in the world. If the intrinsic parameters are the fixed personality of the lens, the extrinsics are its current address and head tilt — they change the instant the robot moves or turns its head. They are exactly the camera's pose: its position in space plus its orientation.

Concretely, the extrinsics are a rotation and a translation that together carry coordinates from the shared world frame into the camera's own frame, where the camera sits at the origin looking straight down its lens. The translation says how far to slide the world's origin to reach the camera; the rotation says how to spin the world's axes so they line up with the camera's up, right, and forward directions. Apply this pair to any point measured in the room, and you learn where that point sits relative to the camera — the necessary first step before the pinhole projection can turn it into a pixel.

This is why extrinsics are central to a moving robot. As an arm reaches or a rover drives, its onboard camera's extrinsics update every moment, and the robot uses them to fuse what it sees with what it already knows about the room. Get the extrinsics wrong and a perfectly sharp image is pinned to the wrong place in the world; get them right and vision and motion speak the same language.

Also calledextrinsicscamera pose外参矩阵外參矩陣

Camera intrinsic parameters are the handful of numbers that describe a camera's own internal optics — the fixed traits baked into that particular lens and sensor, no matter where you point it. They answer the question: once a ray of light enters this camera, exactly which pixel does it light up? Two cameras sitting in the same spot, looking the same way, can still produce different images because one has a wide lens and a big sensor and the other a long lens and a tiny one. The intrinsics capture precisely that difference.

There are usually four to five of them. The focal length (often two numbers, for the horizontal and vertical directions) sets how zoomed-in the view is — a long focal length magnifies a narrow slice of the world, a short one drinks in a wide scene. The principal point is the pixel where the optical center lands, usually near the middle of the image but rarely dead-on because sensors are never mounted perfectly. Skew, a fifth number that is almost always zero in modern cameras, accounts for pixel rows and columns that are not perfectly perpendicular. Bundled together these form the intrinsic matrix, the recipe that converts a direction in front of the camera into a precise pixel coordinate.

Intrinsics belong to the camera, not the scene, so they stay the same as the robot drives around — that is what makes them so valuable. Once measured, a robot can interpret every image from that camera consistently. They are distinct from extrinsic parameters, which describe where the camera is and which way it faces in the world.

Also calledintrinsicsintrinsic matrix内参矩阵內參矩陣

The canonical cortical microcircuit is a proposed standard wiring pattern — a basic blueprint — that seems to repeat over and over across the outer sheet of the brain called the neocortex. The neocortex is the wrinkled surface that handles seeing, hearing, moving, and thinking, and it is built in six stacked layers, like the floors of a building. The big idea is that no matter which patch you look at — one that processes vision, one that controls a finger, one that helps you do math — the neurons in those layers are connected to each other in roughly the same repeating arrangement. So instead of the brain inventing a brand-new circuit for every job, it may copy and paste one general-purpose circuit millions of times, then feed each copy a different kind of input.

How does the pattern go? In simple terms, signals arriving from elsewhere (often relayed by a way station called the thalamus) usually enter in the middle layers, get processed and passed upward to the top layers, then handed down to the deep layers that send the brain's answer back out to other regions and to the body. Along the way, excitatory cells that say go (like the cone-shaped pyramidal neurons) are balanced by inhibitory cells that say stop or wait (interneurons), keeping the whole loop from running wild. Researchers find this template appealing because it would mean the cortex is like a single reusable chip stamped out again and again, and understanding that one chip could unlock how huge stretches of brain work. It is important to add that this remains a useful simplification and an active debate, not a settled fact: real cortex shows many exceptions, and different areas and species bend the pattern in their own ways.

Also calledcanonical microcircuitcortical microcircuit motif经典微环路皮层微环路經典微迴路皮層微迴路

A capacitor is a tiny energy reservoir built from two metal plates sitting close together but not touching. When you connect it to a voltage, charge piles up on the plates — negative on one side, positive on the other — and the gap between them holds an invisible electric field. Think of it like a small water tank: you can fill it up quickly, hold the water for a moment, then let it gush back out when you need it.

Because charge can flow in and out, a capacitor smooths out bumps — when power dips for an instant, it releases stored charge to fill the gap, which is why nearly every device has them steadying its supply. It also blocks steady DC (once full, no more flows) but readily passes changing AC, since the plates keep filling and emptying. Pair it with a resistor and you can set precise timing, like the slow blink of a turn signal.

Also calledcapacitancecap电容電容

CAR-T cell therapy turns a patient's own immune cells into trained cancer hunters. T cells are the white blood cells that patrol the body and kill threats, but cancer often hides from them. CAR-T takes those soldiers out, reprograms them in the lab to recognise a specific marker on the tumour, and sends them back in — like giving your security guards a precise photo of the intruder they kept walking past.

Doctors collect a patient's T cells from the blood, then add a gene for a custom receptor called a CAR, which acts as a new pair of eyes that locks onto cancer cells. The edited T cells are grown into a large army and infused back. Inside the body they find cells carrying that marker and destroy them — and because they are living cells, they can keep multiplying and working for some time.

CAR-T is a landmark living medicine, with approvals for several blood cancers after strong trial results. It is not a fit for everything: it works best so far against certain blood cancers, the manufacturing is slow and costly, and the unleashed immune response can cause serious side effects that need expert care.

Also calledCAR-TCAR-T 细胞疗法CAR-T 細胞療法

Carbon never stays still. The same atoms are forever passing among the air, the oceans, every living thing, and the rock beneath our feet — looping through the whole planet like money circulating through an economy. A carbon atom in your morning breath might be soaked up by a leaf, eaten by a cow, exhaled, dissolved into the sea, and locked into seashells over millions of years.

Plants pull carbon dioxide out of the air to build leaves and wood; animals eat the plants and breathe some of it back out; the oceans drink it in and burp it back; and slowly, over ages, dead organisms turn to limestone and coal. For the last several thousand years nature kept these flows roughly in balance, so the amount in the air stayed fairly steady from one century to the next — until we came along.

Here's the trouble. When we burn coal, oil, and gas, we dig up carbon that nature spent hundreds of millions of years tucking safely underground, and release it in a few short decades. We are pouring it into the cycle far faster than the oceans and forests can soak it up — so it piles up in the air, traps heat, and warms the planet. The cycle isn't broken; it's simply being overwhelmed.

A cascode is a two-transistor stack: you put a second transistor on top of your gain device so they share the same current, but split the work. The bottom one (the input device) does the amplifying. The top one (the cascode) just sits there holding its source at a steady voltage, acting like a buffer between your delicate gain device and whatever the output is doing. Think of it as a bodyguard standing in front of the amplifier: it absorbs the shoving from the output node so the input device barely feels the output voltage move at all. Because the input device's drain voltage now stays nearly constant, two good things happen — its tiny channel-length-modulation feedback (the Early effect, which softens an ideal current source into a finite output resistance ro) almost stops mattering, and the Miller multiplication of its gate-drain capacitance collapses, which helps your bandwidth.

The payoff is gain. A plain common-source stage gives intrinsic gain of about gm*ro — the device's transconductance times its own output resistance, and ro is annoyingly low in short-channel processes. Stacking a cascode multiplies the looking-in output resistance by roughly the cascode's own gm*ro, so the node now presents something like gm*ro*ro instead of just ro. Your DC gain jumps by that same factor — easily 20 to 40 dB more — without burning any extra current, since both transistors carry the same bias. That is why cascodes are everywhere in op-amp output stages, current mirrors, and anywhere you need a stiff, high-impedance node.

The bill comes due in headroom. You've now stacked two drain-source voltages between supply and ground, and each transistor needs at least its overdrive Vov (with margin) to stay in saturation, so you spend roughly two Vov of voltage room instead of one. On a modern low-voltage supply that's expensive, and it's why folded cascodes and gain-boosting exist — clever ways to keep the gain win while clawing back some of the headroom you gave up.

Also calledcascode stagecascode transistor共源共栅级共源共閘級

A catalyst is a substance that makes a chemical reaction go faster — sometimes millions of times faster — yet comes out the other end completely unchanged, ready to do it all again. Think of it as a matchmaker at a party: it introduces two shy molecules, helps them pair up, then steps back untouched to introduce the next couple.

Every reaction has an energy hurdle to clear before it can happen, like a hill the reactants must climb. A catalyst doesn't shove them over the top — it quietly digs a lower, easier path around the hill, so far more molecules make it across each second. It speeds things up without ever being consumed.

Life runs on catalysts called enzymes — protein machines that carry out the chemistry of digestion, breathing, and growth at body temperature, work that would otherwise need blistering heat or take years. One common mix-up: a catalyst can't make an impossible reaction happen or change how much product you finally get. It only changes the speed, never the destination.

Also calledcatalysisenzyme (biological catalyst)催化作用

The categorical imperative is Kant's one-line test for whether an act is right: before you do something, ask whether you could honestly want everyone, everywhere, to do the same thing in your situation. If the rule behind your action could become a law for all people, it passes. The crucial test isn't whether bad results would follow — it's whether the rule contradicts itself the moment everyone follows it. Picture being tempted to lie to get out of a jam: now imagine a world where everyone lies whenever it's convenient. In that world no one would believe a word, so promising and lying would no longer be possible at all — and the very lie you were counting on couldn't work. The rule destroys the practice it depends on. It cancels itself, so lying fails the test.

Why does this matter? Kant is saying that morality isn't about results, rewards, or how you happen to feel. It's about duty — acting from a principle you could defend to anyone. "Categorical" means unconditional: it holds no matter what you want. That's the opposite of a "hypothetical" rule like "if you want good grades, study," which only binds you if you happen to want the prize. The moral law makes no deals. It simply commands.

One common misreading: people think Kant just means "don't do anything you wouldn't want done to you" — the Golden Rule. It's close but sharper. The Golden Rule appeals to your personal likes; Kant demands logical consistency that holds for every rational being, whatever their tastes. He also gave a second famous version: always treat people as ends in themselves, never merely as tools for your own purposes — a human being is never just a means to your convenience.

Also calledcategorical imperativethe moral lawuniversalizability test绝对命令定言命令无上命令絕對命令定言令式

A cell is the smallest piece of life — the tiniest thing that still counts as alive. It can take in energy, grow, respond to the world around it, and make copies of itself, all on its own.

Some living things are just a single cell, like the bacteria on your skin. Others are built from trillions of them: your own body holds roughly 37 trillion cells, each one a tiny worker doing its part.

Every cell is wrapped in a thin skin called a membrane that decides what gets in and out. Inside sits its genetic instructions and a crowd of tiny machinery that keeps it running. Where those instructions are kept varies — animal and plant cells tuck their DNA inside a walled-off nucleus, while bacteria let theirs float freely with no nucleus at all.

Also calledcellsliving cellbiological cell

Cell differentiation is the process by which an unspecialized cell commits to a particular job and matures into a specialized type — a muscle cell, a nerve cell, a red blood cell. It is the journey from a blank, all-purpose starting cell to a finished worker with a fixed trade. Think of a new employee on their first day who could in principle be assigned to any department, gradually being trained, narrowed, and settled into one specific role they will keep.

The striking part is that differentiation happens without changing the cell's genes. Almost every cell in your body carries the very same complete instruction manual; what makes a nerve cell differ from a muscle cell is which pages each one reads. As a cell differentiates, signals from its surroundings switch certain genes on and others off, and the cell begins building only the parts its chosen role requires. Step by step it loses its open-ended flexibility and gains a distinct shape, behavior, and function.

Differentiation is the master process that builds and maintains an entire body from a single fertilized egg, and it is the destination at the end of every stem cell's path. Understanding and steering it is central to regenerative medicine: to grow useful tissue, scientists must coax stem cells down the precise differentiation route toward the cell type they want — and reliably halt them there, rather than leaving them blank or sending them astray.

Also calleddifferentiation细胞分化細胞分化

Cell therapy treats disease by putting living cells into the body to repair or replace function that has been lost. Instead of a chemical drug that washes through and fades, the treatment is the cells themselves — a living drug that can settle in, multiply, respond to its surroundings, and keep working. It is closer to planting seeds than to taking a pill.

The cells may be the patient's own, harvested and sometimes grown or modified before being returned, or they may come from a donor. Once delivered, they aim to do a job the body no longer can: rebuild blood, replace damaged tissue, or hunt down disease. Because they are alive, they can do things no static drug or device can — but they are also harder to control and standardize.

Some cell therapies are long-established medicine, such as the bone-marrow (blood stem cell) transplants used for certain blood cancers. Others are still experimental. The honest picture is a real and growing toolkit alongside many promising but unproven approaches, especially those marketed directly to patients.

Also called细胞疗法細胞療法cellular therapy

Cellular rejuvenation is the idea of partially winding an old cell's clock backward — nudging it toward a younger, fresher state to reverse some signs of aging, without erasing what kind of cell it is. The dream is to give a worn skin or nerve cell a tune-up rather than a full factory reset, so it keeps its job but works more like its younger self.

The trick borrows from reprogramming, the lab method that can turn an ordinary adult cell all the way back into a flexible stem-cell-like state. Rejuvenation applies that same push only briefly and partially — enough to refresh the cell's settings, the researchers hope, but stopping short of erasing its identity or letting it turn into a tumor.

This is one of the most exciting frontiers in aging research, with striking results in animals and cells. But it is still experimental and carries real risks, including cancer. The gap between a thrilling lab demonstration and a safe human therapy here is wide — a textbook case of hype racing ahead of proof.

Also called细胞返老还童細胞返老還童partial reprogrammingcellular reprogramming for aging

Cellular reprogramming is the act of resetting a cell's identity — taking a cell that has already settled into one specialized role and persuading it to become something else. Normally a cell's job is a one-way street: once it commits to being, say, a skin cell, it stays one for life. Reprogramming defies that one-way rule, much like editing a finished document back to a draft, or rewriting a person's job description and watching them take up entirely new work.

It comes in two main flavors. One is winding the clock all the way back, returning a mature cell to a pluripotent state so it could again become anything — this is how induced pluripotent stem cells are made. The other is direct conversion, jumping a cell straight from one specialized type to another — say, turning a skin cell into a nerve cell — without first passing through the blank stem cell stage. Both work by changing which genes a cell keeps switched on, since every cell carries the same full instruction set and differs only in which parts it reads.

Reprogramming reshaped biology because it proved a cell's fate is not permanently locked, only held in place — and held places can be moved. That opens the tantalizing prospect of generating whatever cell type a patient needs from cells they already have. The caveats are real, though: reprogramming is inefficient, can leave cells in awkward half-finished states, and any cell pushed toward unlimited growth must be controlled carefully, so therapies built on it demand great rigor.

Also calledreprogramming细胞重编程細胞重編程

Cellular senescence is a state in which a cell stops dividing for good but refuses to die — a kind of biological retirement that never quite ends. Researchers nickname these 'zombie' cells: no longer doing their old job, not cleared away, just lingering. A cell usually enters this state after damage or too many divisions, as a safety brake against running wild.

The brake is useful at first — it helps block damaged cells from becoming cancer and aids wound healing. But senescent cells leak a steady stream of inflammatory signals into their surroundings, like one grumbling neighbor who slowly sours the whole street. Over the years these cells pile up, and that chronic, low-grade inflammation wears tissues down.

This accumulation is now seen as a real driver of aging and age-related decline, which makes senescent cells a tempting target: clear or calm them, the thinking goes, and tissues might stay healthier longer. That idea is being actively explored, but it is research, not yet a proven treatment.

Also called细胞衰老細胞衰老senescent cellszombie cells

A central bank digital currency, or CBDC, is a digital form of a country's official money, issued and backed directly by its central bank. Unlike the money in your bank account, which is a claim on a commercial bank, a CBDC is a direct liability of the central bank itself, the same status as physical banknotes and coins. It is, in essence, cash reimagined as a digital token for the internet age.

A CBDC sits apart from both ordinary bank deposits and from cryptocurrencies like Bitcoin. Its value is not market-driven; one digital dollar is always worth one ordinary dollar, because the state stands behind it. And while some designs borrow technical ideas from blockchains, most CBDCs are not decentralized at all: the central bank remains firmly in control of issuance and the rules, which is the opposite of the trustless, permissionless ethos of public cryptocurrencies. The technology is a tool here, not a philosophy.

Think of it as official cash that lives on your phone instead of in your wallet, spendable instantly and digitally while still being state-issued legal tender. Proponents see CBDCs as a way to modernize payments, reach people without bank accounts, and settle transactions faster and more cheaply. Because the design choices, especially around how much transaction privacy individuals retain, carry significant social weight, CBDCs are an area of active experimentation by central banks worldwide.

Also calledCBDC央行数字货币央行數位貨幣

The central nervous system, or CNS, is the brain plus the spinal cord. It is the part of the nervous system where the body gathers up everything it has sensed, makes sense of it, and decides what to do next. Signals from your skin, eyes, ears, and inner organs all flow inward to the CNS, and the commands that move your muscles and steer your organs flow back out from it. In short, it is the place where information is brought together and turned into action.

A handy picture is an airport control tower. Planes (the messages from your body) arrive from every direction; the tower takes them all in, weighs them against one another, and sends out clear instructions so nothing collides and everything keeps moving. The CNS does the same kind of work, blending many incoming streams of information into single, coordinated responses, which is why it is often called the body's integration and processing hub. The spinal cord handles the faster, more local jobs and acts as the main cable to and from the brain, while the brain handles the deeper thinking, memory, feeling, and planning.

Because so much depends on it, the CNS is the most heavily guarded tissue you have: it sits inside the bony skull and spine, is wrapped in tough membranes called the meninges, and floats in a cushion of cerebrospinal fluid. It is paired with the peripheral nervous system, the network of nerves outside the brain and cord that carries messages between the CNS and the rest of the body. Most CNS neurons in mammals do not regrow well once damaged, which is part of why brain and spinal cord injuries can leave lasting effects.

Also calledCNS中枢神经系统中樞神經系統

A central pattern generator is a small cluster of nerve cells, usually tucked inside the spinal cord, that can crank out a steady, repeating rhythm of muscle commands all by itself — no moment-to-moment instructions from the brain required. Think of it like a music box: once you wind it up, the little drum spins on its own and the tune plays out, beat after beat, without anyone touching it again. In the same way, this circuit produces the back-and-forth rhythm behind movements you do over and over, such as walking, swimming, chewing, or breathing.

How does it keep time without a conductor? The neurons in the circuit are wired so that when one group fires, it briefly hushes the other, and when that first group tires out, the second takes over — then the cycle flips back again. This tug-of-war repeats automatically, sending alternating bursts to, say, the muscles that lift a leg and the muscles that push it down. The remarkable proof of this comes from animal experiments: a spinal cord cut off from the brain can still produce the rhythmic stepping pattern when given a simple, steady chemical nudge, showing the rhythm is born in the cord itself.

This is why so much of locomotion runs on autopilot. The brain does not have to micromanage every flex of every muscle; instead it sends a simple, broad signal — roughly, go faster, slower, or stop — and the central pattern generator fills in the detailed timing. Sensory feedback from the limbs then fine-tunes the rhythm to fit the real ground underfoot, so the basic engine of movement is built into the spinal cord and merely steered, not driven step by step, from above.

Also calledCPGrhythm-generating circuit节律发生回路節律發生迴路

Centralization and cephalization are two big trends that show up again and again when we line up animals from simple to complex and look at how their nervous systems are built. Centralization means that nerve cells (neurons), instead of being spread thinly and evenly through the body, become bundled together into a few dense cables and clumps — nerve cords and ganglia, which are knots of neurons — that act as shared command lines. Cephalization is the closely related habit of piling the richest of this nerve tissue, along with the major sense organs like eyes, toward one end of the body, which over evolutionary time becomes the head. Picture a town that starts with one phone in every house wired randomly to its neighbors, then slowly rebuilds itself around a few trunk lines and one central switchboard near the front gate — that switchboard becoming a brain is roughly the story these two words tell.

Why do animals keep evolving this way? A creature that moves forward through the world meets new food, mates, and danger at its leading edge first, so it pays to put the eyes, smell, and taste sensors there and to wire them into a nearby decision-making hub rather than sending every signal on a long trip across the body. Clustering neurons also shortens the wiring between them, which makes signals faster and lets the animal combine many streams of information before acting. This is not a ladder with humans on top — many lineages centralize and cephalize to different degrees, and a few (like some sea stars) went the other way and spread their nervous systems out. But across worms, insects, octopuses, and vertebrates, the recurring drift toward concentrated nerve cords and a sensor-packed head is one of the clearest patterns in the evolution of brains, and it helps explain why so many active animals end up with a recognizable head leading the way.

Also calledconcentration of the nervous systemhead formation神经集中神經集中头部形成頭部形成

Cerebellar motor control is the job the cerebellum — the small, wrinkled 'little brain' tucked under the back of your skull — does to make your movements smooth, accurate, and properly timed. It does not decide what to do; the rest of your brain chooses to reach for a cup or take a step. The cerebellum's task is to make sure that chosen action comes out cleanly instead of jerky, shaky, or off-target. Think of it as a backstage coach who never plays the game but constantly whispers tiny corrections so the players move in perfect rhythm.

It pulls this off by acting like an error-checker that works faster than you can think. Every time you start a movement, your motor cortex sends a copy of the command to the cerebellum, while your senses report back where your body actually is. The cerebellum compares the two — what you meant to do versus what is really happening — and instantly nudges the muscles to close the gap, moment by moment. This is how it handles three things at once: timing (firing each muscle at exactly the right instant), accuracy (stopping your hand right at the cup instead of overshooting), and balance (keeping you upright). Because it works in fractions of a second, the corrections happen before a clumsy motion can even appear.

The cerebellum also learns. When a movement keeps coming out wrong — your tennis swing misses, or the world feels off because you are wearing new glasses — the cerebellum gradually rewrites its own predictions until the action becomes accurate and automatic again. This is why skills like riding a bike or touch-typing eventually feel effortless: the cerebellum has quietly memorized the corrections so you no longer have to think about them. When it is damaged, people are not paralyzed, but their movements turn unsteady and poorly timed — they stagger, overshoot when reaching, and slur their speech, much like someone who has had too much to drink, since alcohol dulls the cerebellum.

Also calledcerebellar coordination小脑协调小腦協調

The cerebellum is a fist-sized, densely wrinkled lump of brain tissue tucked underneath the back of your skull, behind and below the big folded brain you usually picture. Its name means "little brain" in Latin, and that is a fair description: it looks like a smaller, tightly pleated version of the main brain. Despite taking up only about a tenth of the brain's volume, it holds more than half of all the brain's nerve cells. Its main job is not to decide what you do, but to make sure that whatever you do comes out smooth, steady, and well-timed.

Think of the cerebellum as a backstage coach for movement. When you reach for a cup, walk a straight line, or speak a sentence, the cerebellum constantly compares what your body intended to do with what it is actually doing, and quietly nudges the muscles to fix the difference, moment by moment. It keeps your balance, coordinates the many muscles that must fire in the right order, and fine-tunes timing so motions are graceful instead of jerky. When it is damaged, people do not become paralyzed, but their movements turn clumsy and shaky: they stagger as if drunk, overshoot when they reach, and slur their words. This is why too much alcohol, which dulls the cerebellum, makes people wobble and lose coordination.

Also calledlittle brain小脑小腦

The cerebral cortex is the thin, wrinkled outer sheet of the brain, the part you picture when you imagine a brain. It is only a few millimeters thick, about the depth of a few stacked coins, yet it is where much of our perceiving, thinking, planning, and deciding takes place. Because it is packed with the cell bodies of neurons, it has a grayish color, which is why it is often called gray matter.

Its surface is folded into bulges called gyri and grooves called sulci. This folding lets a large sheet of tissue pack into a small skull, the way crumpling a sheet of paper lets it fit inside a cup. The deepest grooves divide each half of the brain into four broad regions called lobes, the frontal, parietal, temporal, and occipital lobes. Across most of this surface the cortex is built from six stacked layers of cells, an arrangement called the neocortex, with bundles of connecting fibers, the white matter, running beneath it.

Different patches of cortex tend to specialize, with some areas leaning toward vision, others toward hearing, touch, movement, or language. This handling of more complex, higher-level tasks is often called higher cognition. But no patch works alone: they are wired together into networks, so even a simple act like naming a picture lights up many regions at once.

Also calledcortex皮质皮質

The cerebral lobes are the four big sections that the wrinkled outer sheet of each brain half is traditionally divided into: the frontal, parietal, temporal, and occipital lobes. They are not separate organs but regions of one continuous cortex, marked off by a few deep grooves and by long habit, a bit like dividing a single city into named neighborhoods. Each half of the brain has its own set of all four.

Each lobe leans toward a broad job, though none works alone. The frontal lobe, behind your forehead, handles planning, voluntary movement, and self-control. The parietal lobe, on top toward the back, builds your sense of touch and of where your body and objects are in space. The temporal lobe, low on each side near the ears, deals heavily with hearing, language, and memory. The occipital lobe, at the very back, is devoted mostly to vision.

The names mostly come from the skull bones lying over each region rather than from what the tissue does, so the boundaries are partly a matter of convention. Treat the four-lobe map as a useful first sketch: real abilities like reading or speaking draw on several lobes at once, wired together across both halves of the brain.

Also calledlobes of the brainbrain lobes脑叶腦葉大脑分叶

Cerebrospinal fluid, or CSF, is the clear, watery liquid that fills the hollow chambers inside your brain and the thin space wrapped around your brain and spinal cord. Most of it is made by a special tissue called the choroid plexus, a frilly tuft of tiny blood vessels draped inside each of those chambers. Picture a slow, leaky faucet that never quite shuts off: all day long the choroid plexus filters watery fluid out of the bloodstream and drips a fresh batch into the spaces, refreshing the whole pool several times over in a single day.

Making this fluid is not just passive leaking, though. The cells lining the choroid plexus actively pump salts, mainly sodium, from the blood into the chamber, and water follows the salt across, much the way a sponge soaked in salty water draws in more moisture. By choosing exactly what to let through, these cells turn ordinary blood into a custom-made liquid: low in cells and protein, carefully balanced in its salts, and clean. This same gatekeeping makes the choroid plexus part of a barrier that protects the brain, deciding which substances from the blood are allowed to reach the nervous tissue.

Why bother making half a litre of this stuff every day? The CSF cushions the brain so it floats instead of crushing itself under its own weight, softens the jolts of everyday bumps, and carries nutrients in while rinsing waste products away. When production, flow, or reabsorption fall out of balance, fluid can build up and press on the brain, a dangerous swelling called hydrocephalus, which is one reason the steady, quiet work of the choroid plexus matters so much.

Also calledCSF productionchoroid plexus secretion脑脊液分泌腦脊液分泌脉络丛分泌脈絡叢分泌

A chemical bond is the "glue" that holds atoms together — the attraction that links them into everything from a water droplet to a diamond to the cells in your body. It isn't a piece of string or a tiny rod; it's a tug-of-war between the negatively charged electrons of one atom and the positively charged nuclei of its neighbours, settling into an arrangement that's more stable, and lower in energy, than the atoms standing apart.

Atoms strike that bargain in three main ways. In a covalent bond they share a pair of electrons between them, like two children each gripping the same rope — this is how water and most of life's molecules are held. In an ionic bond one atom hands an electron over to another, and the two, now oppositely charged, cling together by sheer electrical attraction — table salt is the classic case. In a metallic bond a whole crowd of atoms throws their outer electrons into a shared "sea" that everyone floats in, which is why metals conduct electricity and bend without snapping.

Here's the part people often miss: bonds store energy, and breaking them always costs energy rather than releasing it. When fuel burns or food is digested and energy pours out, it isn't because old bonds broke — it's because the new bonds that form afterward are even stronger and more stable, and the surplus is set free as heat.

Also calledcovalent bondionic bondmetallic bond共价键离子键金属键共價鍵離子鍵金屬鍵

A chemical reaction is nature's way of rearranging atoms — taking one set of substances and rebuilding them into different ones. Think of the atoms as a fixed box of LEGO bricks: a reaction never adds or destroys bricks, it just snaps them apart and clicks them back together in a new pattern. When wood burns, iron rusts, or bread bakes, the same atoms end up wearing a different outfit.

The action happens at the bonds, the tiny links that hold atoms together. Old bonds break, new ones form, and that reshuffling is why the products look and behave so differently from what you started with — two invisible gases, hydrogen and oxygen, can become a drop of liquid water. Often you can see the change announce itself: bubbling, a color shift, heat, light, or a new smell.

Here's the rule that never bends: nothing actually vanishes. Every atom present at the start is still present at the end, so the total mass is exactly the same before and after — a principle called conservation of mass. A burning log seems to lose weight only because much of it floats off as invisible gas; weigh the gas too, and the books balance to the last atom.

Also calledreactionchemical change化学变化化學變化reactants and products

A chemical synapse is the tiny junction where one neuron passes its message to the next cell — but instead of the two cells touching, they are separated by a microscopic gap. Picture two people standing on opposite banks of a very narrow stream: they cannot hand the note across directly, so one of them folds it into a paper boat and floats it over. In a chemical synapse, the message is carried across that gap not by electricity jumping the divide, but by little packets of chemical messengers, called neurotransmitters, that the sending cell squirts out and the receiving cell catches.

Here is how it works. When an electrical signal arrives at the end of the sending neuron, it triggers tiny bubbles full of neurotransmitter to fuse with the cell's outer wall and dump their contents into the gap, which is called the synaptic cleft. These chemical messengers drift across and lock onto matching catcher molecules, called receptors, studded on the surface of the receiving cell — like keys fitting into keyholes. That binding nudges the receiving cell to either fire its own signal or hold back. This chemical relay is slightly slower than a direct electrical jump, but it gives the brain enormous flexibility: the strength of the connection can be turned up or down, which is the physical basis of how we learn and remember.

Also calledchemical junction化学性突触化學性突觸

Chemogenetics is a method for turning chosen brain cells up or down by giving an animal a harmless pill or injection. Researchers first insert into a selected group of neurons the gene for an engineered receptor — a protein that sits in the cell's surface like a tiny lock. This lock has been altered so that the body's own chemicals no longer fit it, and only a special designer drug, otherwise inert, can turn the key. The best-known versions are called DREADDs, short for designer receptors exclusively activated by designer drugs.

Once those neurons carry the engineered receptor, the rest is simple. When the matching drug reaches the brain through the bloodstream, it docks onto the lock and switches the cell's behavior in a chosen direction — one flavor of receptor makes the targeted neurons more likely to fire, another quiets them down, by tuning the chemical messengers the cell uses inside itself. Because only the genetically marked cells carry the lock, the drug sweeps through the whole brain yet acts on those cells alone.

The trade-off compared with light-based control is speed versus reach. A drug takes minutes to act and its effect lasts hours, so chemogenetics is suited to chronic, long-lasting nudges rather than millisecond switching — but it needs no implanted fiber or wire and can hold an entire scattered population on or off while an animal moves and behaves freely. This makes it a favored tool for asking what a defined set of neurons contributes to behavior over the span of a whole experiment.

Also calleddesigner receptors exclusively activated by designer drugschemical genetics化学遗传操控化學遺傳操控
See alsooptogenetics

For decades the instinct was to cram everything onto one big slab of silicon — the monolithic chip. A chiplet flips that instinct: you break the design into several small, single-purpose dies — a cluster of CPU cores here, an I/O block there, a chunk of cache — and then assemble them together inside one package, wired to each other so tightly they behave almost like one chip. Think of it as switching from carving a statue out of a single block of marble to building with LEGO: instead of one risky, enormous part, you snap together a handful of smaller, proven ones.

Why bother? The headline reason is yield. A defect lands somewhere random on every wafer, so the bigger a die is, the more likely a stray flaw ruins the whole thing — and on a leading-edge node a giant die can be ruinously expensive to throw away. Cut that die into four small ones and a single defect spoils only one small piece; you keep the good ones (known-good die) and toss the cheap loser. Chiplets also let you mix-and-match nodes: the compute cores that crave the newest, priciest process can ride a bleeding-edge node, while the I/O and analog blocks — which barely benefit from shrinking — stay on a cheaper, mature node. And because each chiplet is a self-contained, reusable building block, you can drop the same core complex into a laptop part or a 64-core server part without redesigning it from scratch.

The catch is the seam. Two transistors on the same monolithic die talk over a few microns of wire; two chiplets must shove their signals across a package, which costs more energy and a little latency than staying on-chip. So chiplets lean on dense packaging — sitting side by side on a silicon interposer, or stacked — and on fast, standardized die-to-die links so the boundary stays nearly invisible. UCIe is the open standard emerging to let chiplets from different vendors and nodes plug together the way USB once unified peripherals. AMD's Ryzen and EPYC (separate compute and I/O dies), Intel's tiled processors, and Apple's two-die Ultra parts are all chiplet designs already shipping in volume.

Also calledchipletsdie-to-die integration

A chromosome is a single, very long strand of DNA that a cell winds up tightly and packs into one neat bundle. It is how a cell keeps its genes folded up, labeled, and out of a tangle, so the instructions for building and running you stay organized in a space far too small to hold a loose thread that long.

To fit, the DNA coils around little spool-shaped proteins, the way thread wraps around a bobbin. Most human cells carry 46 chromosomes — 23 pairs, with one of each pair coming from each parent. The genes living along these strands are your inherited instruction book.

The packing has a practical payoff: when a cell divides, it can copy each chromosome and hand exactly one full set to each new cell. Bundled this way, the genes get shared out evenly and cleanly, instead of spilling everywhere like loose string.

Also calledchromosomeschromatin染色质染色質
See alsoDNAgenecell

Your chronotype is your body's natural preference for when to be asleep and when to be wide awake, the personal time-of-day setting you are born leaning toward. Some people are larks, springing up bright and clear-headed at dawn and fading by mid-evening; others are owls, dragging through early mornings but humming with energy late at night; most of us sit somewhere in between. It is not laziness or willpower, any more than being tall or short is: it is the schedule your internal body clock quietly prefers when nothing, no alarm, no shift, no coffee, is forcing it otherwise.

Deep in the brain sits a tiny cluster of cells, the suprachiasmatic nucleus, that acts like a master clock, keeping a roughly 24-hour beat and using daylight to set itself each morning. In some people this clock naturally runs a little early, in others a little late, and that built-in offset, shaped partly by inherited genes and partly by age, is what makes one person a morning type and another an evening type. Think of two people whose wristwatches keep perfect time but were set fifteen minutes apart: both tick steadily, yet one is always ahead of the other.

Chronotype matters because the world mostly runs on a single early schedule, and people whose inner clock points late are forced to wake before their body is ready, racking up a sleep debt that drags on mood, focus, and health, a mismatch researchers call social jet lag. The good news is that chronotype is a tendency, not a cage: morning light, steady bedtimes, and dimming screens at night can nudge the clock earlier, and simply knowing your type helps you place demanding work when your brain is naturally at its sharpest.

Also calledmorningness-eveningnessearly bird vs night owl晨型与夜型晨型與夜型百灵鸟型与猫头鹰型百靈鳥型與貓頭鷹型

CI/CD is a tireless robot that automatically tests and ships your code every time you push a change. Instead of you remembering to run the tests and copy files to the server, a machine does it the same careful way, every single time.

CI — Continuous Integration — is the testing half. Each time someone pushes new code, CI builds the project and runs the tests, so a mistake gets caught in minutes instead of next week. It's the friend who double-checks your work before anyone else sees it.

CD — Continuous Delivery — is the shipping half. Once the tests pass, CD packages the code up and deploys it, so the latest good version reaches users automatically. Together they form a 'pipeline': push your code, and it flows from your laptop to production with no nervous manual steps.

Also calledcicdcontinuous integrationcontinuous deliverypipelinebuild pipeline

A circadian rhythm is your body's built-in daily cycle — a roughly 24-hour pattern that quietly rises and falls inside you, telling your body when it is day and when it is night. It is the reason you naturally feel sleepy in the late evening and alert in the late morning, even if you cannot see a clock or the sky. The word comes from Latin: circa means about and dies means day, so circadian literally means about a day. Think of it as an internal timer that has been ticking since before you were born, gently nudging dozens of things in your body — your sleepiness, your body temperature, your hunger, your hormones — onto a regular daily schedule so they happen at the right time of day.

This rhythm is generated from the inside, by a tiny cluster of brain cells in the hypothalamus called the suprachiasmatic nucleus, which acts as the body's master clock. Left completely alone in a cave with no light or clocks, your rhythm would still run, but it tends to drift a little off 24 hours, so each morning it is reset by signals from the outside world — most powerfully by daylight reaching your eyes. Daylight tells the master clock the real time, the clock keeps every cell and organ in step, and your whole body stays synchronized to the turning of the planet.

Why it matters: when your inner clock and your daily life line up, you sleep well, feel energetic by day, and your body runs smoothly. When they clash — after flying across time zones, working night shifts, or staring at bright screens deep into the night — you get jet lag, poor sleep, foggy thinking, and, over the long run, a higher risk of health problems. Honoring your circadian rhythm, by getting bright light in the morning and dimming it at night, is one of the simplest ways to keep both body and mind in good shape.

Also calledbody clock24-hour rhythm生物钟生理時鐘日节律
See alsohypothalamus

Circuit QED is the toolbox for building qubits and the microwave "light" they talk to entirely out of electrical circuits printed on a chip. Instead of trapping a real atom and a real photon in a mirror box, engineers etch a superconducting circuit that behaves like an artificial atom, and a resonator next to it that behaves like a box of microwave photons. It is the chip-design version of an old physics setup called cavity QED.

The trick is that a superconducting LC circuit (an inductor plus a capacitor) naturally rings at one microwave frequency, like a tiny tuning fork. Add a Josephson junction and the circuit's energy rungs become unevenly spaced, so you can address just the bottom two as a qubit. Place a resonator nearby and the two share energy through their electric fields; that coupling is what lets you read the qubit out and wire qubits to each other, all in the gigahertz range where ordinary microwave electronics already work.

The honest part: this only works at a few hundredths of a degree above absolute zero, the qubits drift and lose coherence, and packing many of them onto one chip means their frequencies start to collide and their control lines get crowded. cQED is the dominant framework for superconducting chips, but it is one modality among several, and none has clearly won.

Also calledcircuit quantum electrodynamics电路量子电动力学電路量子電動力學

Circulation is the endless loop your blood travels: the heart squeezes, pushing blood out through wide pipes called arteries, on through a fine mesh of tiny vessels that reach every corner of you, and back again through veins to be pumped once more. Picture a single drop setting off from the heart, dropping oxygen and food at your toes and fingertips, picking up waste, and returning to the start — over and over, a full circuit in well under a minute: about 20 to 30 seconds at rest, and faster when you exercise, all day, all your life.

It matters because this loop is how every cell gets fed and kept clean. Your lungs load the blood with oxygen, your gut hands over fuel, and the moving stream carries both to muscles, brain, and skin while sweeping away the rubbish. Stop the loop and the deliveries stop with it — which is exactly why a blocked vessel or a stalled heart is so deadly so fast.

Here's the surprise: for over a thousand years, learned doctors taught the opposite. Following Galen, they believed the liver constantly brewed fresh blood that the body then used up like fuel, one-way, never returning. In 1628 William Harvey did the arithmetic — the heart pushes out far more blood in an hour than the body could possibly make — and proved it must be the same blood, going round and round in a closed circle.

Also calledblood circulationthe circulatory systemcirculatory system体循环与肺循环血液迴圈

Civil law is a way of running a country's justice that puts its trust in the written book. The whole law is gathered into big, organized codes — a civil code, a criminal code, a commercial code — that try to spell out the rules in advance, so a judge mostly reads the code and applies it to the case in front of her. Picture a recipe book where the master cook has already written down every dish: the kitchen staff follow the recipes rather than inventing each meal from scratch.

This matters because it shapes who really makes the law. In a civil-law country the lawmakers in parliament are the chefs who write the recipes; judges are the cooks who carry them out. The law is meant to be there in black and white, knowable by anyone who opens the code — which is one reason this style spread so widely. Most of the world lives under it: France, Germany, Japan, Brazil, South Korea, and dozens more. China is often added too, though in a civil-law-influenced form: its codes are built in this Germanic style, but it is usually filed under its own socialist-law heading rather than counted as a textbook example.

A common mix-up is to think civil law means "lawsuits between private people" (as opposed to criminal cases). That is a different meaning of the same words. Here, "civil law" names a whole family of legal systems — the great alternative to the common-law tradition of England and the United States, where past court decisions, not a master code, do most of the heavy lifting.

Also calledContinental lawRoman law traditionRomano-Germanic lawcodified law成文法系羅馬法系

Classical conditioning is how a brain learns by association: pair a meaningless signal with something that already matters, again and again, and the signal alone starts to trigger the same automatic response. The classic case is Ivan Pavlov's dogs. Food made them drool — no surprise there. But Pavlov rang a bell just before every meal, and soon the dogs drooled at the bell alone, food or no food. The neutral sound had borrowed the food's power.

You do this all the time without noticing. The hiss of a soda can opening can make your mouth water; a dentist's drill heard down the hallway can tighten your stomach before anyone touches you. In each case a once-neutral cue — a sound, a smell, a place — has been wired to a reflex you don't choose, simply because the two kept showing up together.

The key thing to get right: classical conditioning works on involuntary, reflex-like reactions — salivating, flinching, feeling anxious — not on deliberate actions done for a reward. That second kind of learning ("do this and you'll get a treat") is operant conditioning, a different mechanism. Here, nobody is being rewarded for drooling; the body has simply learned that one thing reliably predicts another.

Also calledPavlovian conditioningrespondent conditioning巴甫洛夫条件反射经典制约巴夫洛夫制約反應制約

The classifier is the trained model that sits at the end of the pipeline and makes the actual decision. It takes the features extracted from the signal and maps them to a choice — left or right, yes or no, which of several letters — or to a command the device should run. If feature extraction prepares the evidence, the classifier is the judge who weighs it and announces a verdict.

It can be as simple as a straight line drawn through the data. A linear method such as LDA computes a weighted sum of the features and picks one class if the total lands above a threshold and the other if below — fast, robust, and a favourite in real BCIs. At the other end, a neural network can carve up far more tangled boundaries when there is enough training data to support it.

Whatever its form, the classifier has to be trained on labelled examples first, and it is only ever as good as those examples. Because brain signals drift, many systems also report a confidence with each decision, so the interface can hold back or ask again when the model is unsure.

Also calleddecoderclassifier分类器分類器

Weather is what the sky is doing today; climate is what the weather usually does, averaged over decades. Climate change is a lasting shift in those long-run averages — temperatures, rainfall, storms, ice — across the whole planet. So a single chilly afternoon tells you nothing, just as one tall student doesn't change a school's average height. What matters is the slow, steady drift of the average itself.

Earth's climate has always wobbled naturally, but today's warming is different: it is fast, and it is mostly us. Burning coal, oil, and gas releases carbon dioxide, which thickens the blanket of greenhouse gases around the planet and traps extra heat. The result is melting glaciers, rising seas, fiercer heatwaves, and weather that keeps breaking its own records.

A common mix-up: "it was freezing last winter, so where's the warming?" But a warmer climate doesn't erase winter — it nudges the whole deck of cards, loading the odds toward hotter summers, heavier downpours, and longer droughts. A few degrees of global average sounds tiny, yet at the height of the last ice age the whole planet was only about 5 to 6 degrees colder than today — small averages, world-changing consequences.

Also calledglobal warmingglobal heatingclimate crisis全球变暖气候危机全球暖化氣候危機

Clinical translation is the long road from a striking laboratory demonstration to a real medical product that everyday patients can actually use. A single impressive result — a paralyzed person typing by thought, say — is a starting point, not a finished treatment.

Along that road sit clinical trials to prove the device is safe and genuinely helps, regulators who must review and approve it, and the hard demand that it work reliably for years, not just on a good day in a lab. Cost and access matter too: a device that no health system can afford helps almost no one.

This is why so few brain–computer interfaces are available outside research today. The science can be remarkable while the product is still years away — and translation is the careful, often slow work of closing that gap without cutting corners on safety.

A clinical trial is a carefully controlled experiment that asks one honest question: does this treatment actually work? Instead of trusting a hunch or a few hopeful stories, doctors try the new drug on real people under rules set in advance — then watch what happens, and write it all down. Think of it as putting a medicine on trial in a courtroom, where the evidence has to convince a skeptical jury.

The heart of a good trial is a fair comparison. Patients are split into two groups by the flip of a coin — this is randomization — with one group getting the real treatment and the other a control, often a sugar pill that looks identical. Because chance alone decides who goes where, the two groups end up alike in every other way, so any difference in how they fare must come from the treatment itself. Whenever possible neither patients nor doctors know who got what, so hope and wishful thinking can't tilt the result.

All this machinery exists for one reason: to stop us from fooling ourselves. People often get better on their own, and a kind doctor with a useless pill can still seem to heal — that's the famous placebo effect. The common misconception is that a treatment which 'seemed to help' has thereby been proven to work; in truth, only a controlled trial can tell a real cure from a lucky coincidence.

Also calledrandomized controlled trialRCTcontrolled trial随机对照试验隨機對照試驗

Picture a big office building where the rule is that every light must blink on and off in lockstep, all day, in every room, even the empty ones. That blinking costs electricity whether anyone is using the room or not. Clock gating is the building manager walking down the hall and flipping off the master switch to whole wings that nobody is in. In a chip, the flip-flops are the rooms and the clock is the relentless blink: on every clock edge a flip-flop re-evaluates its input, and that re-evaluation jiggles transistors and charges and discharges wires. If a block of logic isn't doing anything useful this cycle, you don't want its clock arriving at all. So you insert a small gating cell that, when an enable signal says 'idle,' stops the clock from reaching that group of flops. Their outputs freeze, nothing downstream toggles, and the dynamic power those flops and their fanout would have burned simply doesn't get spent.

Why does stopping the toggling save so much? Dynamic power, the energy spent actually switching signals back and forth, follows P = alpha * C * V^2 * f, where C is the capacitance you charge and discharge, V is the supply voltage, f is the clock frequency, and alpha is the activity factor, the fraction of cycles a node actually flips. The clock net is the busiest, highest-alpha signal on the whole chip because by definition it toggles every single cycle, so it and the flops it drives dominate dynamic power. Killing the clock to an idle region drives alpha toward zero there, and because the term is linear in that activity (and in f and C) the savings are large and direct. Note this attacks dynamic power only; the leakage current that trickles through transistors even when they're not switching is untouched, and for that you reach for power gating instead.

In practice you rarely hand-build the AND gate yourself, because a naive 'AND the clock with enable' can produce glitches or clip the clock pulse if enable changes at the wrong moment. Instead the synthesis tool inserts a purpose-built integrated clock-gating cell (an ICG), typically a latch-based design that samples the enable on the inactive phase of the clock so the gated output is always a clean, full-width pulse or a clean steady level. Tools do this automatically when you let them: RTL written as 'update this register only when enable is true' gets recognized and converted into a gated clock, and during physical design the clock-tree synthesis step then balances and buffers the clock through those ICG cells so the enabled paths still arrive on time.

Also calledclock gategated clockclock-gating cellICG门控时钟閘控時脈

A clock signal is a steady on-off heartbeat inside a chip — a voltage that flips high, low, high, low, over and over, like a metronome ticking for a band. Every tick keeps the millions of tiny parts marching together in lockstep. Picture a rowing crew with a coxswain calling "stroke... stroke... stroke": nobody pulls early, nobody lags. The clock is that voice, so each step finishes before the next begins.

On every tick the chip advances exactly one step: read a number, add, store the result, repeat. The clock speed sets the rhythm — 3 GHz means three billion ticks per second, so three billion tiny steps. Crank it faster and the chip does more, but each switch burns power and makes heat, so designers trade raw speed against a battery that drains and a fan that roars. That balance is why phones and laptops adjust their clock on the fly.

Also calledclockclk时钟時脈
See alsoflip-flop

Picture a garden where every plant must get watered at the exact same instant. If you run one hose to the nearest plant and let the water trickle onward to the far corners, the close plants drink first and the distant ones drink late. So instead you build a branching manifold of equal-length pipes, splitting again and again, so the water reaches every sprinkler head at nearly the same moment. Clock tree synthesis (CTS) does this for the clock signal. After placement has fixed where every cell sits, the clock still arrives at the source as a single net that, left alone, would fan out wildly unevenly to thousands or millions of flip-flops. CTS rips out that naive net and rebuilds it as a balanced tree of clock buffers and inverters, sized and positioned so the active clock edge lands at every flip-flop's clock pin at almost the same time. A common structure is the H-tree, where the wire literally branches in nested H shapes so each leaf is the same distance from the root.

Two numbers describe how well the tree is balanced. Insertion delay (also called latency) is how long the edge takes to travel from the clock source down through all those buffers to a flip-flop. Skew is the spread in arrival times across the flip-flops you care about: if one flop sees the edge at 1.10 ns and another at 1.13 ns, the skew between them is 30 ps. You cannot make insertion delay zero, since buffers and wire take real time, but you fight to keep skew small, because timing closure depends on it. The setup check is how much time data has to arrive before the next clock edge, and the hold check is making sure data does not arrive too soon after the current edge. Skew shifts those edges around relative to each other, so a sloppy tree can manufacture timing violations that no amount of faster logic will fix.

CTS runs after placement and before detailed routing, and it is a balancing act in more than one sense. Bigger buffers and more balancing levels cut skew but burn dynamic power, since every one of those buffers toggles on every cycle, and a clock network is often among the largest power consumers on the die. Tools also build in margin for on-chip variation (OCV), the reality that two identical buffers in different corners of the chip switch at slightly different speeds because of voltage droop and process spread, so a tree that looks perfectly balanced in nominal conditions still needs slack to survive the real silicon. Modern flows often relax the old goal of near-zero global skew in favor of useful skew, deliberately delaying some flops to borrow time for tight paths, but the underlying job is unchanged: tame one clock so it reaches the whole sea of flip-flops together enough to meet timing.

Also calledCTSclock tree building时钟树构建時鐘樹建構

A closed-loop brain–computer interface doesn't just read the brain and stop there — it feeds the result back in real time. The feedback can go to the user, who watches a cursor move and adjusts, or it can go straight into the brain as stimulation. Either way, brain and machine form a loop and keep adapting to each other.

Think of riding a bicycle. You don't steer once and hope; you constantly see where you're drifting and correct, moment by moment. A closed-loop BCI works the same way: every action produces a visible or felt consequence, and that consequence shapes the next action.

The opposite is open-loop, where the system reads brain activity and acts but gives nothing back — the user is steering blind. Closing the loop is what makes control feel responsive and lets the user and the decoder learn together over time.

CMOS (complementary metal-oxide-semiconductor) is the trick that lets a chip pack billions of switches without cooking itself. Each logic gate pairs two kinds of transistor — an n-type that turns on when its input is high, and a p-type that turns on when its input is low — wired so that, in any steady state, exactly one of them is off. Picture a tug-of-war where one side always holds firm while the other lets go: the output is pulled hard to either the supply or ground, but no straight-through wire ever links power to ground.

Because that path stays broken at rest, an idle gate sips almost nothing — current flows mainly in the brief instant of switching, when the gate is charging or draining the next gate's input and, for a moment, both transistors conduct at once. Multiply that tiny per-switch sip by billions of gates flipping a billion times a second and you get a manageable few watts instead of a meltdown. This low standby power is exactly why CMOS displaced earlier logic styles like NMOS and TTL in the 1980s, and it still underlies essentially every processor, memory, and image sensor made today.

Also calledcomplementary MOS互补金属氧化物半导体互補金氧半

A quantum chip sits at the bottom of a refrigerator, colder than deep space, but every qubit still needs orders from the warm world above: microwave pulses to flip it, and microwave echoes coming back to read it out. Those signals travel down coaxial cables, the same kind of shielded round wire used for cable TV, except here they are thin, semi-rigid, and run from room temperature all the way down to the chip. Roughly one to a few of these cables are needed per qubit, so the count grows with the machine.

Coax is used because it shields the delicate microwave signal from noise and keeps its shape over a long run. But the same cable that carries a signal down also carries heat down, since metal conducts both. Engineers fight this by anchoring each cable to the fridge's cold plates and inserting attenuators and filters along the way, which strip off room-temperature noise but also load the cooling system. The colder, lower stages of the fridge can only haul away a tiny trickle of heat, so every extra cable competes for that scarce cooling budget.

This is the physical face of the wiring bottleneck. A chip with 100 qubits already needs a forest of hundreds of cables snaking through the fridge; scaling to thousands or millions this way is simply impossible, because the cables would not fit and the heat they drag in would warm the chip past the point where it works. The leading escape routes, like control electronics built to run cold (cryo-CMOS) or multiplexing many signals onto one line, are promising but still early and unproven at scale.

Also calledcoax cabling同轴电缆同軸纜線

The cochlea is a tiny, fluid-filled tube coiled up like a snail shell, tucked deep inside your inner ear. Its job is to take the sound waves that arrive as vibrations in the air and turn them into electrical signals your brain can understand. This translation step is called auditory transduction: transduction simply means converting one kind of energy (here, mechanical vibration) into another (an electrical nerve signal). Think of the cochlea as a microphone made of living cells, one that also sorts sounds by pitch as it listens.

Here is how it works. Sound makes your eardrum vibrate, and three tiny bones pass that vibration to the fluid inside the cochlea, setting up a traveling ripple. Lining the cochlea is a row of sensory cells called hair cells, each crowned with a bundle of microscopic hair-like tufts. When the ripple bends these tufts, it tugs open tiny gates (ion channels) on the cell, letting charged particles rush in and creating an electrical signal. That signal is handed to the auditory nerve, which carries it to the brain. Crucially, the cochlea is laid out like a piano keyboard: the stiff base near the entrance responds to high pitches, while the floppy tip responds to low ones, so different sounds excite different spots. This is the very first step that lets you hear speech, music, and a warning shout, and damage to these delicate hair cells is a leading cause of permanent hearing loss.

Also calledinner ear sound transductioncochlear hair cell transduction听觉转导聽覺轉導耳蜗换能耳蝸換能

A cognitive bias is a built-in glitch in how we judge things — a place where the mind reliably tilts away from the cold, correct answer. It isn't stupidity or carelessness; it's the price we pay for thinking fast. To get through a busy day, the brain leans on shortcuts, and most of the time they serve us well. But in certain situations those same shortcuts steer everyone wrong in the same direction, like a shopping cart with one wobbly wheel that always pulls left.

Three famous ones show the pattern. In anchoring, the first number you hear quietly drags your guess toward it — see a coat marked "was $400, now $150" and $150 feels like a steal, even if the coat was never worth $400. In the availability bias, whatever springs to mind easiest feels most likely, so a single news story about a shark or a plane crash can scare us more than the everyday risks that actually harm far more people. And in loss aversion, the sting of losing $20 hurts more than the joy of gaining $20 pleases — so we cling to losing bets and pass up fair gambles.

Here's the key thing people get wrong: knowing about a bias usually doesn't switch it off. These tilts run underneath awareness, automatic as an optical illusion you can't un-see even after it's explained. The fix isn't to "try harder to be rational" — it's to redesign the situation: slow down for big decisions, get a second opinion, or set up rules and checklists that catch the wobble before it costs you.

Also calledbias认知偏差偏见anchoringavailability biasloss aversion認知偏差

Cognitive control is your brain's inner manager — the part of you that keeps your thoughts and actions pointed at a goal instead of letting whatever is loudest in the moment take over. Imagine you decide to read a book in a noisy café. Cognitive control is what lets you stay on the page, tune out the chatter, ignore the urge to check your phone, and pick the meaning of each sentence rather than getting pulled toward the smell of coffee. It is the difference between acting on purpose and acting on autopilot or impulse.

This kind of control is called 'top-down' because it works in the opposite direction from a knee-jerk reaction. A reflex goes 'bottom-up': a sound or a craving grabs your attention and drives your behavior automatically. Cognitive control pushes back from the top — your goals and intentions reach down and reshape what you notice, what you remember, and what you do, moment by moment. It mainly relies on the front of the brain, the prefrontal cortex, which holds your current goal in mind, watches for conflict between what you want and what habit suggests, and steps in to override the habit when the two clash.

It matters because almost everything we think of as self-directed behavior depends on it: resisting a tempting but bad choice, switching smoothly between two tasks, holding a phone number in mind long enough to dial it, or sticking with a hard problem when an easier distraction beckons. Cognitive control is effortful and limited — it tires out and can be overwhelmed — which is why fatigue, stress, or trying to do too many things at once makes us more impulsive, more forgetful, and more easily pulled off course.

Also calledexecutive controltop-down controlexecutive function执行控制执行功能執行控制執行功能

Cognitive dissonance is the mental itch you feel when two things you believe — or your beliefs and your actions — don't line up. Imagine someone who knows smoking is dangerous lighting another cigarette: the gap between "this is bad for me" and "I'm doing it anyway" creates a real, gnawing discomfort. That tension is the dissonance, and the mind hates leaving it unscratched.

To make the itch go away, we tend to change whatever is easiest to change. Sometimes that means changing the behavior, but shifting a belief or adding a comforting excuse is often easier than budging an entrenched habit. So the smoker may not quit; instead they reason, "My grandfather smoked and lived to ninety," or "It helps me handle stress." We're brilliant at inventing reasons that let us keep doing what we were already doing. This after-the-fact excuse-making is one common route, and it's called rationalizing.

The common misconception is that we form our opinions and then act on them. Often it runs the other way: we act first, then bend our beliefs to fit what we've already done. That's why people who suffer to join a group end up prizing it most, and why a small favor can warm someone toward you — having helped you, they conclude they must like you.

Also called认知不协调认知不和谐認知不協調Festinger's theory

Cognitive liberty is the idea that you should be in charge of your own mind. It has two sides: the freedom to think for yourself without being monitored or manipulated, and the freedom to decide what is done to your brain — to accept, control, or refuse any intervention.

Think of it as bodily autonomy extended inward. Just as you get to decide what happens to your body, cognitive liberty says you get to decide what happens to your mental life — including whether to use a brain–computer interface, a stimulator, or a memory aid, and whether to switch it off.

The idea matters most when an outside party — a company, employer, or state — could read or nudge brain activity. Cognitive liberty insists that such power stays with the person whose mind it is, rather than drifting, by default, to whoever holds the device.

A cognitive map is the picture of the world your brain builds and stores inside itself — a kind of mental floor plan of where things are and how they connect. When you can find your way from your bedroom to the kitchen in the dark, take a shortcut you have never actually walked, or sketch your neighborhood on a napkin, you are reading off this inner map. It is not a literal image stored like a photo; it is a flexible web of remembered places and the routes, distances, and directions between them, assembled from everything you have seen, walked, and felt as you moved through a space.

Inside the brain, this map lives largely in a seahorse-shaped structure called the hippocampus and its neighbors. There, special cells fire in a way that tracks location: certain neurons switch on only when you are in one particular spot, while others fire in a repeating grid-like pattern that acts like a built-in coordinate system, almost like graph paper laid over the floor. As you explore, these cells learn the layout and stitch landmarks together, so the map updates itself with experience. This is why a familiar route feels automatic while a new city feels disorienting — the map has not been drawn yet.

Cognitive maps matter beyond simple wayfinding. The very same brain machinery that places you in space also helps store memories of events and lets you imagine places you are not in, plan journeys, and reason about how ideas relate to one another. Researchers increasingly suspect the brain reuses this map-making trick to organize abstract knowledge too — arranging concepts as if they sat at locations in a mental space — which is why the cognitive map is seen as a deep clue to how memory, navigation, and thinking fit together.

Also calledmental mapspatial map心理地图心理地圖空间地图空間地圖
See alsohippocampus

Cognitive reserve is the brain's hidden cushion — the spare mental capacity that lets some people keep thinking clearly even as their brain ages, shrinks, or sustains damage. Picture two people with the very same amount of physical wear in their brains: one stays sharp and stays themselves, while the other slips into confusion or memory loss. The difference is often cognitive reserve. It does not stop the underlying damage; instead it gives the brain enough backup routes and clever workarounds to keep doing its job despite the damage, the way a city with many side streets keeps traffic flowing even when a main road is blocked.

Where does this cushion come from? It is built up over a lifetime by things that challenge and exercise the mind — schooling, demanding work, learning languages or instruments, an active social life, and staying mentally curious. These experiences are thought to make the brain's networks richer and more flexible, so that when one pathway falters, the brain can recruit others to carry the load. This is why two people can have the same plaques and tangles of Alzheimer's disease on a brain scan, yet one shows clear symptoms while the other functions normally for years — the second person's reserve is masking the damage.

Cognitive reserve matters because it is partly something we can build. Unlike the raw physical size or wiring of the brain you are born with, reserve keeps growing through the choices you make across your whole life, which is why staying mentally and socially engaged is one of the most promising ways to protect thinking as we grow old. It is not a guarantee against decline, but it raises the threshold of damage the brain can absorb before its abilities begin to visibly fail.

Also calledbrain reserve认知储备能力認知儲備能力脑储备腦儲備

A qubit is fragile. The moment you put it into a delicate quantum state, the outside world starts nudging it back toward something ordinary, and the quantum information you carefully wrote in begins to leak away. Coherence time is the answer to a simple question: how long does a qubit stay quantum before that leakage scrambles it? Think of it like a spinning coin balanced on its edge, holding a precise tilt. Coherence time measures how long it keeps that tilt before stray vibrations make it wobble and fall flat.

There are two clocks. T1 is the energy-relaxation time: a qubit excited into |1> tends to dump that energy into its environment and slide back down to |0>, the way a hot object cools to room temperature. T2 is the dephasing time, and it tracks something subtler. A qubit's superposition carries a relative phase between |0> and |1> (the alpha and beta amplitudes), and that phase is where interference, the thing that actually makes quantum algorithms work, lives. Random environmental noise jitters the phase until it becomes meaningless. T2 is usually shorter than T1, because anything that flips the energy also disturbs the phase, but extra noise can spoil the phase on its own.

In practice these times are the budget every computation spends. Each gate takes some time to run, so the ratio of coherence time to gate time roughly sets how many operations you can chain together before the answer drowns in noise. On today's machines that budget is small, which is the core reason we are still in the NISQ era and not yet running large fault-tolerant algorithms. Longer coherence is not the whole story (gate accuracy and qubit count matter too), but it is one of the hard physical limits everyone is fighting against.

Also calledT1T2relaxation timedephasing time

A collaborative robot, often shortened to cobot, is a robot built to work right next to people, sharing the same bench or workspace without a safety cage between them. Most older factory robots are powerful and fast, but precisely because of that they are fenced off behind barriers, because a swinging arm could badly hurt anyone standing too close. A cobot is the opposite idea: it is designed from the start to be gentle and aware, so a person can stand beside it, hand it a part, and even nudge it out of the way, the way you might work shoulder to shoulder with a careful coworker.

What makes this safe is mostly restraint built into the machine. A cobot usually moves more slowly, has rounded edges instead of sharp ones, and carries sensors that feel resistance. If it bumps into your arm, it notices the unexpected push and stops or backs off instead of shoving through. Many can also be taught a new task by hand: you simply grab the arm and guide it through the motion you want, and it remembers the path, so an ordinary worker can set it up without writing any code. This makes cobots popular for small workshops and light jobs like screwing, gluing, packing, or feeding parts into a machine.

The trade-off is that gentleness costs muscle and speed. Because a cobot must stay safe enough to touch, it typically lifts lighter loads and works more slowly than a caged industrial robot doing the same motion at full power. So a cobot is not always a drop-in replacement for a big fenced robot; it shines when the real goal is having a tireless helper share a task with a human, rather than running a high-speed line behind a wall on its own.

Also calledcobot协作机器人協作機器人human-robot collaboration

A collaborative robot — usually shortened to cobot — is a robot built to work right next to people, in the same space, without a safety fence between them. Traditional industrial robots are strong and fast but blind to anyone nearby, so they are caged off; if a person steps in, the machine could hurt them badly. A cobot is designed from the start to be the opposite: it shares your bench, hands you parts, and is meant to be safe to bump into.

It earns that safety by being gentle rather than walled off. A cobot typically moves slower, carries lighter loads, has rounded edges and no pinch points, and — crucially — senses force. If it touches a person or an unexpected obstacle, it feels the push and stops or backs off instead of plowing through. Many can be 'taught' a motion simply by a worker grabbing the arm and guiding it through the steps by hand, no programming code required, which is part of what makes them approachable for small workshops, not just big factories.

The point of all this is a genuine division of labor between human and machine on the same task. The cobot does the parts that are dull, repetitive, or hard on the body — holding a heavy panel steady, tightening the same screw a thousand times — while the person does the parts that need judgment, dexterity, or a quick eye. They are partners sharing a workspace, not a dangerous tool that must be kept behind bars.

Also calledcobot协作机械臂協作機械臂

Collision checking is the act of asking a sharp yes-or-no question about a single robot pose: in this exact pose, does any part of the robot overlap an obstacle — or overlap itself? It is the tool that tells a planner which side of the line a pose falls on, free or forbidden. Under the hood it is geometry: the software holds simple stand-in shapes for the robot's links (boxes, cylinders, spheres) and for the obstacles, and it tests whether any of those shapes intersect. If nothing overlaps, the pose is safe; if anything does, the pose is in collision.

This humble test is the workhorse of motion planning, because planners call it thousands or even millions of times while searching for a route, so it has to be fast above all else. There is also a subtler trap: checking single poses is not enough. A robot could be safe at the start of a small move and safe at the end, yet sweep straight through a wall in between. So planners must also do continuous or swept checking along each candidate step — verifying the whole sliver of motion, not just its two endpoints. The constant tension in collision checking is speed against caution: check too coarsely and you miss a collision; check too finely and planning crawls.

Also calledcollision detection碰撞检查碰撞檢查

Colonialism is when one country moves into another people's land, takes control, and runs it for its own benefit — planting settlers, soldiers, and rulers where they were never invited. Picture a stranger walking into your house, changing the locks, deciding what language you speak at dinner, and shipping your furniture back to their place. That is the shape of it, scaled up to whole continents.

It was rarely about just drawing lines on a map. Colonizers wanted things — gold, sugar, cotton, rubber, cheap labor — and they reorganized entire societies to extract them, often through force, broken promises, and slavery. They also pressed their own language, religion, and schooling onto the people they ruled, telling them their old ways were backward. From the 1400s onward, a handful of European powers came to control most of the planet this way.

A common misconception is that colonialism is safely in the past, ended when colonies won independence. But the borders it drew, the languages it left, the economies it bent toward exporting raw goods, and the wealth gaps it opened still shape today's world — which is why people speak of its long shadow, or "colonial legacy."

Also calledimperialismcolonization殖民殖民统治殖民統治

Picture a vending machine's coin counter: drop in a few coins and the display instantly shows the total. It doesn't matter what you inserted a minute ago or whether the machine has been running for an hour — the output is purely a function of the coins sitting in the slot right now. That's the essence of combinational logic: circuitry whose outputs depend only on its present inputs, with no memory of what came before. Change an input and the outputs settle to their new values after a tiny propagation delay; hold the inputs steady and the outputs hold steady too.

Formally, a combinational circuit implements a pure Boolean function of its inputs — the same input pattern always produces the same output pattern. You build these from logic gates (AND, OR, NOT, XOR) wired into larger blocks: multiplexers that select one of several inputs, adders that sum two numbers, decoders, comparators, and arbitrary lookup-style logic. Crucially, there are no feedback loops and no storage elements, so nothing in the circuit remembers a past state.

This is the deliberate opposite of sequential logic, which feeds its outputs back through memory elements like a flip-flop and therefore does depend on history and on a clock. Real chips interleave the two: clouds of combinational logic compute the next values, and registers latch those values on each clock edge. A practical consequence is timing — signals ripple through gates at finite speed, so the delay of each combinational path between registers is what static timing analysis checks against the clock; the slowest of these becomes the critical path that limits how fast the chip can run.

Also calledcombinatorial logiccombinational circuitcombinational circuitry组合逻辑組合邏輯组合电路組合電路

A commit is a saved snapshot of your changes, stamped with a short message explaining why you made them. It's the moment you tell git 'remember the project exactly like this' — a checkpoint you can always return to.

Commits are the building blocks of history. String them together and you get a timeline of the whole project: each one knows what changed, who made the change, when, and the reason in their own words.

The message matters more than beginners expect. Six months later, a clear note like 'fix login crash on empty password' is a gift to your future self; 'stuff' or 'asdf' helps no one. Write the why, not just the what.

Also calledgit commitsnapshotrevision

Common law is law built not from a single written code, but from the accumulated decisions judges have made in real cases over centuries. When a court settles a dispute, its reasoning becomes a kind of guidepost — a precedent — that later courts are expected to follow when the facts are similar. So the law grows the way a path through a forest does: each traveler who walks it makes it a little clearer for the next.

This matters because it lets the law learn from experience and stretch to cover situations no lawmaker ever imagined. If your neighbor's drone keeps hovering over your garden, there may be no statute that names "drones" — but a judge can reach back to old rulings about trespass and nuisance and apply their logic to the new gadget. The rule "like cases should be treated alike" gives ordinary people some power to predict how a court will treat them.

A common misconception is that common law means "unwritten law" or mere custom. It is very much written down — in the published opinions of courts — and judges are bound by it. It simply lives in case decisions rather than in one tidy statute book, and it works alongside written laws passed by parliaments, which can always override it.

Also calledcase lawjudge-made law判例法

Common spatial patterns, or CSP, is a classic recipe for finding the best way to mix many electrodes together so that two mental states look as different as possible. Imagine you have dozens of microphones in a room and you want to hear two specific speakers; CSP works out the volume to set on each microphone so that one speaker is loud while the other is quiet, and then a second setting that does the reverse. For the brain, the "speakers" are two states — say, imagining a left-hand versus a right-hand movement.

Concretely, CSP looks at how the signal's strength wobbles over the recording and searches for electrode weightings where that wobble is large for one state and small for the other. Those weightings act as a spatial filter: they collapse a crowd of channels into a few clean "virtual" channels whose energy alone tells the two states apart. A decoder then has a much easier job.

CSP has long been the workhorse for motor-imagery BCIs, where the useful information lives in how much rhythm rises or falls over the motor parts of the brain. It is fast, well understood, and still a strong baseline, though it needs a calibration recording and assumes you are separating just two states at a time.

Also calledCSP共空间模式共空間模式

Imagine you and a friend each plant rows of the same crop across a field that's secretly warmer on one side than the other. If you take the sunny half and your friend takes the shady half, your plants will always outgrow theirs — not because of anything you did, but because the field had a gradient. Now interleave your rows with theirs and arrange them so both your patches are balanced around the exact same center point. The warm-to-cool slant now pours equally into both of you, and on average it cancels. That is the whole idea behind a common-centroid layout: when two devices must match closely — the two halves of a differential pair, the two transistors of a current mirror, a pair of capacitors in a data converter — you split each one into pieces and lay them out so both devices share a common geometric center.

On a silicon wafer the 'warm side' is real: oxide thickness, doping, mechanical stress, and temperature all drift slowly across the die in roughly straight-line gradients. A plain side-by-side pair sees a first-order (linear) difference between them, which shows up as input offset voltage in an amplifier or a current error in a mirror. Because a linear gradient is odd-symmetric about a center point — as much above as below — placing both devices symmetrically around one shared centroid makes that first-order term subtract out, leaving only the much smaller second-order curvature. A common 1-D pattern is the ABBA interdigitated row; in 2-D the classic is the 2x2 cross-quad, A and B on opposite diagonals, so the centroid sits dead center for both.

The catch is that the devices on the outer edge of the array live in a different neighborhood than the ones tucked inside — different etch loading, different stress from what's beside them. So you ring the whole array with dummy devices: extra, electrically inert copies whose only job is to give every 'real' finger identical surroundings. Common-centroid plus dummies is what turns two transistors that are merely drawn the same into two that actually behave the same, which is why analog matching lives or dies on layout, not just schematic.

Also calledcommon centroidcommon-centroid matchinginterdigitation with common centroid

The common-source amplifier is the workhorse voltage-gain stage of analog design — the single transistor you reach for whenever you need a small wiggle to come out bigger. Picture it as a valve on a fat water pipe: a tiny twist on the handle (the gate voltage) lets a lot more flow change (the drain current) than the twist itself would suggest, and you read that current change as a voltage swing across a load. The catch is that it inverts — push the input up and the output swings down — which is why the gain carries a minus sign. How much bigger does the wiggle get? Roughly the transistor's transconductance gm (how strongly the gate steers the current) multiplied by its output resistance ro (how stubbornly the device holds that current against a changing output voltage): gain ≈ -gm*ro, the so-called intrinsic gain, often a few tens to a couple hundred per stage. The transconductance itself is set by how hard you bias the device — in the textbook square-law region, gm = 2*Id/Vov, where Vov is the gate overdrive above threshold.

Two close cousins reuse the same transistor but tap a different terminal as the output. The common-drain stage — better known as the source follower — takes its output at the source instead of the drain. It barely amplifies at all (gain ≈ 1, a touch less); its job is to be a buffer, presenting a light, high-impedance load to whatever drives it while delivering a low-impedance, current-capable copy of the voltage to the next stage. The common-gate stage holds the gate fixed and drives the source: it does not invert, has a low input impedance and high output impedance, and behaves as a current buffer — handy for cascoding, where you stack it on top of a common-source device to multiply the output resistance and boost gain. Think of the three as one family sorted by which terminal is the common reference: common-source for gain, common-drain to buffer voltage, common-gate to pass current cleanly.

Also calledCS amplifiercommon-source stagecommon-source gain stage

Comparative advantage is the surprising reason two people — or two countries — both come out ahead by trading, even when one of them is better at making everything. The trick is that "better at everything" is not the same as "better at every trade-off." What matters is not who is fastest, but who gives up the least to make a thing. Picture a brilliant lawyer who also happens to type faster than any assistant in town. She should still hire the assistant — because every hour she spends typing is an hour stolen from lawyering, where she's worth far more. The assistant types; she lawyers; both end up richer.

The thing each person gives up to make something is its opportunity cost, and comparative advantage simply says: make whatever costs you the least to give up, and trade for the rest. When each side shifts its effort to where it sacrifices least and then swaps, the two together can end up with more of what they each value than if each had tried to make everything alone — the gain coming not from the work itself but from putting the same hours to higher-value use and then exchanging. That surplus, realised once they specialise and trade, is the gain from trade, and it's why specialising and swapping beats stubborn self-sufficiency.

The common mistake is to think a country that's worse at producing everything has nothing to offer, or that being best at something means you should make it yourself. Neither follows. Even the least efficient nation always has some good it sacrifices least to produce, and that is exactly where it should specialise. Being absolutely better is not enough to make doing-it-yourself the wise choice — what decides is comparative, not absolute, cost.

Also calledlaw of comparative advantageRicardian comparative advantagegains from trade比较利益比較利益

Your code is written for humans, but the machine only runs its own low-level instructions — so something has to translate. There are two broad ways to do it, and the difference shapes how you build, ship, and debug.

A compiled language (like C or Rust) translates the whole program up front, all at once, into a standalone machine-runnable file before it ever runs. It's a separate 'build' step — slower to start, but the finished program tends to run fast, and many mistakes get caught at compile time.

An interpreted language (like Python or JavaScript) translates and runs line by line, on the spot, as the program executes. There's no build step, so you can edit and re-run instantly — lovely for tinkering — but errors tend to surface only when that line actually runs.

In practice the line is blurry: many modern languages compile to an in-between 'bytecode' and use clever tricks. But the mental model still holds — translate-everything-first, or translate-as-you-go.

Also calledcompilerinterpretercompilationbuild stepruntime

Picture the two transistors at the heart of every CMOS gate as two houses that, until now, have always sat side by side on the same plot of land. One is the n-type device, the other the p-type, and a logic cell like an inverter needs both. They take up room next to each other, and that side-by-side footprint sets a hard floor on how small a standard cell can get. A complementary FET, or CFET, answers that floor by asking a simple question: what if you stacked one house directly on top of the other instead of building them next to each other? Stack the n-type transistor on top of the p-type (or vice versa) in the same footprint and you roughly halve the area each logic cell needs.

This is the next move after the staircase of devices that came before it. The planar transistor gave way to the FinFET around the 22nm generation once a flat channel could no longer hold off leakage; the FinFET in turn handed off to gate-all-around (GAA) nanosheets around 3nm, where the gate wraps the channel on all four sides for tighter control. Each of those steps reshaped a single transistor to keep it switching cleanly as it shrank. CFET is different in kind: it does not reshape the transistor so much as fold the layout into the third dimension, stacking the complementary pair vertically. It is the structural answer to a layout-density limit, the way GAA was the answer to a leakage limit.

The catch is that building two transistors in one vertical column is genuinely hard. You have to grow or bond the top device over the bottom one, wire both into the cell without the layers fighting for space, and keep the heat from the buried lower device from cooking the whole stack. For that reason CFET today lives in research labs and early development, not in shipping products, and it pairs naturally with other frontier tricks like backside power delivery, which moves the power rails beneath the wafer and frees up the crowded front-side metal that a denser stacked cell would otherwise choke on.

Also calledcomplementary field-effect transistorCFETstacked CFET

Compound interest is interest earning interest. You put money somewhere, it earns a little return — and then that return joins the pile, so next time you earn a return on the new, bigger pile too. Picture a snowball rolling downhill: it starts small, but each turn wraps on more snow, and the more it has grabbed, the faster it fattens. Growth that feeds on itself like this doesn't add up steadily — it accelerates.

This is why patience is so powerful for a saver. Money left alone for decades doesn't just grow a bit more than money left for one year — it grows dramatically more, because the early gains have time to spawn gains of their own. The same engine runs in reverse on debt: unpaid interest on a credit card or loan gets folded into what you owe, and then you're charged interest on that too. The very force that quietly builds a fortune can just as quietly bury someone.

A common trap is to assume your money simply doubles in a tidy, straight line. It doesn't — the curve bends upward, slowly at first and then startlingly fast. That late, steep stretch is exactly why starting early beats trying to catch up later, and why small differences in the rate, compounded over many years, end up worlds apart.

Also calledcompoundingcompound growthRule of 72复利複利利滚利利滾利

Computational neuroscience is the branch of brain science that uses math and computer simulations to figure out how brains compute — that is, how a soft, wet tangle of cells manages to turn light, sound, and touch into thoughts, decisions, and movements. Instead of only describing what neurons look like or which one lights up when, it asks a sharper question: what is the brain actually calculating, and by what recipe? It treats the brain a bit like a mysterious machine and tries to reverse-engineer the rules running inside it, writing those rules down as equations and then running them on a computer to see if a virtual brain behaves like a real one.

The method is a back-and-forth between theory and experiment. A researcher might build a model — say, a small network of simulated neurons wired together — give it a task like recognizing a shape or remembering a number, and then check whether the model's activity matches what scientists record from living brains. When the simulation gets something wrong, that mismatch points to a missing piece, and the model is refined. This matters because the brain is far too intricate to understand by intuition alone: there are roughly 86 billion neurons, each connected to thousands of others, and only by capturing their interactions in precise, testable models can we explain how memory, vision, or decision-making emerge. The same models also feed back into the wider world, inspiring artificial-intelligence systems and helping doctors understand what goes wrong in conditions like epilepsy or Parkinson's disease.

Also calledtheoretical neurosciencecomputational neurobiology理论神经科学理論神經科學

Computed-torque control is a way of steering a robot arm that first cancels out the arm's own complicated physics, so that what is left behaves like a simple, well-behaved toy. A real arm is messy to control: a joint near the shoulder has to fight gravity pulling on the whole limb, it gets shoved around as other joints swing, and a heavy elbow feels totally different from a light wrist. Instead of ignoring all that, the controller keeps a math model of the arm's weights, lengths, and motions, and at every instant it computes exactly the torque (the twisting push at each motor) needed to counter gravity and these tug-of-war effects. With those known forces pre-paid, each joint is freed to respond cleanly to your commands.

Once the physics is cancelled, the hard nonlinear arm collapses into something the controller can treat as a row of independent, identical units — push a joint and it simply accelerates, with no surprises and no cross-talk from its neighbours. The controller can then add a plain, gentle correction on top (typically a PID-style nudge that pushes harder the farther the joint is from where it should be) and get crisp, accurate tracking of a desired path. In short, computed-torque control spends a model of the robot to buy itself an easy control problem.

The catch is that it is only as good as its model: if the robot's true weight, friction, or a carried load differs from what the math assumes, the cancellation is imperfect and the leftover errors must be mopped up by the correction term or by adaptive methods. That is why it shines on well-characterised lab and industrial arms and is often paired with techniques that tune the model on the fly.

Also calledinverse dynamics control逆动力学控制逆動力學控制

A conditional is code that makes a decision. It checks whether something is true, and based on the answer it picks which path to take: IF this is true, do that — OTHERWISE, do something else. This is how programs choose.

It works like a fork in the road. The program reaches the fork, asks a yes/no question — is the user logged in? is the cart empty? — and goes left or right depending on the answer. Same code, different outcomes for different situations.

You can chain the questions: if the first isn't true, check a second (else if), and if none match, fall through to a final catch-all. That's how a handful of simple yes/no checks add up to behaviour that feels smart.

Also calledif statementif/elsebranch
See alsoloopvariable

Conditioned place preference is a simple experiment scientists use to find out whether an animal — usually a mouse or rat — found some experience pleasurable. The idea is a lot like how you might grow to love a particular cafe just because something wonderful once happened to you there. The animal is given a box with two clearly different rooms — say, one with striped walls and a smooth floor, the other with spotted walls and a rough floor. During training, every time the animal feels good (for example, after receiving a reward such as a drug, tasty food, or the company of a mate), it is placed in one specific room. The plain, neutral feeling gets paired with the other room. The animal isn't told anything; it simply lives through these pairings over a few days.

Then comes the test: a door is opened and the animal is free to wander between both rooms with no reward present at all. If it chooses to spend more time in the room that was once paired with the good feeling, that lingering pull is the conditioned place preference — the place itself has become a stand-in for the reward, because the brain quietly learned to link that scenery with feeling good. Researchers measure preference by timing how long the animal stays on each side. The test is popular because it is cheap, needs no special training of the animal, and turns an invisible inner state — did this feel rewarding? — into a number anyone can count, which makes it a workhorse for studying addiction, the brain's reward chemistry, and what makes experiences feel good or bad.

Also calledCPPplace preference test位置偏好测试位置偏好測試

The configuration space, almost always shortened to C-space, is an imaginary map that captures every possible pose a robot can strike, with one point on the map standing for one complete pose. Here "pose" means the full set of numbers needed to pin the robot down: for a simple arm, the angle of each joint; for a wheeled robot rolling on a floor, its x and y position plus which way it faces. If a robot has, say, six joints, then one point in its C-space is just a list of six numbers, and the whole space has six dimensions — impossible to picture, but perfectly easy to compute with. The key mental switch is this: in C-space you stop thinking about the robot's metal body moving through a room and start thinking about a single dot gliding through this map of poses.

Why bother with such an abstraction? Because planning a motion is enormously simpler when the robot is shrunk to a single point. In the real room the robot is a bulky shape with arms and corners that can clip a wall in complicated ways; tracking all of that during planning is a nightmare. But in C-space the entire robot becomes one dot, and the question "can the robot move from here to there without hitting anything?" turns into the much cleaner question "can this dot travel from one point of the map to another along a clear route?" Almost every path-planning method in robotics quietly does its work in C-space, not in the physical workspace you can see — that is the central trick that makes motion planning tractable.

Also calledC-spaceC空间C空間configuration space

A connectome is a complete wiring diagram of a nervous system: a map that names every neuron and draws every connection between them. Think of a city's road map, but instead of streets joining buildings, it shows the tiny junctions, called synapses, where one nerve cell passes a signal to the next. A full connectome tells you not just that two neurons talk to each other, but exactly which cell reaches out to which, so the whole tangle of brain wiring becomes something you can actually trace and read.

Researchers build a connectome by slicing nervous tissue into wafer-thin sheets, photographing each one under a powerful microscope, and then following every fibre as it threads from image to image until the connections are pieced back together. This is enormously hard work, because a small brain holds vast numbers of cells and far more links between them; even with computers helping, charting a whole brain can take years. So far complete connectomes exist only for small creatures, such as a roundworm and the fruit fly, while maps of larger brains like the mouse and human remain partial.

The point of all this labour is that wiring shapes behaviour. Knowing which neuron connects to which lets scientists ask precisely how a circuit produces seeing, remembering, or moving, and to test those ideas by switching single cells on or off. A connectome does not by itself explain how a brain thinks, any more than a road map explains traffic, but it is the foundation other explanations are built on, and a long-term goal for understanding the human mind.

Also calledneural wiring diagrambrain wiring map神经连接图谱神經連接圖譜脑接线图腦接線圖

Connectomics is the science of mapping a brain's complete wiring diagram — every nerve cell (neuron) and every connection it makes to other cells. Think of the brain as a vast city where the neurons are buildings and their connections are the roads, phone lines, and power cables linking them. Connectomics tries to draw the full map of that infrastructure, down to the last alleyway, so we can see exactly how each part talks to every other part.

Building such a map is staggeringly hard. A single human brain holds roughly 86 billion neurons, and each one can connect to thousands of others through tiny junctions called synapses, adding up to trillions of links. To trace them, scientists slice brain tissue into wafers thinner than a hair, photograph each slice with powerful electron microscopes, and use computers to stitch the images back into a 3D model and follow each wire by hand or with artificial intelligence. So far, only small creatures have been fully mapped — a roundworm with 302 neurons, and a fruit fly's brain — while the full human connectome remains a distant goal.

Why bother? The hope is that the pattern of connections, not just the cells themselves, is where memory, personality, and thought truly live. A complete wiring map could reveal how healthy brains compute and how that wiring goes wrong in conditions like autism, schizophrenia, or Alzheimer's disease, giving researchers a kind of circuit diagram to diagnose and repair.

Also calledconnectome mappingneural wiring diagram脑连接图谱腦連接圖譜

Consciousness is the simple fact that there is something it is like to be you right now. As you read this, you are not just processing words like a machine would — you are actually experiencing them: the brightness of the screen, the quiet voice in your head, the slight ache in your back, the sense that all of this is happening to someone, and that someone is you. That felt, first-person quality of being awake and aware — the inner movie that no one else can watch — is what scientists mean by consciousness.

What makes it so puzzling is that it seems to arise from ordinary brain matter. Your brain is a crowd of roughly 86 billion nerve cells trading tiny electrical and chemical signals, with no single cell that holds the experience. Yet somehow their teamwork produces a unified scene — the smell of coffee, its warmth, the memory it stirs — all bound together into one moment that feels like it belongs to a single self. Researchers study consciousness by watching how the brain changes between states that have it and states that lack it: deep dreamless sleep, anesthesia, or a coma all dim or switch off the inner movie, while waking, dreaming, and alert attention turn it back on. Comparing those states helps reveal which patterns of brain activity the experience seems to ride on.

Consciousness matters far beyond curiosity. It is why a sleeping patient can feel a surgeon's knife or be safely numbed to it, why we treat a person and not a thermostat as someone who can suffer, and why questions about coma, animals, and even future machines turn on whether there is any inner experience present at all. It remains one of the deepest open problems in science: we can map the brain activity that comes along with experience, but explaining why that activity should feel like anything from the inside is still unsolved.

Also calledsubjective awarenesssentienceawareness主观觉知主觀覺知知觉知覺

A consensus mechanism is the set of rules a blockchain uses to let thousands of strangers, with no boss and no central server, agree on one shared version of the truth — namely, which transactions happened and in what order. The hard part is that these participants do not trust each other and some may be lying or broken, yet they must all end up with the same ledger. The consensus mechanism is the agreed procedure that makes that possible.

Imagine a crowded room where everyone keeps their own copy of a shared notebook, and there is no referee. To stay in sync, the crowd needs a fair, public way to pick whose new page everyone copies next, plus a way to make cheating expensive or pointless. A consensus mechanism does exactly this: it decides who gets to propose the next block, how the rest check that the block follows the rules, and how disagreements are resolved so the whole network converges on one chain.

Different blockchains choose different mechanisms with different trade-offs. Proof of work makes proposing a block require real computation, so rewriting history would cost a fortune in energy. Proof of stake instead requires participants to lock up funds they would lose for misbehaving. Either way, the goal is the same: keep honest participants in agreement without anyone being in charge, which is what lets a blockchain run as a leaderless, tamper-resistant system.

Also calledconsensus protocol共识机制共識機制

Imagine you have to test a vending machine. You could hand-write a checklist — insert a dollar, press B4, expect a candy bar — but you'd only ever check the handful of cases you thought of. The bugs that bite are the ones nobody pictured: someone jams in three coins, hits two buttons at once, and asks for change all in the same second. Constrained-random verification flips the work around. Instead of scripting each test by hand, you describe the rules of legal input — coins must be valid denominations, a selection must be a real slot — and then let the tool fire thousands of random combinations that all obey those rules, hunting for the corner case no human would think to write down.

More precisely, it is a stimulus-generation strategy where each test case is drawn at random from a space bounded by constraints — declarative rules that keep the random values legal and interesting. A constraint solver picks values that satisfy every rule simultaneously: an address that stays in range, a packet length that's legal for the protocol, a burst type that's allowed only when another field is set. Run with a different random seed each time and a single testbench explores a huge swath of the input space across many runs, reaching states a directed test would never stumble into.

The catch is that randomness alone tells you nothing about what you actually exercised, so the technique never travels alone. You pair it with functional coverage to measure which scenarios actually got hit — and to know when you can stop — and with assertions to automatically flag when the design misbehaves; together these turn a flood of random cases into a measurable, self-checking campaign. This is the engine underneath modern UVM testbenches, where constrained-random generation, coverage, and checking are the standard way large RTL designs get verified.

Also calledconstrained-random testingCRTconstrained random stimulusrandomized verification约束随机验证約束隨機驗證约束随机测试約束隨機測試

Contact dynamics is the study of what happens at the exact moment a robot touches the world — when a foot hits the floor, a gripper closes on a box, or a fingertip presses a button. As long as a robot is moving through empty air, its physics is smooth and predictable. The instant it makes contact, everything changes abruptly: the surface pushes back, motion is suddenly blocked in one direction, and forces can spike. Contact dynamics is the set of rules and models that describe these sudden touches, presses, and bumps.

Three things make contact especially tricky to model. First, contact is one-way: a floor can push your foot up, but it can never pull it down, so the math has to switch on only when surfaces actually press together. Second, hard impacts are nearly instantaneous — a hammer strike or a foot slamming down changes speeds in a flash, almost like a sudden jolt rather than a gradual push. Third, friction at the contact decides whether things grip or slip sideways, which is the difference between a hand holding a cup and the cup sliding out. A good contact model has to capture all three at once.

Getting this right is the make-or-break of physical robots. A walking robot stays upright only because each footstep transfers force cleanly through the contact with the ground; a robot hand grasps a fragile egg only by managing exactly how much it presses and whether the surface slips. Both robot controllers and physics simulators lean heavily on contact dynamics, and it remains one of the harder corners of robotics precisely because real contact is messy, fast, and easy to model wrongly.

Also calledcontact mechanics碰撞动力学接触力学

Contact-rich manipulation covers tasks where the robot is constantly touching, rubbing, and bumping against things, and where those contacts make and break over and over as the job goes on. Think of plugging in a charger, threading a bolt, snapping two Lego bricks together, or fitting a peg into a tight hole. These are not the smooth reach-through-empty-air motions of moving an arm from A to B; they are jobs done by feel, where the parts press, slide, catch, and seat against each other the whole time.

The reason these tasks are hard is that, against stiff parts, a tiny misalignment produces a large force. If a peg is a hair off-center as it enters a hole, it jams and the robot feels a sharp push-back; force it and something breaks. So a robot cannot just blindly follow a planned path — it has to be compliant, meaning it gives a little when it feels resistance, the way your own hand wiggles a key that does not quite slide into a lock. This softness, plus listening to the forces through the fingertips or wrist, lets the robot search out the right alignment instead of crashing through.

Because position alone is never accurate enough at this scale, contact-rich manipulation blends motion with force sensing and yielding: push gently, feel where it catches, slide along the surface, let the contact guide the part home. Insertion and assembly — the bread and butter of factories — are the classic examples, and getting robots to do them as smoothly as a human worker remains an active frontier.

Also calledcompliant manipulationcontact-rich tasks柔顺操作柔順操作

A container is a lightweight, sealed box that packages your app together with everything it needs to run — the right language version, libraries, settings, all of it. Hand that box to any machine and the app behaves exactly the same, banishing the classic 'but it works on my computer' headache.

Think of it like a shipping container at a port: the crane doesn't care what's inside — a fridge, bananas, car parts — it just lifts a standard box. Your laptop, a teammate's, and the production server all run the same container the same way.

Containers are lighter than full virtual machines because they share the host's operating system instead of bundling their own. Docker is the tool that made them popular, and you'll often hear 'spin up a container' for starting one.

Also calleddocker containerimagecontainerized appdocker

A contract is a promise the law will back up with its muscle. Buy a coffee, rent an apartment, take a job — each is a deal where, if one side breaks their word, the other can march into court and demand the promise be kept or the loss paid for. There is one more quiet requirement: both sides have to actually mean to be legally bound. That intention is why a casual "sure, I'll help you move on Saturday" between friends usually isn't a contract at all — nobody expected a judge to get involved.

The classic recipe has three ingredients. One side makes an offer ("I'll sell you my bike for $100"); the other accepts it ("deal"); and something of value passes both ways — that's consideration. Each side has to give something to get something: my bike for your money. A bare promise to hand over a gift, with nothing flowing back, usually isn't a contract the courts will enforce.

A common myth is that a contract has to be a thick document bristling with signatures. Most contracts are spoken or sealed with nothing more than a handshake or a tap of a card, and they bind just the same — though some kinds must be in writing to be enforceable, such as the sale of land or a promise to cover someone else's debt (a rule known as the Statute of Frauds). For the everyday deal, though, the written page matters less for making the agreement than for proving, later, exactly what everyone agreed to.

Also calledagreement合约合約契约

Control bandwidth is a measure of how fast-changing a command a controller can actually keep up with. Think of someone steering a boat to follow a wiggling line in the water. If the line bends slowly, the helmsman tracks it easily; if it zigzags faster and faster, at some point the boat just cannot turn quickly enough and starts cutting corners and lagging behind. Bandwidth marks roughly where that limit sits: it is the highest rate of change — the highest frequency of wiggle — that the system can still follow reasonably well before it gives up and falls behind.

The same number also describes which disturbances a controller can fight off. Slow shoves — a gradual headwind, a slowly draining battery, a load gently added — fall inside the bandwidth, so the controller has time to notice and correct them. Fast jolts — a sharp bump, a sudden gust, electrical noise — happen quicker than the loop can react, so they slip through and show up in the output. In short, a wider bandwidth means faster tracking of commands and stronger rejection of quick disturbances; a narrower bandwidth means a sluggish but often calmer, steadier system.

You might think more bandwidth is always better, but it is a trade-off. Pushing bandwidth up makes the system twitchier and more eager, which amplifies sensor noise and can edge it toward instability or oscillation. It is also capped by physical reality: motors, gears, and the mass being moved can only respond so fast no matter how clever the controller. Good design sets the bandwidth high enough to do the job and no higher, leaving a safe margin below the speeds where the hardware and stability start to complain.

Also calledclosed-loop bandwidth响应带宽控制频宽

A control policy is the rule a robot follows to decide what to do at every moment. Feed it what the robot currently knows about itself and the world — its joint angles, what its camera sees, how fast it is moving — and the policy hands back an action: turn this motor, take this step, close this gripper. You can picture it as the robot's instinct or its 'if I see this, I do that' habit. The whole point of robot learning is to grow a good policy from data and experience instead of having a person spell out every if-then rule by hand.

Policies come in two flavors. A deterministic policy is a strict recipe: the same situation always produces exactly the same action, like a thermostat that switches the heater on at precisely the same temperature every time. A stochastic policy instead gives a spread of possibilities — 'mostly go left, sometimes go straight' — and then rolls dice to pick one. That little bit of built-in randomness is surprisingly useful: it lets the robot try new things while still learning, and it keeps the robot from getting predictably stuck when the strict recipe would jam it against the same wall over and over.

Also calledpolicy策略策略函数

A control system is stable if, after you nudge or disturb it, it eventually settles back down to a steady state instead of swinging wider and wider out of control. Picture a bowl with a marble in it: tap the marble and it rolls around for a moment, then quietly comes to rest at the bottom — that is stable. Now flip the bowl over and balance the marble on top: the tiniest tap sends it rolling off and away, never to return — that is unstable. Stability is simply the difference between disturbances that fade and disturbances that grow.

Why does this matter so much? A feedback controller is constantly reacting to error, and a badly designed one can react too hard, overshoot, react hard again the other way, and feed its own mistakes until the swings explode. A stable design guarantees the opposite: knock the system off course and the wobbles shrink with each cycle until calm returns. This is the single most important property any controller must have. Speed, accuracy, and smoothness are all nice, but a fast and accurate system that is unstable is worse than useless — it is dangerous, because the motion runs away.

Stability is not all-or-nothing in practice; engineers talk about how stable a system is — its margin of safety. A design can be technically stable but still teeter on the edge, taking forever to settle or breaking into oscillation the moment the load changes. So good control aims not just to be stable, but to stay comfortably stable across the real range of conditions the machine will actually meet.

Also calledstability稳定性穩定性BIBO stability

Controllability asks a deceptively simple yes-or-no question: using only the knobs and levers you are allowed to touch, can you steer a system into any state you might want? A state here means the full set of inner conditions that describe what the system is doing — positions, speeds, temperatures, and so on. A system is controllable if, given enough time, your available inputs can drive every one of those inner conditions to any chosen value. If some corner of the system can never be reached or changed no matter how you work the controls, it is not fully controllable.

A homely picture helps. Suppose a model train sits on a figure-eight track and your only control is the throttle. You can put the train anywhere along that track, fast or slow — but you can never make it leave the rails and sit in the middle of the room, because no throttle setting reaches that state. The rails limit which states your single input can produce. Real machines have the same issue: a quadcopter that lost one motor may be unable to reach certain tilt-and-spin combinations; a heating system with a single furnace cannot independently set the temperature of every room. The missing reach is a lack of controllability.

Engineers care because controllability is a precondition for control itself: you cannot design a regulator to hold or move a state that your inputs physically cannot influence. It is checked mathematically from the model of the system, before any controller is built, and it often guides hardware choices — where to place a thruster, how many actuators to add, which valve to install — so that the states that matter are all reachable. A system that is uncontrollable in some part usually needs more or better-placed inputs, not a cleverer algorithm.

Also calledstate controllability可达性可控制性

The CNOT gate is a two-qubit operation with a simple rule: one qubit is the control, the other is the target, and the gate flips the target (swaps |0> and |1>) only when the control is |1>. If the control is |0>, nothing happens. Think of it like a light switch wired to a sensor — the light flips only when the sensor is triggered, and stays put otherwise. On plain |0> and |1> inputs it behaves exactly like ordinary if-then logic, which makes it easy to reason about.

The interesting part shows up when the control is in superposition. Because the gate acts on the whole two-qubit state at once (and, like all quantum gates, is reversible), feeding in a control that is a mix of |0> and |1> links the two qubits together: the target's value becomes tied to the control's. The result can be an entangled state that you cannot describe by giving each qubit its own separate state — measuring one tells you something about the other. This is why CNOT is the workhorse entangling gate in most hardware, and why a single-qubit gate plus CNOT together cover everything you need to build any quantum circuit.

Also calledcontrolled-X gateCX gate

A controller's gain is simply how hard it pushes back when something is off. Imagine steering a car back into your lane: if you barely turn the wheel, you drift for ages before you straighten out; if you yank it hard, you overshoot to the other side and start weaving. The gain is that turn-the-wheel-how-much choice, written as a number the controller multiplies the error by. A small gain reacts gently and slowly; a large gain reacts fast and forcefully. Tuning is the hands-on craft of picking those numbers so the machine corrects itself quickly without overshooting, shaking, or going unstable.

Most real controllers have not one knob but several — for example the three terms of a PID controller, each with its own gain — and they pull against each other. Crank one up for speed and you often pay in wobble; calm the wobble and the response gets sluggish. So tuning is always a balancing act between three things people care about: responsiveness (how fast it reaches the target), stability (whether it settles instead of oscillating forever), and overshoot (how far it sails past the target before settling). Good tuning finds the sweet spot where the system is brisk, calm, and steady all at once.

Engineers tune in different ways. Some turn the knobs by hand and watch how the machine behaves, nudging each gain up or down until it feels right. Others follow recipes — step-by-step rules of thumb that suggest starting values from a quick experiment. And many modern systems tune themselves, measuring their own response and adjusting the gains automatically. Whatever the method, the goal is the same: numbers that make the controller push back by just the right amount — not too timidly, not too violently.

Also calledgain tuning调参調參PID tuning

Convergent evolution is when distantly related animals independently arrive at a similar solution because it works well, not because they inherited it from a shared ancestor. The convergent evolution of intelligence means that complex problem-solving, learning, and flexible behavior have evolved more than once, in lineages that built their brains in very different ways.

Octopuses and their cephalopod relatives are the classic example. Their last common ancestor with vertebrates was a simple worm-like creature over half a billion years ago, yet octopuses learn quickly, use tools, and explore with striking curiosity. Strikingly, much of an octopus's nervous system lies out in its arms rather than in a central brain, so it reached impressive behavior by a route completely unlike ours. Crows and parrots offer another case: with no neocortex, they still rival apes on some cognitive tasks.

The lesson is that there is no single recipe for a clever brain. Intelligence is not a ladder that all animals climb toward a human peak; it is more like several different inventions of the same useful trick. Comparing these separate solutions helps scientists ask what minds really need, rather than assuming the mammalian way is the only way.

Also called智能的趋同演化智能的趨同演化cephalopod intelligence

A convolutional neural network, or CNN, is the kind of artificial brain that lets computers see. Instead of staring at a whole photo at once, it slides a tiny window — a little filter — across the image, looking at one small patch at a time, the way you might run a magnifying glass over a map. Each filter is tuned to spot one simple thing: a slanting edge, a splash of color, a curve.

The clever part is stacking these layers. The first layer finds plain edges; the next combines edges into corners and textures; the layer above that assembles them into eyes, wheels, or petals; and the top layer finally says "cat" or "stop sign." Built from the ground up, simple parts become rich shapes become whole objects — and the network learns which filters to use by practicing on millions of labeled pictures.

A common worry is that a CNN just memorizes the exact photos it trains on. Mostly it doesn't: because the same small filter is reused across every patch of the image, the network tends to learn patterns that work anywhere — a face is a face whether it sits in the top corner or dead center. Memorizing, or "overfitting," can still happen, which is why training uses huge, varied datasets. But that knack for reusable patterns is exactly why CNNs became the workhorse of computer vision, powering everything from phone cameras to medical scans.

Also calledCNNConvNet卷积网络卷積網路

A cookie is a tiny note a website asks your browser to keep — and to hand back, automatically, every time you visit that same site again. It's how the web remembers you. HTTP itself is forgetful: each request arrives as if you'd never been there before, so the site slips you a little name tag and your browser quietly clips it on for next time.

The classic job is staying logged in. When you sign in, the server sends back a cookie holding something like a session id or a token. From then on your browser attaches that cookie to every request, and the site goes 'ah, it's you' — no need to type your password on every single page.

It's just a small piece of text the site sets and your browser stores, scoped to that one domain. Cookies aren't programs and can't read your files; they're more like a coat-check ticket the site handed you, that you politely show again each time you come back.

Also calledhttp cookiebrowser cookiesession cookieset-cookie

A coordinate frame is a chosen starting point plus a set of directions that you measure everything against. Picture standing in the corner of a room: pick that corner as your zero point (the origin), then call one wall 'forward', another wall 'left', and straight up 'up'. Now you can describe any spot in the room with three numbers — how far forward, how far left, how far up. Those numbers only make sense because you agreed on that corner and those three directions first. That agreed-upon corner-plus-directions is the coordinate frame.

Robots care about frames because a robot is never just one thing in one place. The room has a frame, the robot's base has a frame, its gripper has a frame, the camera has a frame, and a coffee cup on the table has a frame. The exact same coffee cup has different numbers in each one — close to the camera, far from the base, slightly to the left of the gripper. None of these numbers is 'the real' position; each is the truth as told from one frame. Saying 'the cup is at (0.3, 0.1, 0.0)' is meaningless until you say which frame those numbers are measured in.

Because of this, almost every spatial calculation in robotics is really a conversation between frames: knowing where something is in one frame and figuring out where it is in another. Get the frame wrong and a robot will reach a foot to the side of the cup with perfect confidence. So robotics people are almost fussy about always naming the frame, the same way a careful cook always names the units — '200', of what? grams? millilitres? The frame is the 'of what' for position and direction.

Also calledreference frameframe参考系參考系坐标架座標架

A coplanar waveguide is the everyday wiring shape that carries microwave signals across a superconducting quantum chip. It is just three flat metal strips lying side by side on the same surface: a thin center conductor in the middle, flanked by a wide ground plane on each side, with a narrow gap of bare substrate separating them. The signal travels along the center strip, while the two grounds give the field something to push against. Because everything sits on one face of the chip, you can pattern all of it in a single step out of the same superconducting film, which is a big part of why it became the workhorse layout.

What makes CPW useful is that its behavior is set by simple geometry. The width of the center strip and the size of the gaps to ground fix the line's characteristic impedance, and designers almost always tune those dimensions to hit about 50 ohms, the value the rest of the microwave world expects, so signals flow in and out without bouncing back. The same shape does double duty: cut a length of CPW to the right size and let it ring, and it becomes a resonator, the tuning-fork element used for qubit readout and filtering. So a single line style routes the control and readout signals and also forms many of the resonant circuits on the chip.

There are two honest catches. First, a CPW has two separate ground strips, and if they are left to drift apart they can host an unwanted ringing mode along the gap, called a slotline mode, that steals energy and leaks signal between qubits; designers suppress it by stitching the grounds together at intervals with little crossover bridges (airbridges). Second, the electric field crowds into the narrow gaps right at the metal edges and the exposed substrate surface, which is exactly where lossy defects and contaminants live, so energy leaks away there and feeds straight into qubit decoherence. Getting CPW right is therefore as much about clean edges and well-tied grounds as it is about hitting the target impedance.

Also calledCPWcoplanar transmission line共面传输线共面傳輸線

In a multi-joint robot, the Coriolis and centrifugal terms are the extra forces that appear purely because the robot is already moving — forces that vanish the instant it holds still. They are the part of the dynamics driven not by gravity and not by acceleration, but by velocity: how fast the joints are turning right now. Picture a spinning office chair. When you stick your legs out while spinning, you feel a force flinging them outward; that outward fling is the centrifugal effect. And if you move your arms in or out while still spinning, you feel a sideways nudge that wasn't there before; that sideways nudge is the Coriolis effect.

These forces matter because robot joints are linked, so motion in one joint quietly stirs up forces at the others. The centrifugal terms grow with the square of a joint's own speed — spin twice as fast and the outward fling roughly quadruples. The Coriolis terms arise when two joints move at once, coupling their velocities into a force felt elsewhere in the arm. Neither comes from any motor pushing on purpose; both are bookkeeping for the way a moving, jointed body shoves itself around. Engineers often gather them into a single object written C(q,q̇), where the q̇ is a reminder that these forces depend on how fast the joints are moving.

Ignore these terms and a robot moving slowly will behave almost as you expect — but command it to move fast, and the unmodeled velocity forces throw it off course, causing overshoot, drift, or vibration. That is why high-speed, high-precision control must explicitly compute and cancel the Coriolis and centrifugal terms, so the arm tracks its target even when whipping through the air rather than crawling.

Also calledvelocity-coupling termsC(q,q̇) term速度耦合项离心力项

The corpus callosum is a thick, curved bridge of nerve fibers buried deep in the middle of the brain. Its job is to connect the brain's two halves — the left and right cerebral hemispheres — so they can talk to each other. Picture two people working on opposite ends of the same desk: without a way to pass notes back and forth, each would only know half the story. The corpus callosum is that bundle of notes, made of roughly 200 million wire-like fibers running side to side. It is the largest such connection in the brain, and because the fibers are wrapped in a pale, fatty insulation, it looks white — which is why it belongs to what scientists call the brain's white matter.

Every moment, the two hemispheres handle slightly different jobs — for many people the left leans toward language and the right toward spatial sense — yet you experience the world as one seamless whole. That unity depends on the corpus callosum constantly shuttling signals across, keeping movement, vision, touch, and thought coordinated between the sides. When this bridge is cut or missing, the effect is striking: in rare surgeries that sever it to control severe epilepsy, the two halves can end up acting almost like two separate minds, each unaware of what the other sees or decides. That dramatic outcome is the clearest proof of just how much everyday coordination this quiet bundle of fibers provides.

Also calledgreat commissure脑梁腦樑

CORS is the browser rule that stops a web page from quietly calling a different website's API unless that other site has explicitly said 'yes, you're allowed.' Your page is from one origin (say myapp.com); the API lives at another (api.bank.com); by default the browser slams the door between them. CORS is the polite handshake that opens it.

It exists for a good reason. Without it, any sketchy site you happened to visit could fire off requests to your bank, your email, your everything — riding on the login cookies already sitting in your browser. So the browser enforces a default of 'a page may only freely talk to its own origin,' and a server has to opt in by sending back a header (Access-Control-Allow-Origin) that names who's welcome.

Here's the part that trips up every beginner: a 'CORS error' is not a bug in your code and not really an error from the server — it's the browser refusing to hand you a response the server already sent, because the server forgot to include the permission header. The fix lives on the API server (add the header), not in your frontend. Once you know that, those red console messages stop being scary.

Also calledcross-origin resource sharingcors errorcross-originsame-origin policyaccess-control-allow-origin

Cortical layers are the six horizontal sheets of cells, stacked one on top of another, that make up the neocortex — the wrinkled outer rind of the brain where much of our thinking, seeing, and movement is organized. If you sliced through this rind and looked at it under a microscope, you would not see a uniform paste of cells. Instead you would see bands, like the stripes in a layered cake, where the neurons (the brain's signaling cells) change in size, shape, and how densely they are packed. These bands are the layers, and anatomists number them from the surface inward as I (the outermost) through VI (the deepest, nearest the brain's white matter). The Latin word for such a layer is lamina, which is why the layered structure is called laminar.

Each layer has a job, set largely by what it connects to. Layer IV is the main mailbox: it receives incoming signals from the thalamus, a relay station that funnels information from the senses. Layers II and III mostly talk sideways to other patches of cortex, knitting distant regions together. Layers V and VI are the outboxes: their large neurons send commands down and out — to the spinal cord, muscles, and other deep brain structures, or back to the thalamus. Layer I, just under the surface, holds few cell bodies and is mostly a web of connecting fibers. Because every region of neocortex shares this same six-layer plan, yet tunes the thickness of each layer to its task (motor areas have a thin layer IV, sensory areas a thick one), the layers are a kind of universal blueprint that helps scientists map the cortex and compare one brain area — or one species — to another.

Also calledcortical laminaeneocortical layers皮质层大脑皮层分层皮質層大腦皮層分層

Cortical microstimulation is the reverse of recording: instead of listening to neurons, you gently nudge them. Tiny electrical currents delivered through fine electrodes make nearby neurons fire, so you are writing information into the brain rather than reading it out.

The most striking use is restoring touch. By stimulating the part of the cortex that handles body sensation, researchers can make a person feel a pressure or tingle on a hand — even a prosthetic one — as if it were really being touched. Pair this with a robotic hand that has sensors, and the limb can report back what it is holding.

The art lies in being gentle and precise: just enough current to evoke a clear, natural-feeling sensation in the right spot, without spreading, overwhelming, or harming the tissue. Get it right, and a machine touching the world becomes something the person can actually feel.

The corticospinal tract is the main express cable that carries your deliberate movement commands from the brain down to the spinal cord. When you decide to wiggle a finger, type a word, or take a step, the order starts in the motor cortex — a strip near the top of the brain that plans voluntary action — and travels along this bundle of long nerve fibres. Think of it as a dedicated highway running from the brain's command center down through the brainstem and into the spinal cord, with off-ramps along the way where the signal is handed off to the nerves that actually drive the muscles.

It works as a relay in two steps. The fibres of the tract belong to upper motor neurons — long cells whose bodies sit in the cortex and whose cables reach down toward the spine. Most of these fibres cross over to the opposite side at the lower brainstem, which is why the left half of the brain controls the right side of the body and the right half controls the left. At the correct level of the spinal cord, each fibre passes its message to a lower motor neuron, a second cell that runs out to a muscle and tells it to contract. This pathway matters most for fine, skilled, finger-and-hand movements, so damage to it — from a stroke or spinal injury — typically causes weakness, clumsiness, and loss of delicate control on the affected side.

Also calledpyramidal tract锥体束錐體束

Cortisol is a hormone — a chemical message carried in the blood — released by the adrenal glands, two small caps that sit on top of your kidneys. Its main job is to get the body ready for a challenge by mobilizing energy: it pushes sugar into the bloodstream, makes that fuel easier to reach, and sharpens your alertness, like a manager who, when a big order comes in, unlocks the warehouse and tells everyone to be ready to work. You feel its effects most clearly when you are under pressure — a near-miss in traffic, an exam, a tense argument — but it is also released in a daily rhythm, peaking in the morning to help you wake up and get going, and dropping low at night so you can rest.

Cortisol is the slow, lasting arm of the body's stress response, and it works on a timescale of minutes to hours rather than the split-second jolt of adrenaline. When the brain senses a threat, the hypothalamus and pituitary gland (two control centers deep in the brain) send a chemical chain of commands down to the adrenal glands telling them to make cortisol — a route scientists call the HPA axis. Once cortisol has done its job, it loops back to the brain and switches off the alarm, a built-in brake that keeps the response from running away. This system is brilliant for short, real emergencies. The catch is that the same machinery fires for modern, ongoing pressures too — money, deadlines, loneliness — and when cortisol stays high for weeks or months, that constant flood can wear down sleep, mood, memory, and the body's overall health.

Also calledstress hormonethe cortisol response压力荷尔蒙皮质醇反应壓力荷爾蒙皮質醇反應

The cosmic microwave background is the faint afterglow of the Big Bang — a soft, even hum of light that fills the entire sky, coming at you equally from every direction. It is the oldest light there is, released when the universe was just 380,000 years old and cooled enough for the first atoms to form. Think of it as a baby photo of the cosmos, taken when everything was still a glowing fog.

Back then this light was blazing hot, but as the universe stretched out over nearly 14 billion years it has been stretched and cooled along with it, until today it lands on us as gentle microwaves — about 2.7 degrees above absolute zero, far colder than your freezer. Astonishingly, you have already met it: roughly 1% of the static fuzz on an old untuned TV was this ancient glow, sieved out of the heavens.

It was found completely by accident. In 1965 two radio astronomers, Penzias and Wilson, kept hearing a stubborn hiss in their antenna they couldn't get rid of — they even scrubbed out pigeon droppings, suspecting the birds. The hiss turned out to be the universe itself. A common mix-up: the background isn't perfectly smooth. Its faint ripples, mapped by later satellites, are the seeds from which every galaxy and star eventually grew.

Also calledCMBrelic radiationprimordial radiation3 K background宇宙背景辐射微波背景宇宙背景輻射

A costmap is a map of the robot's surroundings carved into a grid of little squares, where each square holds a number saying how 'expensive' or risky it is to drive through that spot. A wide open floor square is cheap, so its cost is low; a square sitting right on a wall is forbidden, so its cost is maxed out; and a square just next to a wall is mildly costly, a warning to keep some breathing room. When a planner looks for a route, it adds up these square-by-square costs along each candidate path and prefers the route with the smallest total — much like choosing the cheapest set of stepping stones across a stream.

A key trick that makes costmaps safe is obstacle inflation: around every real obstacle, the costmap paints a halo of raised cost that fades out with distance, as if the obstacle were puffed up larger than it really is. This exists because the robot is not a single point — it has width — so if a path is allowed to skim the exact edge of a wall, the robot's body would actually clip it. By inflating obstacles, the planner can keep treating the robot as a dot while still leaving a real cushion of clearance. The size of the halo is usually set to the robot's own radius plus a little extra for comfort.

Costmaps are usually built fresh and constantly updated from live sensor data — laser scans, depth cameras, bumpers — so they capture both the fixed walls from a stored map and new things that appear, like a person stepping into the hallway. Navigation systems often keep two layers at once: a big, slow-changing global costmap of the whole area for plotting the overall route, and a small, fast-updating local costmap around the robot for dodging surprises in real time.

Also calledcost map代价栅格

The CPU is the chip that actually does the computing — the brain of the machine. Every instruction in every program you run, from adding two numbers to drawing a pixel, ultimately gets carried out here, one tiny step at a time. What makes it feel magical is sheer speed: a modern CPU runs billions of these little steps every second, so a mountain of trivial operations adds up to a smooth video, a fast page load, a game that responds the instant you move.

On its own, the CPU is surprisingly simple-minded. It mostly just fetches an instruction, does it, and grabs the next — fetch, do, repeat, forever. The cleverness you see on screen comes from stacking billions of those dumb little steps into something useful. Programs live in RAM; the CPU reaches into that fast workspace to grab the next instruction and the data it needs to work on.

Modern CPUs pack several 'cores', and each core is essentially its own little brain that can work on a different task at the same time. That's why a 'quad-core' chip can keep your music playing, your download going, and your editor responsive all at once — four workers instead of one, each chewing through their own pile of instructions.

Also calledprocessorthe chipcore

The cranial nerves are twelve pairs of nerves that sprout directly from the underside of the brain (and the brainstem just below it), rather than from the spinal cord like most other nerves. Think of the brain as a control tower and these twelve cables as the direct, short-haul wiring that reaches the face and head: they carry the senses of smell, sight, taste, hearing, and balance inward, and they send commands outward to move the eyes, chew, smile, speak, and swallow. Because there is a left and a right of each, there are twelve pairs in all, and they are traditionally numbered I through XII from front to back.

Each nerve has its own job, and many do more than one thing. Some are purely about sensation (for example, the optic nerve for vision), some are purely about movement (for example, the nerves that steer the eyeball), and some are mixed, carrying both sensation and motor commands. A few of them—most famously the tenth, the vagus nerve—travel far beyond the head to help run internal organs like the heart, lungs, and gut, quietly slowing the heart and aiding digestion. This is why cranial nerves matter so much in medicine: a problem like a drooping eyelid, a crooked smile, double vision, or trouble swallowing can point a doctor to exactly which nerve has been injured.

Also calledcranial nerves I–XII脑神经腦神經颅神经顱神經

CRISPR is a precise tool for editing genes — the instructions written in DNA inside living things. Scientists send in a short piece of "guide" RNA that matches the exact spot they want to change, and it leads a protein called Cas9 straight to that address in the DNA. Cas9 then snips the DNA there, and the cell repairs the cut — letting researchers turn a gene off, fix it, or swap in something new.

The clever part is where the idea came from: bacteria invented it. To defend against viruses, bacteria keep little "mug shots" of past invaders and use them to find and cut up the virus's DNA if it returns. Jennifer Doudna and Emmanuelle Charpentier showed in 2012 that this natural cut-and-paste system could be reprogrammed to target almost any gene we choose — work that won them the 2020 Nobel Prize in Chemistry.

Because it is cheap, fast, and remarkably accurate, CRISPR has reshaped biology — from developing treatments for sickle-cell disease to studying how genes work. It also raises hard questions, especially about editing genes in human embryos, where the changes would pass to future generations.

Also calledCas9CRISPR-Cas9gene editinggenome editing基因编辑基因編輯CRISPR/Cas9

CRISPR gene editing uses a borrowed bacterial system, CRISPR-Cas9, as a pair of programmable molecular scissors. It is like the find-and-replace tool in a word processor, but for the genome: you tell it the exact stretch of DNA to look for, it finds that spot among three billion letters, and it makes a cut so the sequence can be changed. The breakthrough is how easy it became to aim those scissors.

The system has two parts. A short guide molecule is written to match the target DNA letters, acting like a search term. The Cas9 protein rides along, scans the genome until the guide locks onto its match, and then snips both strands of DNA at that point. The cell rushes to repair the break, and scientists use that repair moment to disable a gene, paste in a correction, or rewrite the local sequence.

CRISPR made editing dramatically cheaper and faster, opening real medical possibilities and the first approved CRISPR-based therapy. But it raises serious questions, especially around editing embryos in ways that pass to future generations, and around accuracy — the scissors can occasionally cut at the wrong place, so careful checking is essential.

Also calledCRISPR-Cas9CRISPR 基因编辑CRISPR 基因編輯

Picture a relay race where the whole team can't start the next lap until the slowest runner has finished the current one. Inside a chip, your logic works the same way: on every tick of the clock, data launches out of one register, races through a thicket of gates, and has to arrive at the next register before the next tick. The chip can only run as fast as its slowest hand-off allows — so that one worst, slowest route is the critical path, and it single-handedly sets the ceiling on your clock speed.

More precisely, the critical path is the register-to-register route with the least slack — the smallest margin between when the signal is required to arrive and when it actually does. Each gate and wire along the way adds a little delay; string enough of them together and the total can exceed the clock period (minus setup time), meaning the data is still settling when the next edge arrives and the wrong value gets captured. Static timing analysis finds this path by propagating delays through the design's timing graph and computing the slack at every register, then reporting the path whose slack is worst (most negative, or smallest positive) as the critical path.

Here's the part practitioners care about: the critical path is the thing you fix to go faster. Shave delay off it — by simplifying the logic, resizing gates, or chopping a long chain in half with an extra pipeline register — and the next-slowest path becomes your new critical path. Speeding up any other path does nothing for your maximum frequency; only the bottleneck matters. So timing closure is really a game of whack-a-mole, repeatedly attacking whichever path currently holds the crown.

Also calledlongest pathworst-case pathspeed pathcritical timing path关键路径關鍵路徑

A critical period is a limited window early in life when a part of the brain is unusually open to being shaped by experience — and what happens (or fails to happen) during that window can leave a lasting mark. Think of it like wet cement that has just been poured: while it is soft, you can press footprints, words, or patterns into it easily, and they set permanently as it hardens. The young brain has many such windows, each one timed for a particular skill — seeing, hearing, balancing, learning the sounds of a first language — and during the window the relevant neural circuits are hungry for the right kind of input.

What gets shaped is the wiring between neurons, the brain's signaling cells. During a critical period, connections called synapses that are used often grow stronger, while ones left idle are pruned away, so the experiences a child actually has end up sculpting which circuits survive. This is why a baby who cannot see clearly out of one eye in the first months of life may have permanently weak vision in that eye even after it is fixed — the visual circuits 'locked in' around the stronger eye while the window was open. It is also why young children pick up languages and accents so effortlessly, while the same learning becomes slower and harder once the window narrows. The brain stays changeable, or 'plastic,' throughout life, but never again with the wide-open, fast-setting flexibility of these early periods.

Critical periods do not slam shut all at once; they taper, and their timing differs from one ability to another. The key takeaway is that timing matters: the right experience at the right age does far more than the same experience delivered too late, which is why early sight, hearing, language exposure, and nurturing care are so important.

Also calledsensitive periodcritical window敏感期敏感期关键窗口期關鍵窗口期

Cross-frequency coupling is when one brain rhythm conducts another, like a slow wave acting as a beat that tells faster waves when to get loud. The brain is full of electrical rhythms — neurons firing in waves, some sweeping by slowly (a few times per second) and some racing (dozens of times per second). In cross-frequency coupling these rhythms do not run independently; instead a slow rhythm and a fast rhythm lock into a relationship, so what one is doing helps decide what the other does. The most common form is called phase-amplitude coupling: the position within a slow wave — whether it is at its peak, its trough, or somewhere on the way up — controls how strong the fast wave's wiggles become at that moment.

A simple picture: imagine slow ocean swells rolling toward a beach, and on top of every swell ride small, choppy ripples. The ripples are biggest right at the crest of each swell and almost vanish in the dips between swells. The swell is the slow rhythm, the ripples are the fast rhythm, and the fact that the ripples bunch up at the crest is the coupling. In the brain this is more than a curiosity. Researchers think it is a way of packaging information in time: the slow rhythm carves the timeline into slots (each cycle is a slot), and the bursts of fast activity riding inside each slot carry the actual details, like one item of a memory or one chunk of what you are paying attention to. By organizing fast detail inside slow frames, the brain can keep several pieces of information lined up in order without them blurring together.

Cross-frequency coupling shows up clearly in the hippocampus, a structure central to memory, where fast gamma bursts ride on a slower theta rhythm while an animal explores or recalls a route. It can be measured from recordings of brain activity — electrodes inside the brain, or sometimes scalp recordings — by checking whether the fast wave's strength reliably rises and falls with the phase of the slow wave. Because the pattern seems tied to healthy memory and attention, scientists also study how it changes in conditions such as epilepsy, Parkinson's disease, and Alzheimer's disease, hoping the coupling can serve as a readable sign of how well circuits are coordinating.

Also calledCFCphase-amplitude couplingnested oscillations相位-幅度耦合嵌套振荡相位-幅度耦合(繁)嵌套振盪

CRUD is the four basic things almost every app does with its data: Create something new, Read it back, Update it, and Delete it. Add a note, look at it later, edit a typo, throw it away — that's all four, and you've been doing CRUD your whole life without the acronym.

It shows up everywhere because it maps cleanly onto the tools underneath. In a SQL database the four are INSERT, SELECT, UPDATE and DELETE; over HTTP in a REST API they're usually POST, GET, PUT/PATCH and DELETE. Same four ideas, just spoken in different dialects.

When someone says an app is 'just CRUD', they mean its job is mostly shuttling records in and out of a database with no fancy logic — which is most software, and nothing to be ashamed of.

Also calledcreate read update deletecrud operations

Cryo-CMOS control means taking ordinary silicon control chips, the same CMOS technology that runs your phone, and redesigning them to work down inside the cold fridge near the qubits, at 4 kelvin or below. The motive is brutally practical: a quantum chip today needs several coaxial cables per qubit running from room-temperature racks down into the millikelvin core, and at a few hundred qubits that cable bundle becomes a tangle nobody can route, cool, or afford. If the electronics that generate and read pulses sit cold and close, one chip can serve many qubits and the forest of warm cables shrinks dramatically.

In practice these are custom integrated circuits, fabricated in a commercial foundry process but characterized and tuned for cryogenic temperatures, where transistors behave differently than at room temperature. They handle the dense, repetitive work near the qubits: multiplexing one line to address many qubits, generating or gating microwave pulses, and digitizing readout signals so that only a few thin digital wires, rather than hundreds of analog coax lines, need to climb back up to the warm world. Placing this layer at the cold stages also keeps signal paths short and shields them from room-temperature thermal noise.

The honest catch is heat. The coldest stage of a dilution fridge can remove only a tiny trickle of power, often well under a milliwatt at the qubit plate, and even a modest control chip can dissipate far more than that, so cryo-CMOS usually lives at a warmer 4-kelvin stage rather than right beside the qubits. Designers fight a constant tradeoff between how much circuitry they can run and how much heat the fridge can swallow. The approach is genuinely promising and several groups have demonstrated working controllers, but it is still early, and no design has yet shown it can control a large processor within the cooling budget.

Also calledcryogenic CMOScold electronics低温电子学低溫電子學

Imagine running a microwave cable from a warm room down into a fridge that holds your qubit at a hair above absolute zero. The cable does its job, but it also smuggles down something unwanted: faint thermal noise from the warm end, plus heat. Even a tiny trickle of room-temperature noise photons would scramble a delicate qubit. Cryogenic attenuation is the fix: small attenuators bolted onto the cable at each cold plate inside the fridge, deliberately weakening the signal so the noise riding along with it gets thrown away too.

An attenuator is just a resistor network that absorbs most of the power passing through and re-emits only the gentle thermal noise of its own temperature. So an attenuator sitting on the 4-kelvin plate replaces warm noise with 4-kelvin noise; another on the coldest plate replaces that with millikelvin noise. By staging attenuation down the fridge, each stage hands the next a cleaner signal, and the absorbed heat is dumped into a plate that the fridge can actually cool. Your control pulse arrives weak but bathed in a very cold, quiet environment.

The catch is that you are throwing away signal on purpose, so the room-temperature electronics must send much stronger pulses to compensate, and the absorbed power adds to the fridge's limited cooling budget. Designers balance how much to attenuate at each stage against how much heat each stage can take. It works well today and is standard practice, but it is also part of why scaling to many qubits is hard: every extra control line needs its own attenuated cable, and the heat and clutter add up fast.

Also calledcold attenuationinput-line attenuation输入线衰减輸入線衰減

A dilution refrigerator is layered like an onion, with plates getting colder as you go deeper, ending at a base plate held a few thousandths of a degree above absolute zero where the qubit chip lives. The hard truth is that each plate can only remove a tiny amount of heat: maybe a watt or so at the 4-kelvin plate, but only a few hundred microwatts at the millikelvin base. The thermal budget is the accountant's view of all this. Every cable, attenuator, amplifier, and filter you add dumps some heat onto a plate, and the sum on each plate must stay under what that plate can pump away, or the whole stage warms up and the qubit stops working.

Heat arrives two ways. Some conducts down the metal of the cables from the warm room above, which is why control lines use poorly-conducting alloys and are heat-sunk to every plate they pass. The rest is dissipated right there: an attenuator turning a strong pulse into a weak cold one absorbs the difference as heat, and an amplifier draws DC power that ends up as warmth. Designers tally microwatts per line, then multiply by the number of lines. A handful of qubits is easy; the budget only bites when you imagine thousands of control and readout lines all crowding into the same cold stages.

This is one of the real, unglamorous walls in scaling quantum chips. You cannot simply add more wires, because the coldest plates run out of cooling power long before you run out of room. That pressure drives the whole field: cryo-CMOS aims to put control electronics inside the fridge so fewer cables run to the warm world, multiplexing packs more qubits onto each line, and on-chip isolators try to shrink bulky components. All of these are promising but still early, and for now the thermal budget remains a hard ceiling that designers plan around line by line.

Also calledcooling power budgetcryogenic heat budget制冷功率预算製冷功率預算

A crypto token is a unit of value created and tracked by a smart contract that runs on top of an existing blockchain, rather than being the blockchain's own native coin. The useful distinction is this: a blockchain like Ethereum has its built-in currency (ether), but anyone can deploy a contract that mints its own tokens and lives on that same chain — a bit like how the dollar is issued by a country, while stores, airlines, and arcades all print their own points and tickets that circulate on top of the dollar economy.

Because a token is just a contract keeping a ledger of who holds how much, it can represent almost anything: a share in a project, a voting right, a loyalty point, a claim on a real-world asset, an in-game item, or a stand-in for another currency. Most tokens follow a shared rulebook called a token standard, so that wallets and apps can handle any token the same way without custom code for each one. That common standard is the quiet reason a single wallet can hold thousands of different tokens at once.

Tokens matter because they turn a blockchain into an open platform for issuing and moving value of every kind, not just one coin. A small team can launch a token in an afternoon, and from that moment it can be sent, traded, lent, or plugged into other apps worldwide — all without asking permission from a bank or a payment network. The same machinery that secures the underlying coin also secures the tokens built on top of it.

Also calledtoken代币代幣

A crypto wallet is the tool that lets you hold and use blockchain assets — but the name is a little misleading, because it does not actually store your coins. Your coins live on the blockchain itself, in the shared ledger that every node keeps. What the wallet really stores is your keys: the secret credentials that prove the coins recorded on the ledger are yours to move. A better mental image than a wallet is a keychain that controls a public mailbox.

That mailbox metaphor maps neatly onto how the keys work. Your public address is like the slot on a mailbox: anyone can see it and drop value in, and you share it freely to receive payments. Your private key is the only key that opens the box to take anything out, and it must stay secret. When you send a payment, the wallet uses your private key to sign the transaction, producing proof that you authorized it — without ever revealing the key itself to the network.

Wallets come in different shapes that trade convenience against safety. Software wallets are apps on a phone or computer, always online and handy for everyday use; hardware wallets are small dedicated devices that keep the private key offline, out of reach of internet attackers. In every case the wallet is just an interface for managing keys and broadcasting transactions — the asset and the truth of who owns it stay on the blockchain, not inside the app.

Also calledwallet钱包錢包

A cryptocurrency is money that lives entirely as entries in a shared digital ledger, with no bank, company, or government running it. Ordinary online money — the balance in your banking app — is really just a number in your bank's private database, and the bank decides what it says. A cryptocurrency instead records every balance and payment on a blockchain that thousands of independent computers keep identical copies of, so no single party owns the books or can quietly rewrite them.

What makes it work without a central authority is cryptography, which is where the name comes from. Each holder has a secret key, and only that key can authorize spending from their balance — like a signature that is mathematically impossible to forge. When you send coins, your wallet signs the transaction, broadcasts it to the network, and the network's consensus rules decide it is valid and lock it into the permanent record. Nobody needs to trust anybody; the math and the shared rules do the trusting for everyone.

Bitcoin, launched in 2009, was the first cryptocurrency and showed that strangers across the world could agree on who owns what without any middleman. Thousands of others followed, some acting as money and many doing far more — powering programmable contracts, apps, and whole financial systems. The common thread is the same: value that moves directly between people, around the clock, across borders, governed by open rules rather than by any one institution.

Also calledcryptodigital currency加密货币加密貨幣数字货币

A cryptographic hash is a function that takes any data — a word, a file, an entire library — and crunches it down to a short, fixed-length string of characters that acts as its digital fingerprint. The same input always produces the same fingerprint, but even a one-character change to the input scrambles the output completely. Think of it as a tamper-evident wax seal: open or alter the contents and the seal no longer matches.

Two properties make it useful for security. It is one-way: from the fingerprint alone you cannot work backwards to recover the original data, so the function is easy to run forwards but practically impossible to reverse. And it is collision-resistant: it is infeasible to find two different inputs that produce the same fingerprint. Together these mean a hash can stand in for the data as a compact, trustworthy summary — if two hashes match, the data is the same; if they differ, something changed.

This is the glue that holds a blockchain together. Each block is summarized by its hash, and each new block includes the hash of the one before it, so the whole history is locked into a tamper-evident order. Hashes also let a network compare huge datasets by checking a few short strings instead of every byte, which is why they show up everywhere from password storage to file verification.

Also calledhash function哈希散列雜湊

CSS is the language that styles a web page — the colors, fonts, spacing, and layout. If HTML is the skeleton, CSS is the skin and clothes: it takes that plain structure and decides how everything actually looks.

You write CSS as a list of rules. Each rule picks something on the page (a 'selector') and then sets its properties: make every heading dark blue, give paragraphs a comfy line height, lay the navigation out in a row. Change one rule and every matching element updates at once.

The 'cascading' part is the clever bit: when several rules touch the same element, CSS has a clear set of priorities for which one wins. That's how a site keeps a consistent look while still letting you override just one button or one page when you need to.

Also calledcascading style sheetsstylesstylesheet

Electric current is the rate at which electric charge flows past a point in a wire — how much charge streams by each second, measured in amps. Picture water in a pipe: the current isn't the water itself, but how fast it's rushing through. A wide, fast flow means more amps; a thin trickle means very few. In a wire, the "water" is countless tiny electrons drifting along together.

Current is driven by voltage (the push) and held back by resistance (how hard the path is to flow through). More push, or an easier path, means more current. A phone charger might deliver about 1 amp; a hair dryer pulls 10 or more, which is why it heats up so fast. Too much current in too thin a wire makes it overheat — and stopping exactly that is what a fuse is built to do.

Also calledelectric currentamperage安培電流

A current mirror is a small set of matched transistors that copies one current and reproduces it somewhere else in the circuit. Picture a master device that sets a reference current, and one or more twins standing right beside it that simply follow its lead: whatever the master carries, the copies carry too. This is one of the most-used building blocks in analog design — it is how you hand the same well-defined current to many parts of a chip at once, and how you bias amplifiers and other stages into their working state.

The simplest mirror is two transistors sharing a gate. The master is diode-connected (its gate tied to its own drain), so a reference current forced through it settles on exactly the gate voltage needed to carry that current. The second transistor sees the same gate voltage, so if the two devices are identical it carries the same current. Make the copy's W/L (width-over-length) ratio twice the master's and it carries twice the current; the mirror's copy ratio is just the ratio of the W/L sizes, so you can scale a single reference into many tidy multiples.

Accuracy lives and dies on matching: the two transistors must be truly alike — same temperature, same orientation, laid out close together — or the copy drifts off. The other limit is the output transistor's drain voltage. An ideal mirror would push the same current regardless of what voltage the load presents, but a plain mirror's copy creeps up as the output drain voltage rises (a finite output resistance). A cascode mirror stacks a second transistor on top to shield the mirroring device from those voltage swings, raising the output resistance and tightening the copy — the standard fix when you need a mirror that behaves like a stiff current source or a high-quality active load.

Curriculum learning is the practice of teaching a robot the way a good school teaches a child: start with easy tasks, then make them harder step by step, instead of throwing the hardest challenge at it on day one. Just as you would not drop a beginner swimmer into the deep end, you would not ask a freshly initialized robot to sprint over rocky ground; you let it first learn to stand, then to step, then to walk on flat floor, and only later to tackle slopes and rubble. Each easy skill becomes a stepping stone the robot stands on to reach the next, harder one.

It matters because many robot skills are almost impossible to learn from scratch by random trial. If a legged robot starts on brutal terrain knowing nothing, it falls instantly, every single time, and almost never stumbles into the rare lucky sequence of moves that would teach it anything — so learning stalls. By beginning on gentle tasks where success happens often enough to give useful feedback, and then gradually raising the difficulty as competence grows, the robot keeps getting a steady stream of lessons it can actually act on. The ordering of experiences, not just the experiences themselves, is what makes the hard final skill reachable.

Designers build the curriculum in different ways: hand-crafting a fixed sequence of ever-tougher levels, or letting a program automatically nudge the difficulty up whenever the robot is doing well and ease it back down when the robot struggles, so the challenge always sits just past what it can comfortably do. The payoff is faster, more reliable learning and final skills that pure brute-force training often cannot reach at all.

Also calledcurriculum training渐进式训练漸進式訓練

Cursor control is moving a pointer on a screen using brain signals alone — no hand, no mouse. It is the classic demonstration of a brain–computer interface, the experiment everyone reaches for first, because a moving dot is easy to measure and easy to understand.

The idea is simple even if the engineering is not. A person imagines or attempts a movement, the system reads the matching pattern in the brain, and that pattern is mapped onto the cursor's direction and speed. Researchers measure progress by how fast and how accurately the dot reaches its target, in one, two, or three dimensions.

What looks like a toy is actually a lifeline. For someone who is paralyzed and cannot speak, steering a cursor to point and click is a way to type, browse, and reconnect with the world — which is why cursor control remains both a benchmark and a real application.

D

A daemon is a program that runs quietly in the background, waiting to do its job — it has no window, and you almost never see it. It just sits there, ready: listening for logins, sending mail, running tasks on a schedule.

You can usually spot one by the trailing 'd' in its name. sshd handles remote logins, cron runs scheduled tasks, nginx serves web pages, and dockerd runs your containers.

It's pronounced 'DEE-mun'. The word is borrowed from classical Greek, where a daemon was a guardian spirit working away in the background on your behalf — a surprisingly lovely name for a piece of software that's always quietly on call.

Also calledservicebackground processsshdcronnginxdockerd
See alsoprocess

Damping is how strongly something resists wobbling, and the damping ratio is a single number that says how much wobble a system has. Picture a door with a closer at the top. A door with weak damping swings shut, bounces back open, swings shut again, and rattles before it finally rests. A door with strong damping eases shut slowly and never bounces at all. The damping ratio captures exactly that difference on a simple scale: low values mean lots of bouncing and ringing, higher values mean a calm, settled approach with no overshoot.

Overshoot is the partner idea: when a system rushes toward a target, how far does it sail past before coming back? A car that brakes for a stop line but rolls a meter beyond it and reverses has overshot. Overshoot and damping are two sides of one coin — the lighter the damping, the bigger the overshoot and the longer the ringing afterward; the heavier the damping, the smaller the overshoot, until at some point the system glides to its target with none at all. Engineers usually want a little overshoot for speed but not so much that the motion becomes jittery or unsafe.

These two numbers give designers a shared language for the feel of a response. People often sort behavior into three flavors: underdamped (it overshoots and oscillates before settling — quick but bouncy), overdamped (it crawls in slowly with no overshoot — safe but sluggish), and critically damped (the sweet middle, the fastest possible approach that still never overshoots). Most well-tuned machines aim for that middle zone, fast enough to feel responsive yet damped enough to settle cleanly.

Also calleddamping ratioovershoot阻尼比超调超調

Imagine a busy restaurant kitchen where you have ten stoves but the ventilation hood can only carry away the heat of three burners at once. You can own all ten, but if you fire them all up together the kitchen fills with smoke and everyone has to stop. So at any given moment most of your stoves sit cold while a few do the cooking. A modern chip faces the same bargain. Transistors have kept shrinking, so engineers can pack a huge number of them onto a die, but the package can only shed a fixed amount of heat. Dark silicon is the fraction of those transistors that must be kept switched off at any instant because if everything ran at full speed at once, the chip would melt. The transistors are there on the die, paid for and printed, but a large slice of them is necessarily dark.

This is the direct bill that came due when Dennard scaling ended around 2006. Dennard's rule used to promise that as transistors got smaller you could also lower their voltage, so the power density (watts per square millimeter) stayed flat even as you crammed in more devices. Once that voltage scaling stalled, each new generation kept doubling the transistor count but no longer kept the per-transistor power falling fast enough to match. Power density started climbing, and since you cannot cool an unlimited number of watts out of a fixed package, you simply cannot power the whole die at once. Estimates from the early 2010s suggested that at advanced nodes well over half of a chip could be dark at any given time, and the gap widens with each node. The transistors are cheap to print; the watts to switch them are the scarce resource.

Also calledutilization wall

The DARPA Challenges were a series of public competitions, run by a U.S. defense research agency called DARPA, that offered prize money to whoever could build a robot to do something nobody had managed before. Instead of paying one company to slowly develop a technology in secret, DARPA set a hard, concrete goal — say, drive a vehicle across the desert with no human at the wheel — invited teams from universities, companies, and garages to compete head-to-head, and let the contest itself flush out what actually worked. It was less like funding a project and more like throwing a race and seeing who crosses the finish line.

Two waves of these contests reshaped robotics. The Grand Challenges (2004 and 2005) and the later Urban Challenge (2007) asked cars to drive themselves over rough terrain and through mock city traffic; the first year, every single car failed, but by the second year several finished — a turning point widely seen as the spark for today's self-driving car industry. The Robotics Challenge (2012–2015) targeted disaster response, asking humanoid and other robots to do tasks a rescue worker might face after a nuclear accident: open a door, turn a valve, climb stairs, use a power tool. The robots were slow and often fell over, but the competition pushed whole communities to share progress and pulled hard problems out of the lab and into the real world.

Also calledDARPA Grand ChallengeDARPA Robotics ChallengeDRC美国国防高级研究计划局挑战赛

A data type is what KIND of value something is. Is it text? A number? A simple true/false? A list of things? The type tells the computer — and you — what a value really is, and that decides what you're allowed to do with it.

The common ones show up everywhere: a string is text like "hello", a number is something like 42 or 3.14, a boolean is just true or false, and an array is an ordered list. Each comes with its own toolbox of things it can do.

Type matters because it sets the rules. Add two numbers and you get their sum; 'add' two strings and they join end to end. Try to multiply a word by a word and the program simply can't — that's the type quietly keeping you honest.

Also calledtypedatatype

The data-association problem is the puzzle of figuring out which thing a robot is looking at right now is the same thing it saw before — or which item on its map. A robot's sensors hand it bare measurements: a corner here, a tree trunk there, a blob of points over yonder. None of them come labeled. Before the robot can use a fresh sighting to fix its position, it has to answer a deceptively hard question: is this the same corner I logged five seconds ago, or a brand-new one? Picture walking into a parking lot full of nearly identical silver cars and trying to find yours — every car is a plausible match, and choosing the wrong one sends you off in the wrong direction.

This matters because almost everything downstream depends on getting the matches right. If the robot links today's observation to the correct old landmark, that link tightens its estimate of where it is. But if it confidently matches the wrong pair — say, it decides two different lampposts are the same one — it folds a falsehood into its map, and that error can quietly corrupt everything built on top of it. Bad associations are one of the leading ways a map gets warped beyond repair, so systems lean on tests that ask 'does this match make geometric sense?' and prefer to skip a doubtful match rather than commit to a wrong one.

Solving it well usually means combining clues: how close the new measurement is to where the robot expected the old feature to be, how distinctive the feature's appearance is, and how consistent a whole batch of matches is when judged together rather than one at a time. The harder the environment — repetitive hallways, rows of identical shelves, a forest of similar trees — the more the data-association problem dominates, because look-alikes are everywhere and a single confident mistake is expensive.

Also calledcorrespondence problemmatching problem数据匹配對應問題

A database is an organized place to keep your app's data so you can save it, find it again, and change it — reliably, even when thousands of people are using your app at once. Think of it as a filing cabinet that never loses a page and can fetch any one in an instant.

You could just dump everything into a text file, but the moment two people edit at the same time, or you want to ask 'which orders shipped last week?', that falls apart. A database handles the hard parts for you: fast lookups, keeping data consistent, and not losing anything if the power blips mid-write.

The most common kind is relational — data lives in tables of rows and columns (think a very smart spreadsheet), and you talk to it with SQL. Popular ones include PostgreSQL, MySQL, and SQLite.

Also calleddbdatastorepostgresmysqlsqlite

A DC motor is the simplest, cheapest electric motor: connect it to a battery and the shaft spins. "DC" means direct current — the steady, one-direction electricity a battery gives, as opposed to the back-and-forth current from a wall socket. These are the little motors humming inside toys, drills, and many small robots. Reverse the battery's two wires and the motor spins the other way; that simplicity is exactly why beginners reach for them first.

Inside, it works by a trick of magnetism. A coil of wire sits between magnets, and when current flows through the coil it becomes a temporary electromagnet, pushed and pulled by the fixed magnets so it turns. But to keep turning the same way, the current in the coil must flip direction at just the right moment in every rotation. A clever rotating switch called the commutator does this automatically, with little carbon blocks called brushes sliding against it to feed in the current. That is why this everyday type is more precisely called a brushed DC motor.

Its behavior follows a simple rule called the torque-speed curve. With no load, it spins fast but gives almost no twisting force; pile on a heavy load and it slows down while pushing harder, until at full load it stalls — stops turning while drawing the most current and producing its peak twist. Feed it more voltage and it spins faster; this voltage-driven simplicity makes it easy and forgiving to drive. The trade-off is the brushes: they rub, wear out, and spark, so brushed motors are noisier and shorter-lived than their brushless cousins.

Also calledbrushed DC motor有刷直流电机有刷直流馬達直流电动机直流電動機

A DC SQUID is just two Josephson junctions wired in a small superconducting loop. On a quantum chip its job is usually not to sense fields but to act as one tunable junction: by threading magnetic flux through the loop, you can dial its effective Josephson inductance up and down. Since a qubit's frequency is set by that inductance, this is the knob that lets you tune a qubit in place, or turn the coupling between two qubits on and off.

It works through interference. The two junctions sit on either side of the loop, and the magnetic flux passing through the loop shifts the relative quantum phase of the two paths. When the paths add in phase the loop behaves like a strong junction with a large critical current; as you add half a flux quantum (Phi_0 = h/2e) they fight, and the effective critical current shrinks toward zero. The pattern repeats every Phi_0, so a tiny coil or a current-carrying wire near the loop sweeps the qubit's frequency over a wide range. The same loop, biased near maximum sensitivity, makes one of the most precise magnetometers ever built.

The catch is that tunability and noise come together. Because the frequency now depends on magnetic flux, every stray magnetic fluctuation, from trapped vortices to current ripple in the bias line, jitters the qubit and shortens its coherence. Designers fight this by parking qubits at a flux 'sweet spot' where the frequency is flat to first order, by shielding and filtering, and by using asymmetric junctions. It is a real engineering trade, not a solved problem: you buy controllability with added flux-noise sensitivity.

Also calledDC superconducting quantum interference devicesplit junction直流SQUID分裂结分裂接面

Dead reckoning is figuring out where you are now by starting from a place you know for certain and adding up every move you have made since. You take your known starting point, then track which way you are pointing and how far you have traveled, and you carry that running tally forward: "I began at the dock, I went north for ten minutes at this speed, then turned east for five." From those pieces alone you can mark your current spot on a chart, without ever seeing a landmark or asking anything outside for help. Sailors used it for centuries to cross open ocean, plotting their ship's position from compass heading and estimated speed long before satellites existed.

The whole method rests on one fragile fact: you never measure where you actually are, only how you have changed since the last guess. So every error in your heading or distance gets baked permanently into the estimate and then carried forward into all the steps after it. A compass reading that is a hair off, a speed slightly overestimated, a current you did not account for — none of it ever gets corrected on its own, and because each new position is built on top of the last, the small mistakes accumulate. The estimate drifts further and further from the truth the longer you go, like a whispered message distorting a little more with each retelling.

Despite that flaw, dead reckoning is everywhere, because it is wonderfully self-sufficient: it needs no external signal at all, only an awareness of your own heading and motion. It is the fallback your phone uses in a tunnel when GPS cuts out, the backbone of a submarine that cannot see the sky, and the principle underlying a robot's odometry. The standard fix for its drift is to periodically snap back to a known truth — a recognized landmark, a fresh GPS lock, a star sighting — which wipes the accumulated error clean and lets the dead reckoning begin afresh from solid ground.

Also calledDR推算定位航位推测

A debugger is a tool that freezes your running program mid-stride so you can look inside it. Instead of guessing why something went wrong, you pause the code at a chosen line, then walk it forward one step at a time — watching exactly what each variable holds at each moment. It answers the real question: not 'what broke' but 'WHY'.

The trick is the breakpoint — a marker you drop on a line that says 'stop here'. When the program reaches it, everything halts and hands you the controls. You can peek at every value, step into a function to follow it deeper, or let it run on to the next breakpoint. It's like pausing a movie frame by frame to catch the exact moment a trick was done.

Before debuggers, people scattered print statements everywhere to spy on their code — and many still do for quick checks. A debugger is the grown-up version: no editing your code, no rerunning a dozen times. You stop time, look around, and the bug usually gives itself away.

Also calledbreakpointstep debuggergdbstep through

Decellularization is the technique of gently washing all the living cells out of a donor organ while leaving its underlying framework intact. Every organ is built on a scaffold of structural proteins called the extracellular matrix, with cells nestled inside it. Strip the cells away and you are left with a pale, intact shell — often called a ghost organ — that keeps the exact shape and plumbing of the original.

Detergent solutions are flushed through the organ's own blood vessels, dissolving and rinsing out the cells over hours or days, the way running water can clear soil from a sponge while leaving the sponge itself whole. The prize is that natural matrix: it already has the correct architecture, the channels where vessels ran, and chemical cues that tell new cells where to settle and what to become.

The ghost organ can then be reseeded with fresh cells — ideally a patient's own — that recolonize the scaffold and, in the lab, begin to rebuild a working organ. It is a clever shortcut around having to manufacture a complex 3D scaffold from scratch. Reseeding a whole organ well enough to transplant, however, is still mostly experimental rather than routine clinical practice.

Also called脱细胞脫細胞

A decellularized organ is a donor organ that has had all its living cells gently washed away, leaving behind only its natural scaffold. Every organ is built on a framework called the extracellular matrix — a mesh of structural proteins that holds cells in place and traces the organ's exact shape and plumbing. Strip out the cells and what remains is a pale, ghostly template: the right form, but empty of life.

To make one, scientists flush a donor organ with mild detergents that dissolve and rinse out the cells while sparing the tough matrix. The payoff is a ready-made scaffold with the organ's true architecture already in place — the branching blood-vessel channels, the chambers, the surfaces — far more intricate than anything we can yet print from scratch. It is like keeping a building's steel skeleton and pipework after removing every wall and tenant.

The hope is to reseed that scaffold with a recipient's own cells, so the rebuilt organ would not be rejected as foreign. Because the scaffold itself carries few cell markers, it could even come from an animal. This is a promising route toward engineered organs, but it remains largely experimental for complex organs — getting enough of the right cells to grow into a fully working organ is still extremely hard.

Also called去细胞器官去細胞器官脱细胞支架ECM scaffold

Decentralization means spreading control across many independent participants instead of concentrating it in one authority. In a centralized system, a single company or server makes the decisions and holds the keys; in a decentralized one, power and data are shared among a crowd, so no individual member can dictate the outcome alone. It is the core idea that gives a blockchain its strength.

It helps to picture it on a spectrum, and on more than one axis at once. Architectural decentralization asks how many separate computers run the network (so it survives even if many fail). Political decentralization asks how many independent people or groups actually control those computers (so no small clique can collude). A system can score high on one and low on the other, which is why thoughtful designs try to push up both at the same time.

The payoff is censorship-resistance and resilience: with no central switch to flip, it is far harder for any government, company, or hacker to shut the system down, freeze your funds, or quietly rewrite the rules. The trade-off is that coordinating a leaderless crowd is slower and more expensive than letting one boss decide — which is one reason scaling a decentralized network is genuinely hard.

Also called去中心化

A decentralized application, usually shortened to dapp, is an app whose core logic runs on a blockchain through smart contracts rather than on a company's private servers. An ordinary app, like a banking or social website, keeps its data and rules on machines the company fully controls; if that company changes the rules, shuts down, or locks you out, you have little recourse. A dapp moves the part that really matters, the rules about who owns what and what actions are allowed, onto a public network that no single party owns. The problem it solves is depending on a single operator's goodwill and continued existence.

In practice a dapp has two halves. The visible half is a normal-looking website or mobile screen, the friendly buttons and menus, which can still be hosted anywhere. The crucial half is one or more smart contracts on the blockchain that hold the funds, balances, and rules. When you click a button, the app asks your wallet to send a transaction to those contracts; the network runs the agreed code and updates the shared record. Because that logic and data live on a public chain, anyone can inspect them, the app keeps working even if the original team disappears, and no one can quietly seize your assets.

Dapps matter because they let services operate by transparent, automatic rules instead of trust in a company. Familiar categories include exchanges and lending platforms in decentralized finance, marketplaces for digital collectibles, games, and member-run organizations. The flip side is that the convenient front-end can still be hosted by someone, so true decentralization depends on how much of the important logic actually lives in the contracts versus on a private server.

Also calleddAppDApp去中心化应用去中心化應用

A DAO, or decentralized autonomous organization, is a group that runs itself through rules written in smart contracts instead of through bosses, boards, and back-office paperwork. Picture a club whose entire rulebook — how decisions get made, who can spend the shared treasury, what happens when a vote passes — is code that everyone can read and that executes on its own. There is no head office and no single person holding the keys; the organization is the running code plus the members who govern it.

Members usually steer the DAO by voting, and voting power typically comes from holding a governance token: anyone can propose a change, members vote, and if the proposal passes the threshold, the smart contract carries it out automatically. The treasury, the membership list, and every vote are all on the blockchain in plain view, so the organization's actions are transparent by default and follow the rules it was given — no manager can quietly override the outcome.

DAOs matter because they let people who have never met coordinate money and decisions across the world with no central operator they must trust. They run investment funds, manage open-source projects, fund public goods, and govern DeFi protocols. By moving the rules of an organization into open, self-executing code, a DAO turns "how this group is run" from a private arrangement into something anyone can inspect and take part in.

Also calledDAOdecentralized autonomous organization去中心化自治组织去中心化自治組織

DeFi, short for decentralized finance, is a way of rebuilding financial services — lending, borrowing, trading, saving, insurance — as open software running on a blockchain instead of inside banks and brokerages. The core shift is who holds the rules. In traditional finance a company keeps a private ledger and decides who may take part; in DeFi the rules live in smart contracts that anyone can read, anyone can use, and no one can quietly change. The bank is replaced by code that everyone can inspect.

Because these services are just contracts on a public chain, they run automatically and around the clock, and you interact with them straight from your own wallet — you keep custody of your funds rather than depositing them with an institution. They are also composable, meaning one app can plug into another like interlocking bricks: a token you earn from lending can be deposited into a trading pool, which can be used as collateral elsewhere, all in a single chain of transactions. People call this property "money legos."

DeFi matters because it makes a working financial system available to anyone with an internet connection and a wallet, with no account approval, no business hours, and no borders. A farmer, a student, and a hedge fund touch the exact same contracts on the exact same terms. Whether someone is lending, swapping currencies, or earning yield, the logic is open for all to read and the system never closes.

Also calledDeFidecentralized finance去中心化金融去中心化金融

Decision-making is what your brain does when it picks one option out of several — turn left or right, order coffee or tea, study now or rest. Instead of choosing at random, the brain quietly assigns each option a kind of worth, or value: how much do I want it, how likely is it to pay off, how much effort or risk does it cost? It then leans toward the option whose value comes out on top. You can think of it like a tiny internal auction, where each choice puts in a bid and the highest bidder usually wins.

This valuing and weighing is carried out by real circuits of brain cells. Regions in the front of the brain (the prefrontal cortex) and deeper reward areas help estimate how good or bad an outcome is likely to be, drawing on past experience and the brain's chemical reward signals. As you consider a choice, groups of neurons gradually build up activity, almost like votes piling up, and the moment one group crosses a threshold, the decision 'tips' and you act. This is why hard decisions feel slow and uncertain ones feel shaky: the evidence and value for each side are close, so the internal tally takes longer to settle.

Also calledchoicevalue-based choice选择選擇价值决策價值決策

Declarative memory is the kind of memory you can consciously bring to mind and put into words. It holds two main things: facts about the world, like the capital of France or what a zebra looks like, and events from your own life, like what you ate for breakfast or your first day of school. The word declarative is a clue: this is knowledge you can declare, that is, state out loud or describe to someone else. It is also called explicit memory, because the remembering is deliberate and open, rather than hidden.

This sets it apart from the silent, automatic skills you carry without thinking, like riding a bike or typing, which you cannot easily explain in words. When you search your memory for a fact or replay a scene from your past, you are dipping into the declarative store. Forming these memories leans heavily on a seahorse-shaped brain structure called the hippocampus, which knits the scattered pieces of an experience together; over time the memories settle into the wider cortex for long-term keeping. Damage to the hippocampus can leave someone unable to lay down new facts and events, even while their old habits and skills remain perfectly intact.

Also calledexplicit memorydeclarative memory外显记忆外顯記憶
See alsohippocampus

A working qubit holds its information in a delicate balance: not just whether it leans toward 0 or 1, but the precise phase relationship between those two parts, written as |psi> = alpha|0> + beta|1>. Decoherence is what happens when that balance leaks out into the surrounding world. Every stray vibration, photon, magnetic flicker, or warm atom nearby can 'peek' at the qubit, and once the environment carries away even a hint of which state the qubit is in, the careful phase relationship is spoiled. Think of a quiet whisper that stays coherent only until the room gets noisy enough to drown it out.

Concretely, decoherence drains the two ingredients quantum computing actually runs on. It destroys the phase information that lets superposition states interfere (so the right answer can be made to stand out at measurement), and it breaks entanglement, turning a genuinely shared quantum state into separate qubits behaving like ordinary, classical, random bits. It is not the same as a measurement you chose to make, but the outcome is similar: the quantum-ness quietly bleeds away. This is why decoherence is the central engineering enemy of the field. Real qubits must be heavily isolated (cold, shielded, still), and we describe how fast they decay with timescales like T1 and T2.

Deep brain stimulation is, in plain terms, a pacemaker for the brain. Thin electrodes are placed deep inside the brain, and a small device implanted in the chest sends steady electrical pulses along them, quieting the faulty activity that causes certain symptoms.

It is best known for Parkinson's disease and essential tremor, where the pulses can dramatically calm the shaking and stiffness that medication alone no longer controls. The same approach is used or studied for other conditions, from dystonia to some treatment-resistant psychiatric disorders.

DBS is a close cousin of brain–computer interfaces: both put electrodes in contact with neural tissue, but classic DBS mainly stimulates rather than decodes. It matters as a model because it is clinically established and widely used — proof that implanted neural devices can be safe, durable, and life-changing.

Also calledDBS

Deep learning teaches a computer to recognize things the way a child slowly learns to read — not by being handed a rulebook, but by stacking up understanding layer by layer. The "deep" simply means many layers: a neural network with not one or two, but dozens or hundreds of them, each passing what it figured out to the next. Show it a photo, and the first layer might notice only edges and blobs of color; the next assembles those into eyes and wheels; a higher one finally says "cat" or "car."

What makes this special is that nobody tells the network what an "edge" or an "eye" is. It discovers those building blocks on its own, simply by being shown millions of examples and nudged toward the right answers — a process called learning features in a hierarchy. That is the real break from older methods, where humans had to hand-craft the clues a program looked for.

A common mix-up: deep learning is not a separate kind of artificial intelligence sitting beside the rest. It is one powerful technique within machine learning, which in turn lives inside the broad idea of AI. It is not magic, and not a thinking mind — it is pattern-finding at enormous scale, only as good as the examples it is fed.

Also calleddeep neural network深度神经网络深層學習DL

The Default Mode Network, often shortened to DMN, is a group of brain regions that quietly switch on when you stop focusing on the outside world and let your mind drift. It is the brain's idle mode — the state you slip into while daydreaming, replaying a memory, imagining tomorrow, or thinking about yourself and other people. Researchers first noticed it almost by accident: when they put volunteers in a brain scanner and asked them to rest and do nothing, certain areas lit up more during the rest than during the actual task. In other words, the brain is never truly off; it simply turns inward.

Picture a worker who keeps tidying the office and replaying the day's conversations whenever the customers leave. The moment a customer walks back in — that is, the moment you focus hard on a task in front of you — the worker drops the inner chatter and gets to work. The DMN behaves much the same way: it ramps up when attention is free and dials down when you concentrate on something demanding, which is why it is sometimes called the task-negative network. Its key hubs lie along the brain's midline (front and back) and on the sides toward the bottom, and they act together as a coordinated team rather than as separate spots.

This network matters because so much of what makes us human happens during these inward moments: remembering our own past, picturing the future, understanding what others are thinking and feeling, and weaving a continuous sense of self. When the DMN is overactive or poorly balanced with the brain's focus systems, it has been linked to rumination in depression and to wandering, intrusive thoughts, which is one reason scientists study it to understand both healthy reflection and conditions where the inner voice will not quiet down.

Also calledDMNtask-negative network默认网络任务负相关网络預設網路

A degree of freedom is one independent way a robot can move. Count up all the separate motions it can make on its own, and that number is its degrees of freedom — often shortened to DOF. A door on a hinge has just one: it can only swing open or shut. Your own arm has many more, which is why your hand can reach so many points in space and tilt at so many angles.

Each joint that bends or each slider that extends usually adds one degree of freedom. A robot needs enough of them to do its job: to place an object anywhere in front of it and also aim it in any direction, an arm generally needs six — three to choose the spot in space (left-right, up-down, in-out) and three to choose the orientation (the tilt and twist of the 'hand'). Too few, and there will be poses it simply cannot reach.

Counting degrees of freedom is one of the first things engineers do when sizing up a robot, because it sets the limits of what the machine can physically achieve. More degrees of freedom mean more flexibility and dexterity — but also more motors, more cost, and more complexity to control, so designers give a robot just as many as the task truly needs.

Also calledDOFDoF

The degrees of freedom of a mechanism is the number of independent ways it can move — how many separate dials you would have to set before its shape is completely pinned down. Each dial is one motion you can choose freely without affecting the others. A door on a hinge has one degree of freedom: the only thing you can vary is its open angle, so one number fully describes it. A computer mouse sliding on a desk has two: how far left-or-right and how far forward-or-back. The count is simply how many of these free choices the mechanism gives you.

This number tells you, at a glance, how capable and how controllable a robot is. To place an object anywhere on a flat table and also spin it to any angle, you need three degrees of freedom; to put a tool at any point in 3-D space and aim it in any direction, you need six — which is exactly why a typical robot arm has six joints. Roughly, more degrees of freedom means more versatility and the ability to strike awkward poses, but also more motors to buy, more weight to carry, and more numbers a controller must juggle.

There is a neat bookkeeping rule for working it out. In an open chain, each simple joint adds one degree of freedom, so you can almost just count the joints. In a looped, closed chain it is subtler, because every loop ties motions together and quietly cancels some freedom out; engineers use a formula (the Grübler–Kutzbach criterion) to tally the parts and joints and subtract the constraints. If the final count comes out to zero, the thing is a rigid frame that cannot move at all; if it is negative, the design is over-braced and would normally jam (unless special geometry sets it free).

Also calledDOFDoFmobility自由度

The Denavit–Hartenberg parameters are a tidy, agreed-upon bookkeeping system for describing the shape of a robot arm joint by joint. The trouble with a many-jointed arm is that you could measure and label its geometry in countless inconsistent ways. The DH convention solves this by saying: for each link, attach a coordinate frame (a little set of reference axes) following one fixed set of rules, and then the relationship between one frame and the next can always be captured by just four numbers. Those four — usually called link length, link twist, link offset, and joint angle — are the DH parameters, and one such row of four describes each joint in turn.

Why bother with only four numbers per joint? Because it makes the whole arm describable by a small, standardized table that any robotics tool can read the same way, and it makes computing forward kinematics almost mechanical: each row turns directly into one transform, and multiplying them down the table gives the end-effector's pose. It is like agreeing on a single standard form for an address — house number, street, city, country — so that anyone, anywhere, can locate the place without confusion. The convention dates back to 1955 and remains one of the first things taught in robot kinematics, though some modern software prefers other equivalent descriptions.

Also calledDH parametersDH conventionDH 参数DH 表示法

A dendrite is one of the thin, branching arms that sprout from a nerve cell (neuron) and act as its listening antennas. Picture a tree in winter: the trunk is the main body of the neuron, and the bare, twiggy branches reaching out in every direction are the dendrites. Their job is to catch incoming messages from other neurons, the way a satellite dish gathers signals from the air.

Each dendrite is covered with thousands of tiny contact points where signals from neighboring cells arrive, often landing on little bumps called spines. When a message lands, it nudges the electrical charge inside the dendrite up or down. All these small nudges flow toward the cell body and get added together; if the combined push is strong enough, the neuron fires off its own signal to the next cell. Because a single neuron can grow a dense, sprawling thicket of dendrites, it can listen to many thousands of other neurons at once, which is part of why the brain can weave together so much information.

Also calleddendritic treedendritic arbor树突树樹突樹

A dendritic spine is a tiny knob-like bump that sticks out from the surface of a neuron's receiving branches. To picture it, imagine a neuron as a leafless tree in winter: the trunk is the cell body, and the bushy crown of fine twigs spreading out to catch incoming signals are the dendrites. A dendritic spine is like a small bud or thorn growing out along one of those twigs, each one usually less than a thousandth of a millimeter across — so small that for a long time scientists could only see them as faint dots after a special black stain soaked into the cell. A single neuron can carry tens of thousands of these spines, giving its branches a fuzzy, frosted look under the microscope.

Spines matter because they are the main spots where one neuron listens to another. Most of the excitatory contacts a neuron receives — the messages that nudge it toward firing its own signal — land on the head of a spine rather than on the bare branch. Each spine has a rounded head where the incoming message arrives and a thin neck that connects it back to the dendrite, and that narrow neck acts a bit like a private booth: it lets each contact be tuned up or quieted down on its own, without disturbing its neighbors. This is a big part of how the brain learns. When a connection is used a lot, its spine can swell and grow stronger; when it falls out of use, the spine can shrink or vanish. So the changing forest of spines on a neuron is, in a real sense, a physical record of experience and memory.

Also calledspineneuronal spine棘突

For about forty years, chip designers had a quiet gift hiding behind Moore's law. Robert Dennard observed in 1974 that when you shrink a transistor, you can also shrink the voltage and current that run through it by the same factor. The beautiful consequence: even as you pack twice as many transistors into the same area, the power burned per square millimeter stays roughly constant. So each new generation gave you more transistors AND faster switching AND the same power and heat. That was the free lunch. Smaller meant denser, faster, and cooler all at once, which is why clock speeds climbed from megahertz to gigahertz with each node and nobody had to think too hard about the electric bill.

The lunch stopped being free around 2006, and the reason is physics, not engineering laziness. To run a transistor faster you need a healthy gap between its 'on' voltage and its 'off' threshold. But a transistor never fully turns off; even when idle it leaks a trickle of current, and that leakage grows exponentially as you lower the threshold. By the mid-2000s the supply voltage had dropped so close to the threshold that lowering it further made leakage explode, so voltage simply stopped scaling. Power per area, which Dennard's rule had pinned in place, began climbing every generation. That is the power wall.

Once you cannot drain the heat, you cannot keep raising the clock, and indeed single-core clock speeds flattened out around 3 to 4 GHz right where they sit today. The industry's answer was to stop chasing one screaming-fast core and instead spend the extra transistors Moore's law still delivered on MORE cores running at a sane speed; this is exactly why your phone and laptop went multicore. Dennard scaling ending is the hinge moment the rest of the modern roadmap swings on: every later trick, from FinFET and GAA channels to chiplets, backside power, and dark silicon, is fundamentally a way to keep extracting value from density now that density no longer comes with free speed and free power savings.

Also calledDennard's scaling lawMOSFET scaling

A dependency is someone else's code that your project relies on to work. Almost nothing is built from scratch anymore: you want to parse a date, draw a chart, or talk to a database, so instead of writing that yourself you reach for a library that already does it — and now your project depends on it.

You don't paste that code into your project by hand. Instead you write its name (and which version you'll accept) in a small manifest file, and your package manager reads that list and installs each one for you, along with whatever those need in turn.

It's a wonderful shortcut — you stand on a mountain of work other people already did. The trade-off is that you've taken on their code: when a dependency has a bug, gets an update, or is abandoned, that's now partly your concern too. Lean on dependencies, but know what you're leaning on.

Also calleddependencieslibrarypackagethird-party codedep

Deployment is the act of taking the code that runs on your computer and putting it onto a live server, where real users can actually reach it. Up to that point your app is private — a rehearsal. Deploying is opening the doors. Developers just call it 'shipping': you ship your code out into the world.

The gap it closes is the one between 'works on my machine' and 'works for everyone'. A deployment copies your finished code to a server that's always on, installs what it needs, and points your web address at it. The moment it's done, someone on the other side of the planet can load your page.

It used to be a tense, manual, late-night ritual. Now it's mostly automated: you push your code, an automated pipeline builds and tests it, and if everything's green it deploys on its own. Done well, shipping a change becomes a quiet everyday thing — many teams deploy several times a day without anyone holding their breath.

Also calleddeployshippingreleasego livepush to production

Depolarization is the moment a neuron's electrical mood shifts from gloomy to excited. At rest, the inside of a nerve cell is slightly more negatively charged than the outside, a bit like a battery holding a small stored voltage — typically around seventy thousandths of a volt, with the inside being the negative end. Depolarization simply means that this inside becomes less negative, drifting up toward zero and sometimes even past it. The name is a little counterintuitive: the cell is not gaining polarity but losing it, shrinking the charge gap across its outer skin, the membrane.

This shift happens when tiny gates in the membrane, called ion channels, swing open and let positively charged particles — most often sodium atoms — rush into the cell. Each wave of positive charge pulls the inside voltage upward. Think of it like the first guests arriving at a quiet, empty room: the mood lifts a notch with every one who walks in. If enough of them pour in to push the voltage past a tipping point called the threshold, the neuron fires a full action potential, the brief electrical pulse it uses to send a message down its length. So depolarization is the build-up, the rising tension that decides whether the cell will speak or stay silent.

Also calledmembrane depolarization膜去极化膜去極化

When something is deprecated, it's officially discouraged and on its way out. It still works for now — nothing breaks today — but the maintainers are telling you plainly: stop using this, a better replacement exists, and one day this will be removed for good.

Think of it as the polite 'last call' before a feature is shown the door. You'll usually meet it as a deprecation warning in your console or docs, often pointing you straight to what to use instead.

The kind move is to act on the warning while it's still just a warning. Deprecated code is living on borrowed time — migrate to the replacement now, on your own schedule, rather than scrambling later when an upgrade finally deletes it.

Also calleddeprecationdeprecation warningsunsetlegacy

Depth estimation is the job of figuring out how far away each point in a view is from the camera — turning a flat image, which by itself has no sense of distance, into knowledge of near and far. The output is usually a depth map: an image where every pixel stores a distance instead of a color, with brightness standing in for how close (or, by convention, how far) each point is. A robot that knows depth can tell that the doorway is two meters ahead and the chair is half a meter to its left, which is what it takes to move and reach without bumping into things.

There is no single way to get depth; instead there is a toolbox of methods, each with trade-offs. Stereo cameras infer depth from the disparity between two side-by-side views. Structured light projects a known pattern of dots or stripes onto the scene and reads how the pattern shifts and bends over surfaces to compute distance — this is how many indoor depth cameras work. Time-of-flight sensors and lidar shoot out light and measure how long it takes to bounce back. And learning-based methods use a neural network that has studied millions of images to guess depth from a single ordinary photo, leaning on cues a human also uses, like the fact that things shrink with distance and that texture gets finer far away.

Each approach has a sweet spot and a weakness. Stereo and single-image learning struggle on blank, textureless surfaces; structured light and time-of-flight can be washed out by bright sunlight; lidar is accurate and long-range but expensive and gives sparse points rather than a dense image. Real robots therefore often combine several sources — fusing them so the strengths of one cover the blind spots of another — to build a depth picture reliable enough to act on.

Also calleddepth perceptiondepth sensing深度感知深度感測

A derivative measures how fast something is changing at a single instant. Picture driving a car: your position keeps shifting, and the derivative of that position is exactly your speedometer reading — how quickly your location is changing right now, this very moment, not averaged over the whole trip.

Geometrically, it's the steepness of a curve at one point. Imagine zooming in on a winding graph until the curve looks perfectly straight; the slope of that tiny straight piece is the derivative there. A steep climb means a large derivative; a flat stretch means a derivative of zero, the curve momentarily level.

The clever trick at its heart is taking an average rate of change over a tinier and tinier window — and seeing what number it homes in on as the window shrinks toward nothing. That limit is the derivative. A common confusion: it doesn't tell you how big something is, only how fast it's changing — a car can sit at 100 km on the odometer yet have a speed (derivative) of zero while parked.

Also calleddifferentiationrate of changeslopedy/dxf'(x)导函数微分導函數

Design for manufacturability is the habit of drawing a chip not as the perfect thing you wish you could build, but as the slightly imperfect thing a real fab can actually make, over and over, without too many of the copies coming out broken. It is the same discipline that lets ordinary computer chips ship by the billion, now being borrowed for quantum processors. The idea is simple: a layout that looks beautiful on screen is worthless if half the chips that come off the line miss their targets or land on a fatal defect.

In practice DFM means agreeing on a set of process design rules — minimum line widths, spacings, and shapes the fab promises it can hold — and then designing inside them with margin to spare. For quantum chips it adds a few extra chores: planning qubit frequencies so the inevitable spread from fabrication still leaves room between neighbors, laying out wiring and bond pads so signals can reach every qubit, choosing tolerant geometries that shrug off small misalignments, and building in ways to test the chip and find the bad ones before you cool the whole thing down for weeks. The shared goal is that a typical chip, not a hand-picked lucky one, works.

The honest catch is that quantum DFM is young and the hardest rules are still being written. The single most temperamental step — making Josephson junctions whose frequencies land where you asked — does not yet hold tolerances anywhere near what classical transistors enjoy, so frequency planning fights real scatter rather than a clean grid. No qubit modality has settled into a stable rulebook, and best practices keep shifting under fabs as the devices themselves change. DFM here is less a finished playbook than a direction of travel: borrow the discipline that made classical chips manufacturable, and slowly earn the same predictability.

Also calledmanufacturability-aware designdesign for yield可制造性设计面向良率的设计可製造性設計面向良率的設計

Picture a building inspector walking a finished construction site with the city code in hand: walls must be at least so thick, stairs no steeper than a limit, exits a minimum width apart. A design rule check is that inspector for your chip layout. The foundry hands you a rule deck — hundreds of geometric requirements its manufacturing line can actually print and etch reliably — and a DRC tool sweeps every polygon on every layer to confirm none of them break the code: each wire is at least the minimum width, no two shapes sit closer than the minimum spacing, every shape clears the minimum-area floor, and metal must overlap (enclose) the via beneath it by a set amount so the connection survives processing. The check is purely geometric. It asks 'can this be built?', not 'is the wiring correct?' — comparing your layout against the intended circuit is a separate step called layout-versus-schematic (LVS).

DRC runs late in the flow, after place-and-route has drawn the real metal, as part of physical verification (sometimes called signoff DRC, the foundry-blessed final pass). It rarely travels alone. Antenna rules ride alongside it: during fabrication, a long stretch of metal connected to a transistor gate can collect plasma charge mid-process and punch through the thin gate oxide, so the deck caps the ratio of exposed conductor area to the gate area it feeds — you fix a violation by adding a tiny protection diode or hopping the net up to a higher layer. An electrical rule check (ERC) is the sibling that hunts electrical mistakes geometry alone won't reveal, such as floating gates or a node shorted between power and ground. Clean DRC, clean LVS, clean antenna and ERC together are the gate you must pass before a layout is allowed anywhere near tapeout.

Also calledDRCdesign rule checking设计规则检查設計規則檢查

Developmental apoptosis is a built-in, orderly form of cell suicide that the developing brain uses to get its numbers right. As a brain takes shape, it deliberately overproduces neurons — far more than it will keep — and then quietly removes the surplus. Think of a sculptor who starts with a block of stone much bigger than the final statue: the finished shape appears not by adding material but by chipping away what isn't needed. In the same way, the brain isn't simply built up cell by cell; it is also carved down, and roughly half of the neurons made in some regions are eliminated on purpose. This planned death is what apoptosis means — a tidy, self-contained shutdown, very different from the messy bursting of a cell that has been injured.

Why make extra cells just to delete them? Because it lets the brain test connections instead of guessing them. Young neurons grow out wiring and compete for a limited supply of survival chemicals — protective molecules such as neurotrophic factors — that are released by the targets they manage to reach, like muscles or other neurons. A neuron that links up to the right partner soaks up enough of this chemical reassurance and lives; one that connects to nothing or to the wrong place is starved of the signal and triggers its own death program from within, neatly packaging its contents so neighbors can clear it away without inflammation. The result is a nervous system whose surviving cells are the ones that actually found useful jobs and matched the size of their targets.

This pruning of whole cells happens mostly before and around birth, and it works hand in hand with the later trimming of individual connections. Getting it right matters: too little developmental apoptosis can leave the brain crowded with miswired cells, while too much can thin it out, and disruptions of these death-and-survival signals are studied in the context of certain neurodevelopmental and degenerative conditions. Far from being a flaw, this controlled loss is one of nature's main tools for shaping a working brain — proof that in development, subtracting can be just as important as adding.

Also calledprogrammed cell deathnaturally occurring neuronal deathneuronal apoptosis程序性细胞死亡程序性細胞死亡神经元自然死亡

Dexterous manipulation is the skillful, finely coordinated use of many fingers working together to handle an object — not just holding it, but actively controlling it: turning, sliding, repositioning, and reorienting it with delicate, well-timed touches. It is the difference between a clamp that only grabs and a human hand that can twirl a pen, unscrew a cap, or thread a needle. The hallmark is many points of contact, each pushing in its own direction, all coordinated toward one smooth result.

What makes it hard is that the object's fate depends on every fingertip at once. Press too hard and you crush or jam it; too soft and it slips; out of sync and it tumbles the wrong way. The robot must keep track of where each finger touches, how much force flows through each contact, and how those contacts will make the object move — and it must update all of this many times a second as the object shifts. This usually demands a multi-fingered hand, good touch sensing so the robot can feel what is happening, and either very careful contact planning or skills learned through long practice.

Dexterous manipulation is a frontier of robotics precisely because human hands make it look effortless while machines find it extremely demanding. Mastering it is what would let a robot tie a knot, assemble small parts, use everyday tools, or handle the soft, slippery, and irregular objects of a real kitchen or workshop, rather than only the neat, rigid pieces of a factory line.

Also calleddextrous manipulation多指灵巧操作

The dexterous workspace of a robot arm is the smaller, choosier region where the hand can not only reach a point, but reach it pointing in any direction you want. In the bigger reachable workspace, the arm can merely touch a spot somehow; in the dexterous workspace it has full freedom of angle there — it can hold a tool upright, tilt it, flip it over, aim it any which way, all while staying at that same location.

This extra demand is strict, so the dexterous workspace is always tucked inside the reachable one, and usually much smaller — often a snug core near the middle of the arm's range, away from the far-out, fully-stretched edges. Out at the fringes the arm can still touch things, but only at one forced, locked-in angle, like reaching a high shelf with your arm dead straight: your fingertips arrive, but you cannot freely rotate your hand once you are there.

This region matters enormously for tasks that care about orientation, not just position — screwing in a bolt, pouring from a bottle, welding a seam, guiding a surgical tool. For those jobs the workpiece must sit inside the dexterous workspace, because being merely reachable is not enough; the hand has to be able to face it the right way too.

Also calleddextrous workspace灵巧空间靈巧空間

A dialect is a particular flavor of a language — the version spoken by people in one region or one social group, with its own words, its own sounds, and even its own small twists of grammar. Think of how a Texan, a Londoner, and a Scot all speak English, yet say it differently: one orders "soda," another "fizzy drink," and the vowels and rhythms shift the moment they open their mouths. Each is speaking a dialect of English.

Crucially, no dialect is more "correct" than another. The version we call the "standard" — the one taught in schools and read on the news — is usually just the dialect that happened to belong to the people with power and prestige. It is not purer or more logical; it simply won the social lottery. Every dialect has a full, consistent grammar of its own.

Here is the slippery part: where does a dialect end and a separate language begin? Linguists love the quip that "a language is a dialect with an army and a navy." Mandarin and Cantonese are often called dialects of Chinese though their speakers can't understand each other, while Norwegian and Swedish are called separate languages though their speakers largely can. The line is drawn by politics and identity far more than by linguistics.

Also calledregional dialectvernacularvariety方言土话

A superconducting qubit stores its energy partly as an electric field humming in the space around its metal. Wherever that field passes through an insulating material, a sliver of bare silicon surface, a thin native oxide on the metal, the glue between two chips, some of the energy gets quietly absorbed and turned into heat. That absorption is dielectric loss, and it is one of the main reasons a qubit forgets its state after only a few hundred microseconds. Every imperfect insulator the field touches is a tiny leak.

Engineers split the problem into two parts. The material has a loss tangent, written tan delta, which says how lossy that insulator is per unit of field sitting in it. And each region has a participation ratio p, which is the fraction of the qubit's total electric-field energy that actually sits inside that region. The damage from a region is roughly the product p times tan delta, and you add those products up over all the lossy spots. So you fight dielectric loss two ways: pick better materials to lower tan delta, and shape the geometry, wider gaps, cleaner surfaces, fewer interfaces, to push the field away from the lossy regions and lower p.

The honest catch is that the worst offenders are often the thinnest and hardest-to-control layers: the few-nanometer oxides and the messy interface where metal meets substrate, where the participation ratio is small but tan delta is huge. Much of the loss comes from microscopic two-level-system defects living in exactly those layers. Cleaner fabrication, better substrates, and clever geometry have pushed qubit lifetimes up steadily, but surface and interface dielectric loss is still a leading limit on how long today's qubits live, and it is far from solved.

Also calleddielectric loss tangent介电损耗tan delta損耗角正切

A differential drive is the simplest steerable wheel layout there is: two wheels, one on each side of the robot, each with its own motor, plus maybe a little free-spinning caster to keep the body from tipping. There is no steering wheel and nothing that turns left or right — the robot changes direction purely by driving its two wheels at different speeds. Spin both wheels forward at the same speed and it rolls straight; speed up the left wheel relative to the right and it curves toward the right; the bigger the speed difference, the tighter the turn.

The magic of this design is that the same two motors that move the robot also steer it, so it can do something a car cannot: spin in place. If you drive the left wheel forward and the right wheel backward at the same speed, the robot rotates around the point exactly between its two wheels without going anywhere — a perfect pirouette in a spot no bigger than itself. This is why almost every robot vacuum, hobby rover, and warehouse mover uses a differential drive: it is cheap, mechanically dead-simple, and turns on a dime in tight indoor spaces.

Working out where such a robot will end up is a tidy piece of math. From just two numbers — how fast the left wheel rim moves and how fast the right wheel rim moves — you can compute the robot's forward speed (the average of the two) and how fast it is turning (the difference between them, divided by the distance between the wheels). Add those up moment by moment and you can predict, or command, the robot's whole path across the floor; this bookkeeping of motion from wheel speeds is its kinematics.

Also calleddifferential steeringdiff drive差动转向

Differential kinematics looks at tiny changes: if you nudge each of a robot arm's joints by a hair, exactly how much, and in which direction, does its hand shift? Instead of asking about full speeds over a second, it asks about the smallest imaginable steps — a whisker of joint rotation and the matching whisker of hand movement. It is the "zoomed-in" view of how joint motion and hand motion are tied together.

Working in tiny steps turns out to be a wonderful simplification. Over a full, large motion the link between joints and hand is tangled and curved; but if the step is small enough, that link becomes very nearly a simple, straight proportion — and that proportion is captured by the Jacobian, the table that maps a small twist of the joints into a small shift of the hand. This is why so much of robot control is built on tiny increments: stack up thousands of these small, well-behaved steps and you get a complete, smooth, controllable motion, without ever wrestling with the full curved relationship all at once.

Differential kinematics and velocity kinematics are two faces of the same coin. Velocity kinematics phrases the link as speeds (motion per second); differential kinematics phrases it as increments (motion per tiny step). Both lean on the same Jacobian, and a digital controller — which updates in tiny ticks anyway — naturally thinks in these small increments.

Also calledincremental kinematics微分运动学微分关系

A differential pair is two carefully matched transistors that share one tail current source feeding their joined sources, and together they answer a single question: which of your two inputs is higher, and by how much? Picture a seesaw fed by a fixed flow of water at the pivot. The total water is constant, so when one input rises and tips the seesaw, current shifts from one transistor to the other — but the sum never changes. The output is read as the imbalance between the two sides, which means the pair amplifies the difference of the inputs and quietly ignores any voltage they share. Lift both inputs by the same amount and the seesaw stays level; nothing happens at the output. That is the whole point: it listens to the difference and is deaf to the common part.

This deafness has a name — common-mode rejection — and it is why the differential pair is the input front-end of nearly every op-amp. Real-world signals ride on top of shared garbage: power-supply hum, ground bounce, picked-up interference. Because that noise is common to both inputs, the pair rejects it while faithfully amplifying the small wanted difference. We grade this with CMRR, the ratio of differential gain to common-mode gain (bigger is better, often quoted in dB); it improves the more ideal the tail current source is, since a stiff tail holds the sum constant and refuses to let common-mode shifts leak through.

The gain itself comes from each transistor's transconductance gm — how strongly its gate voltage steers current — working into the resistance at the output, so the small-signal gain is roughly gm times that load resistance, in the same spirit as a common-source stage but now driven by the input difference. For a MOSFET in saturation, gm = 2*Id/Vov, so the tail current you choose and how hard you bias the devices set both the gain and the speed. Pair this front-end with a current-mirror load to turn the two-sided swing into one clean output, and you have the first stage of a classic two-stage op-amp.

Also calleddiff pairlong-tailed pairsource-coupled pairemitter-coupled pair

Diffusion MRI is a way of using a standard brain scanner to watch how water molecules drift around inside living brain tissue — no surgery, no dye, no radiation. Water never sits perfectly still; its molecules constantly jiggle and wander in every direction, a motion called diffusion. The trick is that this wandering is not equally free everywhere. The brain's long-distance wiring is made of axons — thin cable-like fibers, often bundled and sheathed in fatty insulation — and water slips easily along the length of these fibers but is blocked from crossing sideways out of them. By measuring which directions water moves most freely in each tiny chunk of tissue, the scanner can infer which way the local fibers are pointing.

Tractography is the next step: a computer takes all those little direction arrows and stitches them together, following the flow from one chunk to the next like tracing a river downstream, to reconstruct the long pathways — the white-matter tracts — that connect different brain regions. The result is a colorful three-dimensional map of the brain's cabling in a living person, used to study how regions are linked, to plan neurosurgery around important bundles, and to spot damage in conditions like stroke or multiple sclerosis. It is important to remember the map is an inference, not a photograph: tractography estimates likely fiber routes from water-movement clues and can be fooled where many fibers cross, so its pretty streamlines should be read with care.

Also calledDTIdiffusion tensor imaging弥散磁共振弥散张量成像瀰散張量成像白质纤维束成像白質纖維束成像

A digital signature is a way to prove that a specific message came from a specific person and has not been altered since — using math instead of ink. Unlike a handwritten signature, which looks the same on every document and can be traced, a digital signature is a unique number computed from both the message and the signer's secret private key, so it is impossible to forge without that key and impossible to reuse on a different message.

It works hand in hand with public-key cryptography. To sign, you combine the message with your private key to produce the signature. To verify, anyone takes the message, the signature, and your public key, and runs a check that passes only if the signature was genuinely made by your private key for exactly that message. The private key never leaves your hands, yet the whole world can confirm your authorship. Change even one character of the message afterward and the signature stops matching.

This gives three guarantees at once: authenticity (it really came from the keyholder), integrity (the contents were not tampered with), and non-repudiation (the signer cannot later deny it). On a blockchain, every transaction must carry a valid digital signature from the owner of the funds being moved; without it, the network simply rejects the transaction. That single check is what stops anyone from spending coins that are not theirs.

Also called数字签名數位簽章

A digital twin is a living virtual copy of a specific real robot or machine that is kept in step with its physical original, moment by moment, using a steady stream of data from real sensors. Unlike a plain simulation, which is a stand-in for some imaginary robot, a digital twin is tied to one particular machine out in the world: when the real robot lifts its arm, its twin lifts the matching arm on screen; when a real joint heats up, the twin shows that same joint warming. It is less a rehearsal stage and more a constantly updated mirror image.

Keeping a faithful mirror running has three big payoffs. First, monitoring: operators can watch a robot working on the far side of a factory — or a continent away — as if standing beside it, seeing its true state at a glance. Second, prediction: because the twin knows the real machine's current wear and load, it can run what-if tests on itself, such as quietly checking whether tonight's heavier task might overheat a motor, and raise a warning before the real one fails. Third, planning: engineers can try a new routine on the twin first, and only send it to the real robot once it looks safe.

The idea traces back to a NASA practice during the Apollo era of keeping a full duplicate of a spacecraft on the ground, so engineers could reproduce and solve problems happening far out in space; the phrase digital twin itself was coined decades later. A modern digital twin does the same in software, fed continuously by live data. The hard part is keeping the twin genuinely synchronized: if the data is late, sparse, or wrong, the mirror drifts away from reality and its predictions can no longer be trusted.

Also calleddigital twin数字双胞胎數位雙生

A digital-to-analog converter runs an ADC in reverse: it takes a stream of numbers — codes a chip computed or stored — and rebuilds them into a real, continuous voltage or current you can send to a speaker, an antenna driver, or a control loop. Think of a paint-by-numbers kit. The digital side hands over an index ("this sample is level 1402 out of 4096"), and the DAC mixes exactly that shade of analog and holds it on the output until the next number arrives. Each code maps to one rung on a ladder of 2^N evenly spaced output levels, and the height of one rung — the smallest step the converter can make — is the LSB, equal to the full-scale range divided by 2^N. A 12-bit DAC spanning 1.2 V therefore steps in jumps of about 1.2 V / 4096, roughly 0.3 mV.

Because the output only changes when a new sample lands and then sits flat (a zero-order hold), the raw signal comes out as a staircase, not a smooth curve. That blockiness is high-frequency junk you didn't ask for, so a DAC is almost always followed by an analog reconstruction filter — a gentle low-pass — that rounds the steps back into the intended waveform. The finite number of rungs also sets a hard ceiling on fidelity: an ideal N-bit converter feeding a full-scale sine can do no better than a signal-to-noise ratio of about 6.02N + 1.76 dB, the same quantization limit an ADC obeys, so each extra bit buys you roughly 6 dB. Real DACs fall short of even that, because no two rungs are perfectly spaced.

Those spacing imperfections are where analog practice bites. Differential nonlinearity (DNL) measures how far each step strays from one ideal LSB, and integral nonlinearity (INL) measures the accumulated bow in the whole transfer curve; if DNL ever reaches -1 LSB the output can go backwards as the code counts up, a non-monotonic DAC that quietly ruins any feedback loop relying on it. The other classic gotcha is glitch energy: at a big code transition like 0111 to 1000, many internal switches flip at slightly different instants, and for a few nanoseconds the output spikes somewhere it was never supposed to be. This is why architecture matters — a slow, precise audio part might use an R-2R ladder, while a fast communications transmitter reaches for a current-steering DAC built to swap currents with minimal glitch.

Also calledDACD/A converter

Dijkstra's algorithm is a recipe for finding the cheapest route from a starting point to every other point in a network, where each hop between points has a cost — like distance, time, or energy. Picture a subway map where each segment between stations is labelled with how many minutes it takes. Dijkstra's algorithm works out the fastest total trip from your home station to any destination, not by guessing, but by patiently spreading outward from the start the way water floods a valley: it always commits next to the nearest place it has not yet settled, so the first time it settles a station, it already knows that is the quickest possible way to get there.

Here is the trick that makes it reliable. The algorithm keeps a running best-known cost to reach every point, starting at zero for the home point and 'unknown' everywhere else. It repeatedly picks the unsettled point with the smallest known cost, marks it final, and then looks at its neighbours: if going through this point gives a cheaper way to reach a neighbour than any found before, it writes down that lower cost. Because it always settles the cheapest-so-far point next, and the costs can never be negative, no later discovery can ever beat a point it has already locked in. When it finishes, the shortest path to the goal can be traced back step by step.

In robot path planning, the 'points' are squares in a grid map or nodes in a graph of possible places the robot can stand, and the 'costs' are how hard or risky it is to travel between them. Dijkstra guarantees the genuinely shortest or lowest-cost path, which is its great strength. Its weakness is that it explores in every direction equally, with no sense of where the goal lies, so it can waste effort searching far from the target — the very problem that the A* search algorithm fixes by adding a hint about which way to head.

Also calleduniform-cost search一致代价搜索均勻成本搜尋

Those gold-and-copper chandeliers you see in photos of quantum computers are dilution refrigerators, and the actual chip sits at the very bottom, colder than deep space. A superconducting qubit runs at a few gigahertz, and at room temperature the random jiggle of heat carries far more energy than one of those microwave quanta, so thermal noise would swamp the qubit and constantly flip it. The fridge exists to take that heat away, cooling the chip to roughly 10 to 20 millikelvin, about a hundredth of a degree above absolute zero, so the quantum states can sit still long enough to compute. It also keeps the chip's metal in its superconducting state, where wires carry current with no resistance and no heat.

The cold comes from mixing two isotopes of helium. Below about 0.87 kelvin, a liquid mixture of helium-3 and helium-4 separates into two layers, like oil and water. Pumping helium-3 atoms across the boundary from the rich layer into the dilute layer costs energy, and that energy is pulled out as heat from whatever is attached, the same way sweat cools your skin as it evaporates. The fridge is built as a stack of stages, each colder than the one above, often labeled by temperature like 4 K, 1 K, the still, and the mixing chamber at the bottom where the chip lives. Every signal wire and coax line threads down through all of those stages so the heat it carries is dumped off bit by bit on the way down.

The honest catch is that the cooling power at the bottom is tiny, often well under a milliwatt at base temperature, so almost nothing is allowed to dissipate heat down there. That single fact shapes the whole design of a quantum chip: control and readout signals must be heavily attenuated and filtered at the cold stages, on-chip electronics must barely sip power, and there is only so much room to run wires before the heat load wins. Scaling to many thousands of qubits runs straight into this wall, which is why so much current work goes into cryo-CMOS control chips, better wiring, and multiplexing rather than just adding more qubits.

Also calleddil fridge稀释制冷机稀釋製冷機dilution fridge

A diode is a one-way valve for electric current. Picture a turnstile that lets people through in one direction but locks solid against anyone pushing the other way — that is exactly what a diode does to current. Push current the "forward" way and it flows almost freely; try to send it backward and the diode slams shut, blocking it. This single trick of letting charge through one way and not the other is the foundation of almost everything else electronics does with diodes — steering messy power into clean one-way current (rectification), shielding delicate parts from a backward surge (protection), and, in an LED, turning that forward flow into light.

The magic lives at a PN junction, where p-type silicon (doped to crave electrons) touches n-type silicon (doped to have spare electrons). Right at the seam the loose electrons and holes pair off and clear out, leaving a thin depletion region — bare of moving charge — that resists current. Forward voltage above about 0.7 V (silicon) collapses that barrier and current pours through; reverse voltage only widens it, so almost nothing passes. That asymmetry is what turns the back-and-forth alternating current from a wall outlet into the steady direct current a phone charger needs — and an LED is just a diode built so that the energy released by its forward flow comes out as light.

Also calledPN junctionrectifierLED二极管二極體

The direct and indirect pathways are two opposing routes through the basal ganglia—a cluster of deep brain structures that helps choose and launch your movements. Think of them as a gas pedal and a brake working on the same motor. The direct pathway is the gas: when it fires, it releases the brain's natural hold on movement, letting an intended action go through. The indirect pathway is the brake: when it fires, it tightens that hold and suppresses competing or unwanted movements. Smooth, well-timed action depends on these two routes being balanced against each other.

Here is the trick that makes them work. By default, a part of the basal ganglia is constantly clamping down on movement, like a hand always pressing the brake. The direct pathway briefly lifts that hand off the brake, so the movement you want can run. The indirect pathway does the opposite—it presses the brake even harder, shutting down movements you do not want. The chemical messenger dopamine tunes both: it encourages the gas pathway and quiets the brake pathway, which is why losing dopamine cells in Parkinson's disease leaves the brake too strong, making movements slow and hard to start. This balance is the basal ganglia's core job: pick one action and let it run while holding all the others back.

Also calledgo pathwayno-go pathwaygo/no-go pathways直接和间接通路直接和間接通路

Direct drive means bolting the motor straight onto the thing it moves, with no gears, belts, or pulleys in between. Most robots place a gearbox between the motor and the joint to trade speed for strength, the way a bicycle's low gear lets you climb a hill. Direct drive throws that middleman away: the motor's own shaft is the joint, so whatever the motor does, the load feels instantly and exactly.

Skipping the gears buys three things that gears tend to spoil. There is no backlash — the tiny slack or wobble between gear teeth that makes a geared joint feel loose when it changes direction. The connection has high bandwidth, meaning it can react and reverse extremely fast and smoothly, because nothing springy or sloppy sits in the path. And it is backdrivable: you can grab the arm and push it by hand, and the motor turns easily, so the robot can feel outside forces instead of fighting them — which makes it gentle and safe to work alongside.

The catch is that a direct-drive motor has to be large and produce high torque on its own, because it gets no torque multiplication from gears. So you find direct drive where smoothness, speed, and a delicate sense of touch matter more than raw lifting power: high-end record-player turntables, camera gimbals, force-sensitive robot arms, and the agile legs of some walking robots.

Also calledgearless drive直驱直驅

Disease modeling means recreating a disease in the lab — outside any patient — so scientists can study it and test possible treatments safely. Using cells taken from a patient, or organoids and chips grown from those cells, researchers build a living copy of what is going wrong in the body. It is like making a working scale model of a faulty bridge so engineers can poke at it without anyone standing on the real one.

Often the starting point is a patient's own cells, sometimes reprogrammed back into a flexible stem-cell state and then coaxed into the cell type a disease attacks — say, brain cells for a neurological condition. Because these cells carry the patient's exact genetics, the model reproduces the real fault, not a generic stand-in. Scientists can then watch the disease unfold, hunt for the broken step, and try drugs to see which ones help.

This matters because it lets discovery happen without putting people at risk and can capture diseases that animal models miss. It is especially powerful for rare conditions and for tailoring research to one person's biology. The limit is honesty about scope: a model in a dish reproduces parts of a disease, so a promising result still has to be proven in proper clinical trials before it can help patients.

Also called疾病建模疾病模型疾病模拟

Dispersive readout is the standard trick for asking a superconducting qubit whether it is a 0 or a 1 without poking it too hard. You don't look at the qubit directly; you attach it to a small microwave resonator, ping that resonator with a brief pulse, and listen to how the echo comes back. The qubit never absorbs the probe tone, so the measurement is gentle and the qubit usually survives the question.

It works because the qubit and resonator are tuned far apart in frequency (the dispersive regime). In this regime the qubit can't trade energy with the resonator, but it still nudges the resonator's resonant frequency by a tiny amount, +chi if the qubit is in 0 and -chi if it is in 1. So the resonator's tone comes back with a slightly different phase and amplitude depending on the qubit state. By averaging that returning signal, the control electronics sort each shot into a 0 cloud or a 1 cloud and read off the answer.

The honest catch: it is fast and repeatable, but not free. The probe pulse must be strong and long enough to tell the two clouds apart, yet a too-strong pulse can shake the qubit out of the dispersive regime and corrupt the state. Stray photons left in the resonator also dephase the qubit, so designers add filters and isolators (which are still bulky and hard to fit on-chip) and carefully budget how many photons each measurement uses.

Also calleddispersive measurement色散测量色散量測

Distributed consensus is how a group of robots, each knowing only its own piece of the truth and able to talk only to nearby neighbors, all settle on one shared answer — with no boss handing down the verdict. Imagine ten thermometers scattered in a field, each reading a slightly different temperature, that must agree on a single number to report. The challenge is that no robot sees everyone's reading at once, yet somehow they all need to end up holding the same value.

The classic trick is wonderfully simple: each robot repeatedly nudges its own number a little toward the average of whatever its neighbors are currently saying, then shares the updated number, over and over. Round by round, the differences shrink, and the whole group converges to a common value — and if everyone weights their neighbors evenly, that value is the average of where they all started. This works even though no robot ever sees the global picture, because information ripples outward neighbor to neighbor until everyone has, in effect, heard from everyone else.

Consensus is a workhorse of multi-robot teams. It lets a fleet agree on a meeting point, a shared clock, a common heading, or a vote on what to do next, all without a central coordinator that could fail or become a bottleneck. The hard parts are real, though: messages get lost, the network can split, robots join and leave, and a faulty or lying robot can drag the group toward a wrong answer — so much of the field is about reaching agreement reliably despite all of that going wrong.

Also calledconsensusagreement protocol一致性共识算法

A distributed ledger is a record of entries — who owns what, who paid whom — that is stored across many computers at once, with no single official copy. Each computer holds its own full version, and the network constantly works to keep all those copies in step. The goal is to remove the single point of control (and single point of failure) that a traditional central database has.

In an ordinary system, a bank or a government keeps the one true ledger, and you simply have to trust that they have not edited it, lost it, or been hacked. A distributed ledger flips that around: because hundreds or thousands of independent copies exist and must agree, there is no master record to quietly alter and no single server whose failure takes the whole system down. To change the shared truth, you would have to convince a majority of the network at the same time.

A blockchain is the most famous kind of distributed ledger, but not the only one — the defining idea is many synchronized copies plus a rule for agreeing on updates, however the data happens to be structured. This design is what lets a payment network or registry keep running honestly even when nobody is in charge and some participants are offline or dishonest.

Also calledDLT分布式账本分散式帳本

DNA is the molecule inside almost every living cell that holds the full set of instructions for building and running a body. Picture a twisted ladder — the famous double helix — whose rungs are made from just four chemical "letters," A, T, G and C. The exact order of those letters spells out everything from your eye color to how your cells make energy.

Those four letters pair up in a fixed way: A always sits across from T, and G always across from C. That tidy pairing is the secret to copying. When a cell divides, the ladder unzips down the middle and each half rebuilds its missing side, so both new cells walk away with a complete, matching copy of the instructions.

The double-helix shape was worked out in 1953 by James Watson and Francis Crick, building on the X-ray images made by Rosalind Franklin. Today we can read these letters end to end, which is how doctors trace inherited diseases and how a tiny sample can identify a single person.

Also calleddeoxyribonucleic aciddouble helixgenetic code脱氧核糖核酸去氧核醣核酸双螺旋雙螺旋遗传密码

DNS is the internet's phone book. You type a friendly name like example.com, but computers don't actually find each other by name — they find each other by number, an IP address like 93.184.216.34. DNS is the system that quietly looks up the name and hands back the number, every single time, before your browser can connect to anything.

It works because nobody wants to memorize a dozen numbers just to visit their favorite sites. Names are for humans; numbers are for machines. So whenever you click a link or load an API, the very first invisible step is a DNS lookup: 'what's the IP for this name?' Only once that answer comes back can the real request go out. It's so fast and automatic that you forget it's happening — until it doesn't.

And that's the practical bit to remember: a surprising number of 'the site is down' moments are really DNS problems — a name that points at the wrong number, or a fresh domain whose entry hasn't spread across the world's servers yet (people call that 'waiting for DNS to propagate'). When something connects to the wrong place, or to nothing at all, the phone book is the first place to look.

Also calleddomain name systemname resolutionnameservera recorddns lookup
See alsoHTTP / HTTPS

The Dolan-bridge junction is the classic, almost handmade way of building a Josephson junction: the tiny sandwich of aluminum, a few-atom-thick layer of aluminum oxide, and aluminum again that sits at the heart of most superconducting qubits. The clever part is that the whole stack is laid down in a single chip-making run, without ever opening the vacuum chamber, using a trick of geometry and shadows. It matters because almost every superconducting quantum chip made in a university lab today is built this way.

First, electron-beam lithography carves a stencil in resist with a thin free-standing bridge of resist suspended over a gap, like a tiny footbridge. Aluminum is then evaporated straight down at one tilt angle; the bridge casts a shadow, so the metal lands on one side of the gap. The chip is exposed to a whiff of oxygen so a thin oxide skin grows on that first aluminum. Then aluminum is evaporated again at the opposite tilt; now the shadow falls the other way, and the second layer lands shifted over, partly overlapping the first. Where the two layers cross, with the oxide in between, you get an Al/AlOx/Al overlap, and that overlap is the junction. The same suspended bridge that makes the shadow gives the method its name.

It is simple and cheap, but it is also variable. The junction's electrical strength depends on the overlap area and the oxide thickness, both set by angles, timing, and a self-grown oxide that is hard to control to the atom. So nominally identical junctions come out a few percent apart, and since that strength sets a qubit's frequency, the junctions drift apart in frequency too. On chips with many qubits this frequency spread causes collisions, which is why labs are working on tighter recipes and, for large-scale production, alternative junction styles.

Also calledshadow evaporation junctiondouble-angle evaporation junctionDolan bridge双角度蒸镀结雙角度蒸鍍接面

Domain randomization is a trick for training a robot in simulation so its skill survives in the real world: instead of practicing in one carefully tuned virtual setting, you randomly shuffle the simulation's settings on every run. One trial has a slippery floor and dim light, the next has a heavy object and a laggy motor, the next a bright glare and a different camera angle. By the end the robot has practiced across thousands of subtly different fake worlds rather than one. The idea is simple but powerful: if no single version of reality was ever the 'true' one during training, the robot stops over-fitting to any of them and instead learns the underlying skill that works across all of them.

It helps because the real world is just one more setting the robot has never seen exactly — and that is precisely what it has been trained to expect. If a walking policy has coped with a hundred different simulated frictions, the one real friction it eventually steps onto falls comfortably inside the range it already practiced, so it barely notices the change. In effect, domain randomization treats the gap between simulation and reality not as a precise target to hit, but as one more source of variation to drown out. This is why it is the most widely used tool for sim-to-real transfer and for shrinking the reality gap.

The art is in choosing what to randomize and how widely. Vary too little and the simulation stays a narrow bubble that reality still pops; vary too wildly and the task becomes so chaotic the robot can never learn anything stable. Engineers typically randomize the physics that matters — friction, masses, motor delays, sensor noise — and the look of things — lighting, colors, textures, camera placement — tuning each range to be broad enough to span reality without making the problem hopeless.

Also calledDRdynamics randomization动力学随机化

For decades the answer to 'I want my program to run faster' was simple: wait for the next CPU. Each generation clocked higher and did more per cycle, and your code sped up for free. That free lunch ended when the power wall hit (Dennard scaling broke down around 2006): you could still pack more transistors on a die, but you could no longer afford to switch all of them at full speed without melting the chip. The leftover, un-powerable transistors are called dark silicon. A domain-specific architecture is the architectural answer to that problem. Instead of building one general-purpose CPU that tries to run everything passably, you spend those transistors on a purpose-built engine tuned for one class of workload, and you light up exactly the silicon that workload needs.

The trade is generality for efficiency. A general CPU spends most of its energy not on your actual math but on overhead: guessing which instruction comes next, reordering work, shuffling data through deep cache hierarchies, decoding one instruction at a time. A DSA strips that away. It hard-wires the data path for its target, uses a memory layout matched to the workload's access pattern, runs thousands of simple operations in parallel, and often drops to lower-precision numbers that are good enough for the job. The result is often ten to a hundred times more performance-per-watt than a CPU for that one domain, even on the same process node. The catch is the flip side of the same coin: a DSA is brilliant at its one job and useless at everything else.

The familiar examples are all DSAs. A GPU is tuned for the massively parallel arithmetic of graphics and, now, neural-network training. A TPU and an NPU are tuned specifically for the multiply-accumulate storms of AI inference. This is why a modern phone or data-center chip is no longer one big processor but a collection of specialized blocks, each earning its silicon by doing one thing extremely efficiently. As blanket transistor scaling slows, specialization is increasingly where the real performance gains come from.

Also calleddomain-specific acceleratorDSA

A DRAG pulse is a small but clever fix for a problem that shows up every time you try to flip a qubit quickly. The artificial atom on the chip is not a clean two-level system; it has a third level (the 2 state) sitting close by. A short, hard microwave pulse has a wide spread of frequencies, so while it drives the 0->1 flip you actually want, its edges also reach up and leak a little population into the 2 state. DRAG shapes the pulse so that leakage cancels itself out, letting the gate stay fast without spilling out of the computing space.

The trick is to drive on two channels at once. Quadrature control gives you two knobs, usually called I and Q, that are 90 degrees out of phase. You put your normal flip pulse on one channel, and on the other you add a copy of its time-derivative, scaled by a coefficient tuned to the qubit's anharmonicity. That derivative component is engineered to push population back out of the 2 state exactly as fast as the main pulse pushes it in, so the unwanted leakage destructively interferes and the qubit lands cleanly on 1. The name spells this out: Derivative Removal by Adiabatic Gate.

DRAG is standard, cheap, and built into nearly every superconducting control stack, but it is not magic. The right derivative weight depends on knowing the anharmonicity accurately, and a second small frequency correction is often layered on to fix the phase the pulse leaves behind. It buys you speed against leakage, not against every error; cross-talk to neighboring qubits and imperfect calibration still limit how fast and how clean a single-qubit gate can really be.

Also calledDerivative Removal by Adiabatic GateDRAG 整形DRAG 整形

Dreaming is the experience of seeing, hearing, feeling, and living through little stories inside your own head while you are asleep. Even though your eyes are shut and your body is still, your brain spins up whole scenes — places, people, and events that feel real in the moment, often strange or jumbled, and usually starring you. It is a bit like watching a movie that your own mind is writing, directing, and screening for an audience of one, all without any input from the outside world.

Dreams can pop up at many points in sleep, but the most vivid, story-like ones tend to come during a stage called REM sleep — short for rapid eye movement, named because your eyes dart around behind closed lids. In this stage the brain is almost as active as when you are awake, yet the body's muscles are temporarily switched off so you don't act out the action. Scientists are still debating what dreaming is for: leading ideas include helping the brain sort and store memories, practicing how to handle emotions and fears, or simply being a side effect of a busy sleeping brain stitching random signals into a story. Whatever the reason, almost everyone dreams every night, even people who rarely remember it by morning.

Also calleddreamsREM dreaming梦境夢境

Drosophila is the tiny fruit fly that hovers around ripe bananas, and its nervous system is one of the most powerful tools scientists have for understanding how brains work. The fly brain is about the size of a poppy seed and holds roughly a hundred thousand neurons, far fewer than the billions in a human brain, yet it lets the insect see, smell, walk, fly, court a mate, and even learn from experience. Because it is small enough to study in full but rich enough to produce real behavior, it sits in a sweet spot between a simple worm and a complicated mouse.

What makes the fruit fly especially useful is genetics. Scientists can switch single genes on or off in chosen neurons, light up particular cells with glowing markers, and use light or heat to turn specific neurons on and watch the behavior change, all in an animal that breeds quickly and cheaply. Many genes that build the fly's brain have close cousins in our own, so a discovery in the fly often points to how the same machinery works in people. Researchers have now traced complete wiring maps, called connectomes, of fly brains, drawing every neuron and the connections between them. This combination of a fully mapped circuit and precise genetic control is why the humble fruit fly has become a model for studying memory, sleep, navigation, and even diseases like Parkinson's.

Also calledfruit fly brainfly model果蝇大脑果蠅大腦黑腹果蝇神经系统

Dual-process thinking is the idea that your mind has two different ways of reaching an answer. One is fast, automatic, and effortless — like instantly knowing a friend is angry from their face, or blurting out that two plus two is four. The other is slow, deliberate, and tiring — like working out a restaurant bill in your head or weighing the pros and cons of a big decision. Psychologists often nickname these System 1 (the quick gut reaction) and System 2 (the careful step-by-step reasoner), though in reality they overlap and hand work back and forth rather than acting as two separate machines.

The fast mode is wonderfully efficient: it lets you read, drive, and judge situations without burning much mental energy, because it leans on patterns learned through long experience. But it takes shortcuts, so it can be confidently wrong — falling for optical illusions, snap stereotypes, or a trick question whose obvious answer is a trap. The slow mode can catch and correct those mistakes, but it is limited and lazy: it costs attention and effort, so the brain only calls it in when a problem feels hard or when something signals that the quick answer might be off. Much of skill and good judgment comes from knowing when to trust the gut and when to slow down and check it.

This framework helps explain everyday puzzles — why smart people make silly errors when rushed, why first impressions stick, and why practice can turn a slow, deliberate task (like reading or playing piano) into a fast, automatic one. It is a useful map of the mind rather than a precise diagram of the brain; researchers still debate how cleanly the two modes can be separated.

Also calledSystem 1 and System 2fast and slow thinkingType 1 and Type 2 processing系统1与系统2快思维与慢思维系統一與系統二快思維與慢思維

Dualism is the idea that you are made of two completely different kinds of stuff. There's your body — a physical thing with weight and shape, made of cells and atoms, that a doctor can weigh and X-ray. And then there's your mind — your thoughts, feelings, and the inner sense of being you — which dualists say is something else entirely, not physical at all. Picture a driver inside a car: the car is the body, and the unseen "you" steering it is the mind.

The most famous champion of this view was the 17th-century French philosopher René Descartes. He noticed he could doubt that his body existed, yet he couldn't doubt that he was thinking — so mind and body, he reasoned, must be two separate things. This explains why dualism feels so natural: it matches the everyday hunch that there's a "real me" peering out from behind my eyes, somehow more than just brain tissue.

But it raises a famously stubborn puzzle: if mind and body are utterly different, how do they touch? How does a weightless thought make a flesh-and-blood arm move? Its great rival, materialism, answers by denying the split altogether — the mind, it says, just is what the brain does, the way a smile is just what a face does. Which side is right remains one of philosophy's oldest open questions.

Also calledmind-body dualismsubstance dualismCartesian dualism心物二元论身心二元论笛卡尔二元论心物二元論笛卡兒二元論

Due process is the promise that the government can't take away your life, your freedom, or what you own without playing by fair rules first. Before the state jails you, fines you, or seizes your house, it has to follow proper steps: tell you what you're accused of, let you tell your side, and have a neutral person decide. Think of it as the rule that there must be a real game with a real referee — not a verdict scribbled in a back room while you're shut out.

It matters because power without procedure is just force. A government might be certain you're guilty and still be wrong, so due process forces it to prove its case out in the open, where mistakes can be caught. Two flavors are usually distinguished: 'procedural' due process is about the fairness of the steps (notice, a hearing, an impartial judge); 'substantive' due process asks whether some rights are so basic the state can't strip them away no matter how fair the procedure looks.

A common mix-up: due process does not mean you always win, or that you can never be punished. You can lose your case, go to prison, or pay damages — and that's perfectly compatible with due process. What it guarantees is not a happy ending but a fair fight: that the outcome was reached the right way, not handed down by whim.

Also calleddue process of lawprocedural due processsubstantive due process正当法律程序正當法律程序法律的正当程序

Every motor turns electricity into heat as well as motion, and that heat has to go somewhere. The duty cycle is simply the fraction of time a motor is allowed to work hard before it needs to rest and cool down — like a person who can sprint for ten seconds but can only jog for an hour. If you push past that fraction, heat builds up faster than it can escape, and the motor approaches its thermal limit: the temperature at which the wires, magnets, or insulation start to weaken or burn out.

This is why a motor usually carries two numbers, not one. The continuous rating is how hard it can run indefinitely without overheating, and the peak rating is the much bigger burst it can give for a few seconds — to lift a heavy load or jump-start a wheel — before it must back off. Engineers design robots to live mostly within the continuous number and dip into the peak only briefly, the way you save your full strength for one big push. Ignore this and you get a motor that runs hot, slows down, and eventually fails; respect it and the same motor lasts for years.

Also calledcontinuous ratingpeak ratingthermal derating占空比工作週期连续额定/峰值额定連續額定/峰值額定
See alsodirect drive

The dynamical-systems view of the brain is a way of looking at neural activity not as a list of separate signals, but as a single point gliding through an imagined landscape over time. Picture a weather system: at any instant the whole atmosphere has a state — this temperature here, that pressure there — and from one moment to the next it flows into a new state, tracing a path. This view treats the brain the same way. If you record many neurons at once, the combined pattern of how active they all are right now is one point in a vast space, where each neuron gives the point one more direction it can move in. As the neurons change their firing moment by moment, that point sweeps out a curve — a trajectory — and the shape of that curve, not the firing of any single cell, is what carries the meaning.

What makes this powerful is that the trajectory usually does not wander randomly. Like a ball rolling in a bowl, neural activity tends to settle into certain low, restful regions (called attractors), or to circle around in smooth loops, or to follow well-worn channels from one state to another. A memory you are holding in mind can be a resting point the activity stays parked at; a decision can be the moment a trajectory tips toward one valley instead of another; a repeating movement like walking can be a loop the activity travels around and around. By measuring these shapes, scientists can describe what a population of neurons is computing without having to decode each cell separately.

This frontier view matters because it reframes the brain's job as steering its own activity along useful paths rather than just relaying messages. It helps explain how thousands of noisy, individually unreliable cells can together produce something steady and meaningful, why certain thoughts feel stable while others flip suddenly, and how new recording tools that watch huge numbers of neurons at once can be turned into a clear geometric story instead of an overwhelming pile of data.

Also calledneural dynamicsstate-space view of neural activity神经动力学神經動力學状态空间观狀態空間觀
E

An earthquake is the ground suddenly shaking because rock deep below has lurched. The Earth's outer shell is cracked into giant slabs that slowly push, pull, and grind against one another — colliding, pulling apart, or sliding past — and along the cracks between them, called faults, the rock often gets stuck, locked tight by friction while the slabs keep moving. Stress piles up for years or centuries, like a bent stick storing more and more spring, until the fault finally gives way and slips in an instant. That snap is the earthquake.

All that stored-up energy escapes as seismic waves — ripples that race outward through the rock in every direction, exactly the way ripples spread when you drop a stone in a pond. When they reach the surface they make the ground heave and roll, which is the shaking you feel. The scientists' magnitude scale measures how much energy a quake releases, and it climbs steeply: each step up of one number is about 32 times more energy, so a magnitude 7 is not a little bigger than a 6 — it's vastly more violent.

A common misconception is that the ground splits open and swallows people whole. It doesn't. Faults move along their length, and the real danger is almost always the shaking — buildings, bridges, and walls collapsing as the seismic waves rattle them. That's why a modest quake can be deadly where buildings are weak, yet a strong one barely harm anyone where they're built to sway and hold.

Also calledseismic eventquaketemblor地动地牛翻身震災

Elasticity measures how touchy shoppers are about price — how sharply the quantity people buy swings when the price changes. Picture two store shelves. Raise the price of fancy restaurant dinners and crowds quietly stay home; that demand is "elastic," springy, quick to react. Raise the price of gasoline or insulin and people grumble but buy almost the same amount anyway; that demand is "inelastic," stiff and slow to budge.

The dividing line is usually whether something is a luxury or a necessity, and whether easy substitutes exist. If you can switch to another brand, skip the purchase, or wait, demand bends easily. If you truly need it and nothing else will do — fuel to get to work, medicine to stay alive — demand barely moves no matter the price. That single fact is why a coffee shop fears raising prices but a power company barely flinches.

A common mix-up: elastic does not mean "expensive," and inelastic does not mean "cheap." It is about the reaction, not the price tag. A pricey luxury watch can be wildly elastic (buyers walk away at the smallest hike), while cheap table salt is famously inelastic (you'll buy your usual pinch whether it costs a little more or a little less).

Also calledprice elasticity of demandelastic demandinelastic demand价格弹性需求弹性價格彈性需求彈性

An electrical synapse is a spot where two neighboring neurons are joined by tiny tunnels, letting their electrical signals pass straight from one cell into the next. Most neurons talk to each other across a narrow gap by squirting out chemical messengers, like passing a note hand-to-hand. An electrical synapse skips that step: it is more like two rooms connected by an open doorway, so the electrical charge simply flows through without being converted into a chemical and back again.

The doorways themselves are called gap junctions. Each one is built from matching ring-shaped proteins, one ring in each cell's outer skin, that line up to form a pore narrow enough to block big molecules but wide enough for the small charged particles (ions) that carry electrical current. Because the signal does not stop to release chemicals, electrical synapses are extremely fast and can run in both directions. They are common where many cells need to fire in near-perfect unison, such as in the heart or in groups of neurons that must respond as one.

Also calledgap junctionelectrotonic synapse缝隙连接縫隙連接电紧张突触電緊張突觸

Electrocorticography, or ECoG, places a thin sheet or grid of electrodes directly on the surface of the brain's wrinkled outer layer, the cortex. The skull is opened in surgery, but the electrodes only rest on the surface — they do not pierce into the tissue. Compared with scalp EEG, it is like moving your microphone from outside the stadium wall to right beside the crowd: the sound becomes far clearer and more detailed.

Because there is no skull in the way, ECoG signals are much sharper and pick up fast, high-frequency activity that scalp EEG simply loses. This richer detail makes it powerful for decoding fine movements and even attempted speech. It sits in a sweet spot — far more informative than EEG, yet less risky than electrodes that penetrate the brain.

The trade-off is that ECoG requires brain surgery, so it is mainly used in people who are already having an operation, such as some patients being mapped before epilepsy surgery. That clinical setting has made ECoG a key testing ground for advanced brain–computer interfaces.

Also calledintracranial EEGiEEG皮层电极皮層電極

Electrode impedance is a measure of how much the connection between an electrode and the skin resists the tiny electrical signal trying to pass through it. Think of it as how clogged the doorway is between the brain's faint voltage and the recording equipment: low impedance is a wide-open door, high impedance is a narrow, sticky one.

Why it matters: brain signals are already incredibly small, so if the contact resists them strongly, what reaches the amplifier is weak and easily buried in noise. That is exactly why technicians scrub the skin and use conductive gel before placing EEG electrodes — these steps lower the impedance and let the signal through cleanly.

This is also the core difficulty of "dry" electrodes, which skip the gel for convenience. Without gel, the skin contact tends to have higher impedance, so making dry electrodes that still record a clean, trustworthy signal is a genuine engineering challenge.

Electroencephalography, or EEG, listens to the brain's electrical chatter using small metal electrodes placed on the scalp. When many neurons fire together, they create tiny voltage ripples that reach the surface of the head, and EEG records these as wavering lines, moment by moment. It is like pressing your ear to the outside of a stadium wall: you can hear the crowd roar and tell roughly when something exciting happens, even without seeing a single seat.

EEG's great strength is timing. It captures changes in thousandths of a second, so it follows the rhythm of thought almost as fast as it unfolds. It is also cheap, safe, portable, and completely non-invasive — nothing pierces the skin — which is why it is by far the most common signal used in brain–computer interfaces.

The catch is the skull. Bone and skin smear and weaken the signal on its way out, so EEG is spatially coarse: it can tell you roughly which region is active, but not which exact spot. The readings are also small and easily swamped by noise, so good electrode contact and careful cleanup are a constant part of the work.

Also calledscalp EEG脑电腦電

The electromagnetic spectrum is the full family of light — not just the light you can see, but every kind of electromagnetic wave, lined up from the longest, laziest waves to the shortest, most energetic ones. Radio waves sit at one end, then microwaves, infrared (heat you feel), the rainbow of visible light, ultraviolet, X-rays, and gamma rays at the other end.

What makes them all the same thing is that they're all waves of electric and magnetic energy moving at the speed of light. The only real difference is the size of the wave: a radio wave can be longer than a building, while a gamma ray is smaller than an atom. Shorter waves pack more punch, which is why X-rays can pass through you and gamma rays can be dangerous.

Here's the humbling part: the colors your eyes can detect — red, orange, all the way to violet — are a razor-thin sliver of the whole spectrum. Almost everything around you is glowing in light you simply can't see, from the WiFi in the air to the warmth of your own body.

Also calledEM spectrumspectrum of light电磁频谱光谱電磁頻譜

An electromagnetic wave is a ripple of energy that carries itself through space at the speed of light — and it's everywhere around you right now. The light you're reading by, the radio in your car, the signal from a Wi-Fi router, and the X-rays at a clinic are all the same kind of wave, just stretched to different sizes.

What's rippling? Two invisible things, working as a team: an electric field and a magnetic field. As one wiggles, it stirs up the other, which stirs up the first again — so the wave keeps regenerating itself as it goes, needing nothing to travel through. That's why sunlight crosses the empty vacuum of space to reach us.

The big difference between, say, a radio wave and an X-ray is just the wavelength — how long each ripple is. Long, lazy waves are radio; short, tight ones are X-rays and gamma rays; visible light sits in a thin band in between. In the 1860s James Clerk Maxwell wrote the equations showing all of this is one phenomenon, and even predicted these waves travel at light speed — revealing that light itself is electromagnetic.

Also calledEM waveelectromagnetic radiationEM radiationlight waveMaxwell's waves

Picture a narrow metal wire on the chip as a riverbed and the electrons flowing through it as a current of water. Normally the water just flows past the gravel. But push enough water through fast enough and it starts dragging the gravel along with it, scouring the bed thin in one spot and piling it up downstream. Electromigration is that same idea at the atomic scale: when the current density in a wire gets high enough, the moving electrons transfer momentum to the metal atoms (engineers call it the "electron wind") and slowly nudge them along, in the same direction the electrons travel. Over months and years the metal physically migrates — atoms drain away from one place, leaving a void that thins the wire until it cracks open, and pile up elsewhere as a bump (a hillock) that can push into a neighbor and short it.

The key word is density, not total current: a thin wire carrying a modest current can have a far higher current per unit cross-section than a fat bus carrying more, and it is the per-area crowding that does the damage. That makes EM a long-term reliability (wear-out) limit rather than something you see at power-on — the chip works fine on day one and fails after years in the field, which is exactly why it must be caught before tape-out. Sign-off tools check every wire and via against foundry current limits, set per metal layer, and they are stricter on power and ground rails and clock nets, where current flows one direction all the time, than on ordinary signal wires, where the back-and-forth toggling lets some displaced atoms drift back and partially self-heal. Fixes are geometric: widen the wire, split the current across more parallel wires or vias, or move to a thicker upper metal layer.

Also calledEMelectromigration wear-outcurrent-density limit电迁移失效電流密度上限

To build a quantum chip you have to draw shapes onto a wafer: the metal wires, the capacitor pads, and especially the tiny Josephson junctions that make a qubit work. Some of those features are only tens of nanometers wide, far finer than a human hair. Electron-beam lithography is how you draw them. Instead of shining light through a mask, you steer a focused beam of electrons, like the pen of an extremely precise plotter, across a thin coating of resist on the wafer, exposing exactly the lines you want, point by point.

It works because electrons can be focused to a much smaller spot than visible light, so the beam can write features a few nanometers across, with no mask needed. You first spin a layer of electron-sensitive resist onto the wafer. The beam scans the pattern, chemically changing the resist wherever it lands. A developer then washes away the exposed (or unexposed) parts, leaving a stencil. Metal is evaporated through that stencil, and dissolving the leftover resist lifts off the excess, leaving only your shapes behind. For Josephson junctions this is paired with clever resist tricks, like the Dolan-bridge method, to make the two thin films overlap with a sliver of oxide between them.

The honest catch is speed. Because the beam writes one point at a time in a serial scan, it is slow, fine for one research chip but far too slow and costly to mass-produce wafers. So in practice e-beam is used only where its resolution is truly needed, mainly the nanometer-scale junctions, while the large, coarse features, the wiring and pads, are patterned far faster with optical (photo) lithography. Combining the two is standard, and the slowness of e-beam writing is one real reason quantum chips are still made in small batches rather than churned out like ordinary processors.

Also callede-beam lithographyEBL电子束曝光電子束曝光

Electronic design automation (EDA) is the giant software toolkit chip designers use to turn an idea into a manufacturable layout. A modern chip packs billions of transistors onto a fingernail-sized die — no one could place or wire them by hand, any more than you could hand-draw every road in a continent-sized city. EDA is the army of programs that does the drawing, checking, and optimizing for you, so engineers can describe behavior and let the tools work out the physical reality.

The flow runs in stages. You write the design in a hardware description language like Verilog; logic synthesis compiles it into a netlist of real gates; place-and-route arranges those gates on the silicon and threads the wires between them; and simulation plus timing and physical verification confirm it behaves correctly, runs fast enough, and obeys the foundry's manufacturing rules before tape-out. A static timing analyzer, for instance, checks that every signal arrives within its clock period across millions of paths — something no spreadsheet could ever survive.

Also calledEDA toolsCAD电子设计自动化電子設計自動化

Electrotonic conduction is the quiet, passive way a voltage change spreads along a neuron's membrane — like ripples fading out across a pond. When a small electrical disturbance appears at one spot on the membrane (say, a gentle push of charge), that voltage doesn't just stay put: it leaks sideways through the neighboring stretch of membrane and tugs the voltage there a little too. But nothing actively pumps the signal forward. The membrane simply lets the change flow outward on its own, and as it travels, it shrinks. A few fractions of a millimeter away, the original bump in voltage is already much smaller; a bit farther still, it has all but vanished. Because the signal weakens steadily with distance, this kind of spread is called passive and decremental — decremental meaning it decays as it goes.

The reason it fades is that a neuron is a leaky cable, not a perfect wire. Its thin membrane holds charge like a tiny battery but also lets some of it dribble out, so current escapes through the walls as it tries to travel down the length. Engineers describe this with cable theory, and a single number — the length constant — captures how far the signal gets before it drops to about a third of its starting strength; fatter axons and well-insulated ones carry it farther. The key contrast is with the action potential, the neuron's all-or-nothing electrical spike, which regenerates itself at every step and so travels long distances without shrinking. Electrotonic conduction does no such regeneration: it is the fast, local, fading spread that, for example, carries small graded signals across a neuron's body and dendrites and helps decide whether an action potential will be triggered in the first place.

Also calledpassive spreadpassive current spreadelectrotonic spread电紧张扩布被动扩布電緊張擴布被動擴布

An element is a pure substance made of just one kind of atom — the simplest building blocks the everyday world comes in. Gold is nothing but gold atoms; oxygen is nothing but oxygen atoms. What makes one element different from another is a single number: how many protons sit in the center of each atom. Hydrogen has one proton, carbon has six, gold has seventy-nine, and that count is the atom's permanent name tag — change it and you've changed the element itself.

About 118 elements are known, and roughly the first 94 occur in nature; the rest are made for fleeting moments in laboratories. Together they are the alphabet of all matter: your body, the air, the oceans, and the stars are all just these few dozen letters spelled out in different combinations. Chemists line them up by proton count in the periodic table, where the pattern reveals which elements behave like cousins.

Here's the part people often miss: an element can't be broken down into anything simpler by ordinary chemistry. You can burn it, dissolve it, or react it, but each oxygen atom stays oxygen. (Only nuclear processes, which crack the atom's core, can turn one element into another.) Don't confuse an element with a compound like water — water can be split into hydrogen and oxygen, but those two are the end of the line.

Also calledchemical element化学元素化學元素

Embodied intelligence is the idea that being smart is not just something that happens inside a brain or a computer chip — it grows out of having a body that moves through and interacts with a real environment. Under this view, you cannot fully separate "thinking" from "having a body": the shape of a robot's hands, how its legs bend, what its sensors can feel, and the world it bumps into are all part of how it becomes capable. Intelligence, in other words, is something a body does in a place, not just a calculation running in isolation.

This matters for robotics because it suggests a good body can do some of the work that would otherwise fall on the software. A leg shaped to swing naturally can walk with far less computation than a leg that has to be commanded inch by inch; a soft, springy gripper can grasp an oddly shaped object without precisely calculating every contact point. The body's physical design and the environment quietly handle part of the problem, so the robot can be both simpler and more robust. Embodied intelligence also reflects how living things learn: a child does not master walking, balance, or reaching by reading instructions, but by trying, falling, feeling, and adjusting with its actual body — and many roboticists now build their machines to learn the same way.

Also calledembodied cognitionembodied AI具身认知具身認知

Embryonic stem cells are pluripotent cells taken from a very early embryo, before it has begun forming any particular tissue. At around five days old, an embryo is a hollow ball of cells called a blastocyst, and tucked inside it is a small cluster — the inner cell mass — that would normally go on to build the entire body. Embryonic stem cells are these inner-cell-mass cells, captured and grown in the lab while still blank and undecided.

What makes them scientifically prized is that they are pluripotent by nature and can be kept dividing almost indefinitely in culture without losing that flexibility. From a single starting batch, researchers can grow vast, renewable supplies of cells that retain the full potential to become any tissue type. For decades they were the gold standard against which all other pluripotent cells were measured, and the workhorse for understanding how a blank cell chooses its fate.

Their power, however, comes with serious controversy, because obtaining the inner cell mass from a blastocyst destroys that early embryo. People hold deeply different views about the moral status of an embryo, and that disagreement makes this research ethically contested and tightly regulated in many places. Partly to sidestep this dilemma, scientists later developed ways to make embryo-free pluripotent cells — but embryonic stem cells remain a key scientific reference point.

Also calledESC胚胎干细胞胚胎幹細胞

Emotion regulation is the set of mental tricks your brain uses to turn a feeling up or down once it has started — like having a dimmer switch on your emotions instead of just an on-off button. When something upsetting happens, a quick burst of fear, anger, or sadness fires off automatically. Emotion regulation is what lets you take a breath, reframe the situation, or simply wait, so that the feeling does not run the show. It is the difference between exploding at a rude email and choosing to reply calmly an hour later.

Much of this dimming and steering is done by the prefrontal cortex, the thinking region just behind your forehead, working on the brain's faster emotion machinery — especially the amygdala, a small almond-shaped alarm center that flags threats and triggers gut reactions. The prefrontal cortex sends calming, top-down signals that quiet the amygdala when a reaction is too strong or no longer useful, much like a manager talking an upset employee down. When you deliberately rethink a problem ("this isn't as bad as it seems"), shift your attention away, or hold back an impulse, these prefrontal circuits are doing the heavy lifting.

This matters because well-tuned emotion regulation lets people stay focused, make good choices under pressure, and get along with others, while weak or overloaded regulation is linked to anxiety, depression, and trouble controlling impulses. The skill also explains why emotions feel harder to manage when you are tired, stressed, or very young: the prefrontal cortex matures slowly into the mid-twenties and tires easily, so its grip on the emotional alarm system loosens exactly when life turns up the heat.

Also calledaffect regulationemotional control情绪调控情緒調控

Emotional memory is the brain's habit of recording events more deeply when they stir up strong feelings. Think of memory as a notebook where most days are jotted down in faint pencil and quickly fade, but a few moments — a car crash, a first kiss, a public humiliation — are written in bold, permanent ink. Years later you can recall those charged moments in vivid detail, including where you were and how it felt, while the thousands of ordinary, calm days in between have blurred away. The feeling is what makes the memory stick.

Behind this is a small, almond-shaped brain region called the amygdala, which acts as an emotional alarm. When something frightening, thrilling, or deeply moving happens, the amygdala lights up and releases a wave of arousal-related chemicals, such as stress hormones like adrenaline and cortisol. It then signals the nearby hippocampus, the structure that files away the facts of an event, telling it to flag this memory as important and to stamp it in more firmly. In effect, the amygdala turns up the recording volume, so emotionally charged experiences are stored more strongly and last far longer than neutral ones.

This system is usually helpful: remembering what once hurt or delighted us guides future choices and keeps us out of danger. But it can also misfire. When the emotion is overwhelming, as in a trauma, the memory can become too strong and intrusive, replaying uninvited and fueling conditions such as post-traumatic stress. So emotional memory is a double-edged tool — the same mechanism that helps us learn from powerful experiences can also chain us to painful ones.

Also calledemotionally enhanced memory情感记忆情感記憶

Empiricism is the idea that we learn about the world mainly by experiencing it — through seeing, hearing, touching, and testing — rather than by reasoning it out from pure thought. Picture a child who learns that fire is hot not by deducing it, but by getting too close once and never forgetting. For the empiricist, that is the model for all real knowledge: look, try, and let the evidence teach you.

Its boldest champions were the British thinkers John Locke and David Hume in the 1600s and 1700s. Locke famously imagined the newborn mind as a blank slate — in Latin, a tabula rasa — with no ideas written on it yet. Everything we come to know, he argued, gets written there by experience. Hume pushed harder still, insisting that even our deepest convictions about cause and effect are really just habits built from watching the same things happen over and over.

It is easy to misread empiricism as anti-thinking, but that misses the point. Empiricists prize reasoning — they simply insist that reasoning must start from what the senses deliver, not float free of it. This is the same instinct that powers modern science: a beautiful theory still has to face the evidence, and if the world says no, the theory loses.

Also calledtabula rasablank slate白板说

The encephalization quotient, or EQ, is a number that tells you whether an animal's brain is bigger or smaller than you would expect for a creature of its body size. Big animals tend to have big brains simply because a large body needs more nerves to run it, so raw brain weight alone is misleading. EQ fixes this by comparing an animal's actual brain size to the size a typical animal with the same body weight would have, then dividing the first by the second. An EQ of 1 means exactly average; above 1 means more brain than expected; below 1 means less.

Think of it like grading a city's bus fleet not by the raw number of buses, but by how many buses it has compared to other cities of the same population — that ratio reveals whether the city is unusually well served. By this measure humans score around 7, meaning our brains are roughly seven times larger than expected for an animal our size, which is the highest of any species. Dolphins, chimpanzees, and elephants also score well above 1. Researchers use EQ as a rough proxy for intelligence and cognitive capacity, because the brain tissue left over after running the body is the part free to handle thinking, learning, and complex behavior.

Also calledEQcephalization index脑形成商腦形成商

The end-effector is the business end of a robot — the part bolted onto the very tip of the arm that actually touches and changes the world. Everything else, all the joints and segments, exists mainly to carry this one piece to the right spot at the right angle. If the arm is a stand-in for your shoulder and elbow, the end-effector is the hand, and just as importantly it can be a specialized hand: a gripper, a suction cup, a welding torch, a paint sprayer, a screwdriver, a scalpel, or a camera.

What makes a robot useful is almost always the end-effector, because it is where the real task happens. The same arm becomes a different machine depending on what you attach: clip on a parallel-jaw gripper and it picks up boxes; swap in a vacuum pad and it lifts glass sheets; bolt on a welding tip and it joins steel. This swap-ability is a big part of why robot arms are so versatile — the expensive arm stays the same while a cheap, task-specific tool snaps on at the end.

Designing the end-effector is its own craft, because it has to match the job and the thing being handled. A gripper for delicate fruit needs a soft, gentle touch; one for heavy castings needs a crushing grip; one for tiny electronics needs steady precision. Engineers also worry about its weight, since every gram out at the tip is a gram the whole arm must lift and fling around, and about how it senses contact, so it can tell when it has actually grasped something rather than fumbling at empty air.

Also calledEOATrobot handtool末端工具末端装置末端裝置

An endpoint is one specific address an API exposes for one specific action. If an API is the whole menu, an endpoint is a single line on it: a URL like /users that you can hit to get something done. Send a request to that address, and the API does that one job and replies.

Each endpoint usually pairs a path with a verb that says what you want to do: GET /users means 'give me the list of users,' POST /users means 'create a new user,' GET /users/42 means 'show me user number 42.' Same address, different verb, different action — like asking the same desk to either show you a record or file a new one.

So an API is really just a tidy collection of endpoints, each one a small, named door into a specific capability. Learn an API and you're mostly learning its list of endpoints: what doors exist, and what each one does.

Also calledrouteurlapi routeresource path

Imagine the chip is a finished apartment building. The walls are up, the wiring is run, the inspector is on the way — and you discover one outlet is in the wrong spot. You do not demolish the building. You open one wall, move that one outlet, patch it, and call the inspector back. An engineering change order, or ECO, is that surgical late fix. After your netlist has been placed, the clock distributed, every wire routed, and the parasitics extracted and checked in static timing analysis (STA), a few paths often still miss timing, or a tiny design-rule (DRC) violation shows up. Redoing the whole place-and-route from scratch would scramble everything that already works and burn days. So instead you touch only the offending spot: swap a slow cell for a faster, larger one, drop in a buffer or two, or re-route a handful of nets, and leave the other million-plus cells exactly where they sit.

The trick is to keep the blast radius tiny. To fix a setup (too-slow) path you speed it up — upsize the weak gates or add buffers so a long wire is driven harder; to fix a hold (too-fast) path you deliberately add delay by inserting buffer or delay cells. The tool then does an incremental place-and-route, legalizing just those new or moved cells into the gaps and stitching only the affected nets, after which you re-run incremental STA to confirm the fix closed the violation without opening a new one nearby. Because each pass is small and local, ECOs are how teams converge on a clean design near the finish line, iterating through STA and DRC/LVS until everything is green and the layout is ready for tapeout.

There are two flavors. A timing or DRC ECO, the kind above, changes no logic — it only adjusts drive strength, buffering, or routing. A functional ECO changes what the circuit actually does, usually to patch a logic bug found late. The most prized version is the metal-only (or 'freeze-silicon') ECO: foundries are expensive partly because of mask sets, and the transistor base layers are the costly ones. If you scatter unused 'spare' cells across the floorplan during placement, a late logic fix can often be wired up purely by re-cutting the upper metal layers to hook those spares in — no new base-layer masks, far cheaper and faster than a full respin.

Also calledECOtiming ECOfunctional ECOmetal ECO时序 ECO功能 ECO金属层 ECO時序 ECO功能 ECO金屬層 ECO

An engram is the physical mark a memory leaves inside your brain — the actual change in living tissue that holds one particular thing you learned. When you remember your first day at a new school, that memory is not floating somewhere as a ghost; it is written into your brain as a real, lasting pattern, the way a footprint is pressed into wet sand and stays after the foot is gone. The word engram simply means that stored trace: the bit of you that was altered when the experience went in, and that can be read back out later when you recall it.

What gets changed is the connections between brain cells. Learning something fires up a specific scattered crew of nerve cells, and where those cells meet, their junctions grow stronger and easier to set off again — so the next time part of that crew lights up, it pulls the rest of the crew along with it, and the whole memory comes back. The cells holding one memory are called engram cells, and they are not packed in one tidy spot; they are sprinkled across different brain regions, more like a constellation of stars than a single dot, with each region storing a different slice of the same event. Scientists have even tagged these cells in mice and switched a memory back on by shining light on them, showing that an engram is a real, findable thing and not just an idea.

So an engram is the bridge between an experience and the act of remembering it: the durable, distributed physical record that lets a moment you lived through come back to mind days or years later.

Also calledmemory traceengram cells记忆印迹印迹细胞記憶印記印記細胞

Imagine you and a friend each get a sealed envelope and walk to opposite ends of the Earth. When you open yours, you instantly know something about what is in your friend's. Entanglement is a far stranger version of this: two or more qubits end up in a single shared state that you cannot fully describe by talking about each qubit on its own. The whole is real; the parts, taken separately, are not the full story. Measure one qubit, and the outcome statistics of its partners are immediately constrained, even if they are far apart.

More precisely, an entangled state is one that cannot be written as a separate state for each qubit multiplied together; the joint state is non-separable. The classic example is a Bell pair, where two qubits are perfectly correlated: if you measure one as 0 the other will read 0 too, and if one is 1 so is the other, yet before measurement neither qubit has a definite value of its own. This shared correlation is a genuine resource, and it is what powers protocols like quantum teleportation and helps drive the speedups in many quantum algorithms.

It is worth being honest about what entanglement is not. It does not let you send messages faster than light: the local outcomes you see look completely random, and only when you compare notes over an ordinary (slower-than-light) channel do the correlations become visible. Entanglement is also fragile, leaking away through noise and decoherence, which is one of the central engineering challenges of building real quantum computers today.

Also calledquantum entanglementBell pair量子纠缠量子糾纏贝尔对貝爾對

The enteric nervous system is a vast web of nerve cells woven into the wall of your gut, running from the lower part of the food pipe all the way through the stomach and intestines. It holds an astonishing number of neurons, on the order of hundreds of millions, more than the spinal cord, all packed into the lining of a single organ. Because it is so large and so capable of running on its own, scientists often nickname it the second brain.

Its day job is to manage digestion. It senses what is in the gut, stretches and chemistry alike, then coordinates the muscle squeezes that push food along, the release of digestive juices, and the flow of blood to the gut wall. The remarkable part is that it can do most of this without checking in with the brain in your head. Cut the main nerve connecting the two, and the gut keeps digesting, which is why it counts as semi-autonomous rather than fully independent.

It is not truly a separate brain, though. It is a specialized branch of the body's wider control wiring, and it stays in constant two-way conversation with the head brain through nerves and chemical messengers. This gut-brain dialogue is why nervousness can churn your stomach, and why what happens in the gut can quietly nudge your mood and appetite.

Also calledsecond braingut brainENS第二大脑第二大腦肠脑腸腦

Entropy is a way of counting how many different microscopic arrangements look the same from the outside. A messy desk and a tidy one are both "a desk," but there are vastly more ways to be messy than tidy — so the messy state has higher entropy simply because nature has more ways to land there.

This counting explains why the world drifts the way it does. Heat flows from hot to cold, milk swirls into coffee and never un-swirls, and a dropped glass shatters but never reassembles — not because some force forbids the reverse, but because the spread-out version corresponds to overwhelmingly more arrangements. Left alone, a system tends toward whichever state it can reach in the most ways, so total entropy tends to rise.

That one-way drift is also why time seems to have a direction. "Entropy = chaos" is a catchy but misleading shorthand: it is really about probability and the number of possibilities, not messiness for its own sake — and entropy can even drop in one spot (a freezer making ice) as long as it rises more somewhere else (the heat dumped into your kitchen).

Also calledsecond law of thermodynamicsdisorderarrow of time热力学第二定律热力学熵熱力學第二定律時間之箭S

An environment variable is a named value that lives outside your code, in the environment your program runs in — and your program reads it when it starts up. Think of it as a sticky note left for the program: PORT=3000, DATABASE_URL=…, API_KEY=… The code says 'whatever PORT is set to, listen there,' without ever hard-coding the number.

This is how the same code behaves differently in different places. On your laptop DATABASE_URL points at a tiny test database; in production it points at the real one — and not a single line of code changes. You just set the variables differently in each environment.

It's also where secrets belong. API keys and passwords go in environment variables precisely so they stay OUT of your source code — if a secret is baked into a file you commit, it ends up in your git history forever, visible to anyone with the repo. Keep them in the environment, and they never touch the codebase.

Also calledenv varenvironmentprocess.envgetenv$path

Enzymatic degradation is one of the ways the brain switches a chemical message off. When a neuron wants to talk to its neighbor, it squirts a tiny puff of signaling chemical, called a neurotransmitter, into the narrow gap between the two cells — a gap known as the synaptic cleft. The message lasts only as long as that chemical is floating in the gap. Enzymatic degradation ends the message by chopping the neurotransmitter into harmless leftover pieces, using special molecular scissors called enzymes. Think of it like spraying a quick burst of scent into a small room and then having a fan that instantly breaks the scent molecules apart, so the room is fresh again and ready for the next puff.

This rapid cleanup matters because a signal that never turns off is as useless as a doorbell that won't stop ringing — the receiving neuron could never tell one message from the next. A famous example is the enzyme acetylcholinesterase, which sits right in the synaptic cleft and snips apart the neurotransmitter acetylcholine in well under a thousandth of a second, letting your muscles relax between commands. Because this process is so quick and essential, it is also a common target for drugs and poisons: nerve agents and some insecticides work by jamming these enzymes, so the neurotransmitter piles up and the signal never stops, causing muscles to seize. Enzymatic degradation is one of two main ways a cleft is cleared, the other being reuptake, in which the chemical is simply vacuumed back into the cell that released it.

Also calledenzymatic breakdownneurotransmitter degradation酶促降解神经递质酶解神經遞質酶解

An enzyme is a tiny molecular helper inside living things — almost always a protein — that makes a specific chemical reaction happen millions of times faster, then walks away unchanged to do it again. Think of it as a matchmaker that brings the right molecules together so a reaction that would normally crawl can finish in a blink.

It works by lowering the "energy barrier" that a reaction has to climb. Each enzyme is shaped to fit one particular job, like a lock that only certain keys fit, so cells use thousands of different enzymes to run thousands of different reactions.

You meet enzymes every day: the ones in your saliva and gut break food into pieces small enough to absorb. Because an enzyme isn't consumed, a single one can do its job over and over, which is why a little goes a long way.

Also calledcatalystbiological catalyst酵素生物催化剂生物催化劑
See alsoprotein

Deep inside the brain there are hollow, fluid-filled chambers called ventricles, and the spinal cord has a thin channel running down its centre. Ependymal cells are the tidy single layer of cells that line the inside walls of all these spaces, like the smooth tiling around the edge of a swimming pool. They are one of the brain's several kinds of glia, the supporting cells that look after neurons rather than firing electrical signals themselves. Each ependymal cell has a roughly cube-like shape, and packed across the surface that faces the fluid are hundreds of tiny hair-like projections called cilia.

Those cilia are not just decoration: they beat back and forth in coordinated waves, like rows of swimmers all rowing in time, and this gentle stroking keeps the cerebrospinal fluid moving steadily through the chambers instead of going stagnant. The same lining also helps make the fluid in the first place. In certain spots the ependymal layer folds into tufts of cells draped over tiny blood vessels, called the choroid plexus, and it is here that fresh cerebrospinal fluid is filtered out of the blood. Across the rest of the lining, ependymal cells act as a soft border between the watery chambers and the solid brain tissue, letting some substances pass while holding others back.

Because they sit right at the meeting point of fluid and tissue, ependymal cells matter for keeping the brain clean and well cushioned, and damage to this lining or to the cilia can disturb how the fluid flows and is renewed.

Also calledependymocyte室管膜细胞层室管膜細胞層ependyma cell

Epidemiology is detective work for diseases — not for one sick patient, but for whole populations. Instead of asking "what's wrong with this person?", it asks "who is getting sick, where, when, and why?", then hunts for the hidden pattern that connects the cases. Think of it as standing back from the crowd until the shape of an outbreak suddenly snaps into focus.

The founding story is a map. In 1854, cholera was killing people across a London neighborhood, and almost everyone blamed bad air. A doctor named John Snow plotted every death on a street map and saw them cluster, thick as flies, around one public water pump on Broad Street. He persuaded officials to remove the pump's handle — but by then the worst was already over, the outbreak fading and many residents fled, so the removal cannot be what stopped the dying. What mattered was the map: it had shown, beyond reasonable doubt, that the water was the killer. With it, the modern science of tracing disease was born.

A common misunderstanding: epidemiology doesn't cure individuals, and it doesn't need to name the exact germ to act. Snow pinned the blame on the Broad Street water decades before the bacterium behind cholera was widely accepted and understood — Robert Koch isolated it in the 1880s. By finding the pattern — the shared water, the common exposure — epidemiologists can move against a disease first, and let the laboratory confirm the culprit later.

Also calledpublic health detective workdisease surveillance流行病學公共衛生流行病學

Epilepsy is a long-term brain condition in which a person has seizures again and again. A seizure is a sudden burst of disorderly electrical activity in the brain — picture a stadium crowd that normally cheers in scattered, independent voices, but for a few seconds everyone shouts the exact same word at the exact same instant. That runaway synchrony is what a seizure looks like inside the brain: large groups of neurons firing together, too strongly and too much in step. Having a single seizure does not mean someone has epilepsy; the diagnosis is about the brain's lasting tendency to produce them repeatedly.

Normally the brain keeps a careful balance between signals that excite neurons (telling them to fire) and signals that calm them down (telling them to stay quiet). In epilepsy that balance tips toward over-excitement in some region, so a small flicker of activity can snowball and recruit its neighbors instead of fizzling out. What a seizure feels like depends on which part of the brain is swept up: it might be a brief blank stare, a strange smell or rising feeling, jerking of one limb, or the whole body stiffening and shaking with loss of consciousness. The causes are varied — genetics, a past head injury, a stroke, a brain infection, or an unknown reason — and many people gain good control with medicines that dampen the brain's excitability, while others are helped by special diets, devices, or surgery.

Also calledseizure disorder癫痫症羊癫疯癲癇症羊癲瘋

Episodic memory is your memory for the particular events you have personally lived through — not just the bare facts, but the whole scene: what happened, where you were, who was there, and roughly when. Think of your breakfast this morning, your first day at a new job, or the moment you heard a piece of surprising news. Each is a little mental movie you can replay, tagged with a specific time and place. This is what lets you mentally travel back and re-experience your own past rather than merely knowing about it.

It works by binding many separate details — sights, sounds, feelings, and the surrounding context — into a single linked package, a job the brain handles largely in a seahorse-shaped structure called the hippocampus. Later, a hint from any one piece (a smell, a song, a face) can tug the whole memory back into mind. Episodic memory contrasts with semantic memory, which stores general facts stripped of personal context: knowing that Paris is the capital of France is semantic, while remembering the afternoon you stood in front of the Eiffel Tower is episodic. Because it is bound to specific moments, this kind of memory is also the most fragile, fading or distorting more easily than well-worn facts.

Also calledautobiographical memoryevent memory自传体记忆自傳式記憶事件记忆事件記憶

Epistemology is the branch of philosophy that asks two stubborn questions: what is knowledge, and how do we know we really have it? Imagine you say "I know it will rain tomorrow." Even if it does rain, did you actually know it — or did you just have a hunch that happened to come true? Epistemology is the study of the difference between merely believing something and genuinely knowing it.

For a long time the favorite answer was that knowledge is justified true belief: you know something when you believe it, it's true, and you have good reasons for believing it. A lucky guess fails the test because it has no real backing; superstition fails because its reasons don't hold up. This matters far beyond the seminar room — courts weigh evidence, scientists demand experiments, and doctors ask for tests, all because we sense that a claim needs proper grounds before it counts as knowledge.

A common mistake is to treat epistemology as asking "is this true?" — but that's not quite it. It asks the deeper question of how we could ever be entitled to claim we know, and where the line sits between solid knowledge, reasonable belief, and pure guesswork. It's less about collecting facts than about examining the foundations they're supposed to rest on.

Also calledtheory of knowledgeepistemics知识论知識論

ERC-20 is the token standard on Ethereum for interchangeable tokens, units that are all identical and freely swappable, the way one dollar bill is worth exactly the same as any other. Most of the coins people trade that are not the network's own native coin, including many stablecoins and project tokens, follow this standard. It exists to answer a simple question: if anyone can create a token, how can every wallet and exchange handle a brand-new one without custom work? ERC-20 is the shared rulebook that makes that possible.

The standard defines a short, fixed list of functions a token contract must provide. These let anyone check the total supply, check a given address's balance, transfer tokens from your own account, and, importantly, approve another contract to spend a set amount on your behalf, then have it pull those tokens when needed. That last 'approve and pull' pattern is what lets you authorize an exchange or lending app to move your tokens for a swap without handing over full control of your wallet. Because every ERC-20 token answers to the same function names, software can treat them all the same way.

ERC-20 matters because it became the common currency of the Ethereum ecosystem and the template others copied. Its predictable interface is why a single wallet can hold a long list of different tokens, why a decentralized exchange can support new ones instantly, and why tokens plug so smoothly into lending, trading, and payment apps. It is a foundational example of how a simple shared standard can unlock an entire economy of interoperable assets.

Also calledERC20ERC-20 标准ERC-20 標準

ERC-721 is the token standard on Ethereum for unique tokens, items that are each one-of-a-kind rather than interchangeable. If ERC-20 tokens are like identical dollar bills, ERC-721 tokens are like numbered tickets, deeds, or trading cards: each one is distinct and not simply swappable for another. These are the tokens behind non-fungible tokens (NFTs), used to represent a specific digital artwork, a collectible, an in-game item, or a claim to a particular asset. The standard exists so that all these unique items can be owned, shown, and traded through the same shared tools.

Where an ERC-20 contract just tracks how many tokens each address holds, an ERC-721 contract gives every token its own identifying number and records exactly which address owns that specific one. The standard defines functions to look up the owner of a given token, to transfer that particular token to someone else, and to authorize another party to move it for you. Each token usually points to extra details, such as an image and description, stored elsewhere, so a marketplace can display the right picture. Ownership of that exact item, however, is settled on the chain itself.

ERC-721 matters because it gave digital uniqueness a common, portable form. Because so many platforms adopted it, an NFT created in one app can be viewed, displayed, and traded in countless others, and ownership transfers in the open rather than inside one company's private database. It turned the idea of a verifiable, transferable one-of-a-kind digital item into a shared standard that the whole ecosystem can build on.

Also calledERC721NFT 标准NFT 標準

When a patch of brain is idling, its neurons tend to fire together in a slow, lazy rhythm — like a crowd clapping in unison. When that region gets to work, the synchrony breaks up: the cells start doing their own separate jobs, and the power of the idling rhythm drops. That drop is event-related desynchronization, or ERD.

Afterward, once the work is done, the region settles back down and the rhythm rebounds, often overshooting to become even stronger than before. That rebound is event-related synchronization, or ERS. So ERD marks "busy" and ERS marks "resting again" — a fall-then-rise pattern in band power around an event.

This is exactly how motor imagery reveals itself. Imagining a hand movement causes ERD in the mu and beta bands over the controlling side of the sensorimotor cortex, and releasing the imagery brings an ERS rebound — giving a BCI two clear, opposite signs to read.

Also calledERDERSevent-related desynchronization

Ethereum is a global, public blockchain that works like a shared computer no single company owns. Bitcoin showed the world that a network of strangers could agree on who owns what without a bank in the middle; Ethereum took the next step and made that shared ledger programmable. Instead of only recording 'who paid whom,' it can also run small pieces of code, so the network can enforce agreements automatically. The problem it solves is trust in software: how do you let people all over the world use the same program and be confident no one secretly changed the rules or the results?

Under the hood, Ethereum is a network of thousands of computers (nodes) that all keep the same copy of an ever-growing record and run the same code in lockstep. Developers upload programs called smart contracts; once deployed, anyone can call them, and every node re-runs the call and checks the outcome, so they all reach the same answer. To use the network you pay a small fee in its native currency, ether (ETH), which both rewards the operators and stops people from clogging the system with endless free computation. Because thousands of independent machines must agree, the result is hard for any one party to fake or censor.

Ethereum matters because it turned a ledger into a foundation for applications. On top of it people have built currencies that hold a steady value, marketplaces that run without a middleman, digital collectibles, and organizations governed by code rather than a head office. It is the most widely used platform for this kind of programmable money and software, and many newer networks copy its design so that programs can move between them. In short, Ethereum is less a single product than a public, always-on settlement layer that anyone can build on.

Also calledETH以太坊

The Ethereum Virtual Machine, or EVM, is the imaginary computer inside Ethereum that actually runs smart contracts. No single physical machine is 'the EVM'; instead, every node in the network simulates the very same computer and runs each contract through it step by step. Think of it as a sealed, standardized engine that thousands of operators each build to identical specifications, so that feeding the same instructions and inputs into any of them always produces the same result. The problem it solves is agreement: how can a worldwide network be sure they all computed the exact same outcome?

Smart contracts are written in human-friendly languages and then compiled down to a simple list of tiny instructions called bytecode that the EVM understands, much like how a recipe is broken into basic kitchen steps. The EVM works through these instructions one at a time, reading and updating the blockchain's stored data as it goes, and it is deliberately deterministic: given the same starting point it cannot wander off and give different answers on different machines. Each instruction also has a set cost, measured in gas, which the caller pays, and a contract that runs out of its gas budget is stopped and rolled back. This keeps any single program from running forever and freezing the network.

The EVM matters because it is the shared standard that makes contracts portable and predictable. Because so many people understood and adopted it, other blockchains built their own EVM-compatible engines, so a contract written once can often run on many networks with little change. That common foundation is a big reason the smart-contract ecosystem grew so quickly: developers learn one machine and one toolset, and their work travels widely.

Also calledEVM以太坊虚拟机以太坊虛擬機

Ethics is the careful study of right and wrong — of how a person ought to live and act. It asks the question that hovers behind every hard choice: not "what *can* I do?" but "what *should* I do?" Picture standing at a friend's door, knowing a painful truth: do you tell them, or spare their feelings? Ethics is the work of thinking that moment through, instead of just reacting.

Why does it matter? Because we make moral calls all day — to keep a promise, to share or to keep, to speak up or stay silent — and "because I felt like it" is a thin reason for any of them. Ethics offers rival maps for that terrain. One camp judges an act by its *results* (does it bring the most good for the most people?); another by *duties* and rules (some things, like lying, are simply off-limits); another by *character* (what would a kind, honest, courageous person do?). Each gives a different answer to the same dilemma — and that disagreement is the heart of the subject.

A common mix-up: ethics is not just "my personal feelings" or "whatever my culture happens to approve of." Those describe what people *do* value; ethics asks what's *worth* valuing, and why. Its job is not to hand you a rulebook to obey, but to give you reasons you can defend — and challenge — out loud.

Also calledmoral philosophymorality道德哲学道德哲學道德学

Etymology is the life story of a word — where it came from, and how its shape and meaning have drifted over the centuries. Just as your face carries traces of your grandparents, almost every word you say is a worn-down descendant of older words, often in languages no one speaks anymore. To trace a word's etymology is to follow that family tree backward in time.

Words rarely sit still. "Nice" once meant foolish or ignorant; "silly" once meant blessed and happy. "Goodbye" is a squeezed-down "God be with you," said so many millions of times that the prayer inside it wore smooth and vanished. Knowing a word's history lets you feel these hidden currents under everyday speech.

One warning: a word's origin is not its "true" meaning. People sometimes argue that "decimate" must mean "destroy one in ten" because that's what it meant in ancient Rome — but words are defined by how we use them now, not by where they started. Etymology explains the journey; it doesn't lock in the destination.

Also calledword origin词源学語源

Euler angles are a way to describe which way an object is pointing using just three numbers. Instead of giving the full math of an orientation all at once, you build it up from three simple spins, one after another, each around one axis. The most common version in robotics is roll, pitch, and yaw. Picture an airplane: roll is the wing-dipping twist about the direction of travel, pitch is the nose tilting up or down, and yaw is the nose swinging left or right. Apply those three turns in order and you can aim the plane any direction you like.

The catch is that order matters and you must agree on it. Rolling first and then yawing leaves you facing somewhere different than yawing first and then rolling, because each spin happens around the axes left by the previous spins. So Euler angles only mean something once everyone fixes a convention, such as 'yaw, then pitch, then roll.' People love Euler angles because three numbers are easy to read, type, and show on a dashboard, and each one matches an intuition a human already has. But they hide a famous trap: at certain orientations two of the three spins line up and start doing the same job, a failure called gimbal lock, which is why robots often convert them to a rotation matrix or a quaternion for the actual computing.

Also calledroll-pitch-yawRPY横滚-俯仰-偏航橫滾-俯仰-偏航

Every chip is printed with light, and light has a hard limit: it cannot draw a feature much finer than its own wavelength. For two decades the leading edge ran on 193nm ultraviolet from argon-fluoride lasers, and to print features far smaller than that wavelength, fabs leaned on multi-patterning — splitting one dense layer across three or four separate exposures and alignments, which is slow, costly, and error-prone. EUV lithography answers that limit head-on by switching to a far shorter wavelength: 13.5nm extreme ultraviolet, roughly fourteen times shorter than 193nm. With light that fine, a single exposure can print what once took a stack of patterning tricks, collapsing steps and reclaiming yield.

The catch is that 13.5nm light is absorbed by almost everything it touches — glass, air, ordinary mirrors — so you cannot make it the easy way or steer it the easy way. The light source is a marvel of brute force: tiny tin droplets are fired across a vacuum and zapped twice by a high-power CO2 laser, vaporizing each into a plasma that glows at exactly 13.5nm, tens of thousands of times a second. Because no lens is transparent to EUV, the entire optical path is mirrors — exquisitely smooth multilayer reflectors — and even the photomask is a mirror that the light bounces off rather than shines through. The whole machine runs in vacuum, weighs as much as a couple of buses, and costs well over $150 million, which is why only a handful of fabs on Earth run the most advanced nodes.

The newest step, High-NA EUV, widens the optics' numerical aperture from 0.33 to 0.55 to print even finer lines in one shot, pushing the same idea further down the roadmap. But it is worth keeping the node names honest: '3nm' and '5nm' are marketing labels, not the wavelength or any single dimension on the die. EUV is what makes those advanced nodes manufacturable at sane step counts — it is the patterning engine underneath the leading edge, not the meaning of the number on the box.

Also calledEUVextreme ultraviolet lithography13.5nm lithography极紫外光刻極紫外光刻

An event-related potential is a small, stereotyped ripple in the EEG that is locked in time to a specific event — a sound, a flash, a decision. Its shape is consistent enough that scientists give its peaks names by their direction and timing, like N100 or P300 ("N" for negative, "P" for positive, the number for the rough delay in milliseconds).

The catch is that this response is tiny — far smaller than the brain's constant background chatter, so a single trial is buried in noise. The trick is repetition: present the same kind of event many times and average all the snippets together. The random noise cancels itself out, while the true, time-locked response survives and stands out clearly.

ERPs are the backbone of several BCI paradigms, because each one is a reliable little stamp the brain leaves whenever a meaningful event occurs. The P300 used in spellers is the most famous example of an ERP put to work for control.

Also calledERPevoked potential

Evo-devo of the brain is the study of how the genes and step-by-step processes that build a brain during embryonic development become the levers that evolution pulls to make brains differ between species. The core idea is that no animal is born with an adult brain; each one is grown, cell by cell, following genetic instructions. So when a species evolves a bigger, smaller, or differently shaped brain, what actually changed was the building process — when certain genes switch on, how strongly, in which cells, and for how long.

Much of the surprise here is how little of the genetic toolkit is truly new. Many of the same developmental genes that organize a brain into front, back, and side regions are shared across worms, flies, fish, mice, and humans, often working in the same way. Evolution tends not to invent fresh genes but to re-tune the ones already present: speeding up or delaying a developmental step (called heterochrony), expanding where a gene is active, or rewiring the network of genes that turn one another on and off. Small edits to these instructions can ripple outward into large, coordinated changes in the finished brain.

This is why studying embryos illuminates deep history. By comparing how the same developmental program runs in different animals, researchers can see, for example, that the dramatic expansion of the human cortex traces largely to changes that keep the cells lining the early brain dividing longer before they become neurons. Evo-devo thus reframes a grand question — how brains as different as a fish's and a human's arose — as a concrete, testable question about which developmental genes and timings were nudged, and to what effect.

Also calledneurodevelopmental evolutiondevelopmental basis of brain evolution神经发育演化神經發育演化

Evolution is the way living things slowly change over many generations. The traits that get passed down through families — things like color, size, or how a body works — shift little by little as time goes on, so that descendants can end up quite different from their distant ancestors.

The key thing to grasp: evolution happens to whole groups, not to single creatures. One rabbit doesn't evolve during its life; rather, over thousands of generations the rabbit population as a whole comes to look and behave differently. Natural selection — where traits that help survival and reproduction become more common — is one driver, but not the only one. Chance also plays a role (some genes spread or vanish by luck), and brand-new variations arise through mutation.

Evolution also tells us that all living things — bacteria, oak trees, whales, you — are distant relatives, branching from shared ancestors over billions of years. And when scientists call it a "theory," they don't mean a hunch. In science, a theory is a well-tested explanation backed by mountains of evidence, much like the theory of gravity.

Also calledDarwinian evolutionbiological evolutiondescent with modificationtheory of evolution进化论演化论天择物种演化

The neocortex is the thin, six-layered outer sheet of the mammalian brain that handles much of perception, voluntary movement, and complex thought. Its evolution is the story of how this distinctive sheet arose only in mammals, growing out of a much simpler patch of forebrain that all backboned animals share. In a reptile or a bird, the matching region is a far smaller, mostly one-to-three-layered structure, so the orderly stack of six layers is the signature feature that sets the mammalian neocortex apart.

All vertebrate brains are built from a shared early blueprint, and the front part includes a roof called the pallium. The neocortex grew out of one section of that roof, the dorsal pallium, in the earliest mammals over two hundred million years ago. Birds and reptiles took the same starting material in a different direction: rather than layered sheets, they built dense clusters of cells that can still support remarkable intelligence. This is why a clever crow has no neocortex at all, yet rivals an ape on some tasks — evolution found more than one way to make a smart forebrain from the same ancestral roof.

Once the basic layered design existed, it expanded enormously along certain lineages, above all the primates leading to humans, where the sheet ballooned in area and folded to fit inside the skull. The growth came mostly from adding more of the same repeating columns of cells rather than inventing new components, so a mouse cortex and a human cortex look like small and large versions of one shared plan. Understanding this origin matters because the neocortex is the seat of language, planning, and abstract reasoning, and tracing its history shows that these abilities were assembled by modifying old structures, not by bolting on a wholly new brain.

Also calledneocortex originisocortex evolution新皮层起源新皮層起源

The evolutionary origin of the neuron is the story of how the first nerve cells came to be: special cells that can carry fast electrical signals and pass messages to their neighbors. Long before any animal had a brain, even simple living things could already react to their surroundings. The neuron is the result of taking that basic ability and turning it into a dedicated, full-time signaling cell with long thin extensions for sending and receiving messages.

The raw ingredients are surprisingly old. Many of the molecular parts a neuron uses, such as the tiny pores in the cell membrane that let charged particles flow in and out (ion channels) and the chemicals that one cell releases to talk to another (neurotransmitters), already existed in single-celled life and in animals with no nervous system at all, like sponges. So a neuron is less a brand-new invention than an old toolkit reassembled into a cell whose whole job is to be excitable, to signal, and to connect into circuits.

Scientists still debate how this happened. One view, the single-origin hypothesis, says neurons arose just once in a shared ancestor, and every nervous system we see today descends from that one event. A rival view, the multiple-origins hypothesis, says nervous systems may have evolved more than once independently, most strikingly in comb jellies (ctenophores), whose neurons use a noticeably different molecular recipe. Whether the neuron was invented once or several times is one of the liveliest open questions in evolutionary neuroscience.

Also calledorigin of nerve cellsneuronal origins神经细胞的起源神經細胞的起源

Ex vivo therapy means taking a patient's cells out of the body, fixing or upgrading them in a lab dish, and then returning the corrected cells. The Latin ex vivo simply means outside the living body. It is like sending your car to the garage rather than fixing it in the driveway: out in the workshop, the mechanic has full light, tools, and control before the car is driven home.

Doctors collect the target cells — often blood or bone-marrow cells — then in the lab they edit a gene, add a new one, or otherwise engineer the cells. Because the work happens in a dish, scientists can check that the change worked, grow only the successfully edited cells, and discard the rest before anything goes back into the patient. The treated cells are then infused and take up residence.

Working outside the body gives precision and a safety checkpoint, which is why CAR-T and several blood-cell gene therapies are done this way. The trade-off is that it is laborious and slow: each batch is custom-made for one person, the cells must survive the round trip, and only cell types that can be removed and re-implanted are eligible.

Also called体外疗法體外療法ex vivo gene therapy

Excitation-inhibition balance, often shortened to E/I balance, is the close matching between two opposing forces inside a brain circuit: excitatory signals that push neurons toward firing, and inhibitory signals that hold them back. Picture a car driven with one foot on the gas and one on the brake at the same time. As long as the two pedals are pressed in step with each other, the car moves smoothly; if either one suddenly overpowers the other, the ride lurches. In a healthy circuit, every wave of excitation is quickly answered by a comparable wave of inhibition, so activity stays controlled rather than running away.

This balance matters because excitation on its own is dangerously unstable. Neurons excite each other in loops, so without a counterweight a small spark of activity can snowball until the whole network fires together, which is essentially what happens in a seizure. Inhibition, supplied mainly by specialized cells that release the calming messenger GABA, keeps that runaway in check and sharpens timing, deciding precisely which neurons fire and when. The tug-of-war between the two also helps generate the brain's rhythmic oscillations and keeps each neuron working in a responsive middle range. When the balance tips too far toward excitation or inhibition, the consequences show up as epilepsy and have been linked to conditions such as autism and schizophrenia.

Also calledE/I balanceexcitatory-inhibitory balance兴奋-抑制平衡興奮-抑制平衡E/I 平衡

An excitatory postsynaptic potential, or EPSP, is a small nudge of electrical change in a receiving neuron that pushes it a little closer to firing off its own signal. Picture a neuron as resting in a slightly negative electrical mood, like a quiet battery waiting. When the cell before it releases a chemical messenger across the tiny gap between them (the synapse), that messenger can open little doorways on the receiving cell that let positively charged particles flow in. This brief inflow makes the inside of the cell a touch less negative — a shift called depolarization — and that nudge toward zero is the EPSP. The word excitatory simply means it encourages, rather than discourages, the neuron from firing.

On its own, a single EPSP is usually too gentle to make anything happen — it is one small push, and it quickly fades. The magic is that a neuron listens to thousands of these inputs at once and adds them up. Each neuron has a tipping point called the firing threshold, and if enough EPSPs arrive close together in time or in space, their combined push can lift the cell past that threshold and trigger a full electrical spike (an action potential) that races down to the next cell. So EPSPs are like many hands giving a stuck door a series of shoves: any one shove does little, but enough of them at the right moment swing the door open. They also work against opposing inputs — inhibitory signals that push the cell the other way — and the constant tug-of-war between excitation and inhibition is how neurons decide, moment by moment, whether to speak up or stay silent.

Also calledEPSPdepolarizing postsynaptic potential去极化突触后电位去極化突觸後電位

Excitotoxicity is what happens when neurons (the brain's wire-like signaling cells) are stimulated so hard, for so long, that they end up killing themselves. The trigger is usually too much glutamate, the brain's main "go" signal — the chemical one nerve cell uses to tell the next one to fire. A normal pulse of glutamate is a quick, useful nudge. But a flood of it is like jamming a finger down on the accelerator and never letting go: the receiving cell is whipped into a frenzy of activity it cannot switch off, and that relentless overexcitement, rather than the glutamate itself, is what does the damage. The word literally packs in the idea — to excite to the point of poisoning.

Here is the mechanism. When glutamate lands on certain docking sites called receptors — especially one named the NMDA receptor — it opens gates in the cell membrane that let calcium, a charged particle the cell normally keeps scarce inside, pour in. A little calcium is a vital messenger; a torrent is a wrecking signal. The flood of calcium switches on enzymes that chop up the cell's own proteins, fats, and DNA, and it overwhelms the cell's tiny power plants, the mitochondria, until they fail and the energy supply collapses. Starved of power and torn apart from within, the neuron dies. Because dying cells spill their own glutamate, the damage can spread outward to neighbors, turning a small injury into a widening patch of loss.

Excitotoxicity is a major way neurons are lost in sudden brain emergencies like stroke and head trauma, where the surrounding zone of barely surviving cells is finished off by this glutamate flood. It is also suspected of contributing, more slowly, to long-running diseases such as ALS, Huntington's, and Alzheimer's. This is why some treatments aim to dial glutamate signaling down — for example, the Alzheimer's drug memantine gently blocks the NMDA receptor — trying to quiet the overexcitement without silencing the normal signaling the brain still needs.

Also calledglutamate toxicityexcitotoxic injury谷氨酸毒性麩胺酸毒性興奮毒性

Executive function is the set of mental skills your brain uses to manage itself and stay on track toward a goal. Think of it as the air-traffic controller of the mind: while many planes (thoughts, urges, and habits) are trying to take off and land at once, this controller decides which one goes when, holds the others back, and keeps the whole airport from descending into chaos. It is not a single thing you do, but the behind-the-scenes steering that makes everything else you do organized and purposeful.

Scientists usually break it into three core abilities. The first is holding information in mind and working with it for a few seconds, so you can carry a phone number from the page to the keypad. The second is inhibition, the power to stop an automatic or tempting response, like not blurting out an answer or not reaching for the cookie. The third is mental flexibility, the knack of switching between tasks or rules and seeing a problem from a fresh angle when your first approach fails. Together these let you plan a series of steps, resist distractions, and adjust on the fly instead of running on autopilot.

These control processes lean heavily on the prefrontal cortex, the front region of the brain just behind the forehead, working in concert with deeper structures. Because that region is one of the last to fully mature, executive function keeps strengthening from childhood into the mid-twenties, and it can weaken with fatigue, stress, aging, or injury, which is why a tired or frazzled person finds it so much harder to plan, focus, and hold back.

Also calledcognitive controlexecutive control认知控制認知控制

An exit code is the single number a program hands back when it finishes — its way of saying 'this went fine' or 'something broke'. By a near-universal convention, 0 means success and anything else (1, 2, 127…) means some kind of failure. It's the program's last word before it leaves.

You rarely see it, because it's not printed — it's tucked away for the next program to read. In a shell you can peek at it with $? right after a command, or just chain commands together: 'build && deploy' only runs deploy if build exited 0, because && means 'and only if that succeeded'.

This quiet number is the whole reason automation works. When CI says your build 'failed', what really happened is a step finished with a non-zero exit code, and the pipeline noticed. Computers can't read your test output, but they can always read a 0.

Also calledexit statusreturn codestatus codeerrorlevel$?

These are two ways that experience reshapes the brain — two different jobs that brain rewiring does. Plasticity just means the brain's ability to change its own wiring in response to what happens to it. Experience-expectant plasticity is the brain getting ready for inputs that almost every member of the species will reliably get, like light hitting the eyes, sounds reaching the ears, or being held and touched. The brain practically expects these to arrive on schedule and builds its basic machinery around them. Experience-dependent plasticity, by contrast, is the brain tuning itself to the particular life one individual happens to lead — the specific language you grow up hearing, the faces of your family, the route to your home, the skill of playing a violin.

A useful way to picture the difference: experience-expectant plasticity is like a garden that has planted far more seedlings than it needs and is waiting for ordinary sunlight and rain to decide which ones survive. During special early windows, called critical or sensitive periods, the brain over-produces connections and then keeps the ones that get the expected stimulation while trimming away the rest. If that common input is missing during the window — say an eye is kept covered in infancy — the wiring meant for it can be lost, sometimes permanently. Experience-dependent plasticity is more like a path worn into grass by walking: it has no fixed deadline, it depends entirely on what you personally do, and it keeps working across the whole lifespan, which is exactly why an adult can still learn a new language or a new instrument, just more slowly and with more effort.

The distinction matters because it explains why timing is everything for some abilities and barely matters for others. Skills that rest on experience-expectant wiring — like normal vision or the sound system of a first language — need their ordinary inputs early, or they may never develop fully, which is why early screening for hearing and sight is so important. Skills built by experience-dependent plasticity stay open to change, giving the brain a lifelong capacity to keep learning, recover after injury, and adapt to a world no two people experience the same way.

Also calledexperience-expectant plasticityexperience-dependent plasticity经验预期性可塑性经验依赖性可塑性經驗預期性可塑性經驗依賴性可塑性

Explainability is a robot's ability to make its choices understandable to the people around it — to show, in terms a human can follow, why it did what it did. Trust is the result you hope this earns: people relying on the robot the right amount, neither blindly nor fearfully. The two belong together because trust without understanding is just a gamble. If a robot stops dead in a hallway and you have no idea why, you cannot tell whether it is being careful or is broken — so you either over-trust it or stop using it altogether.

The need grows sharper as robots learn from data rather than follow hand-written rules. A learned model can be a black box: it gives an output without a tidy reason a person can read. Explainable robotics tries to crack that box open with plain signals — a self-driving car that says "slowing for the pedestrian on the right," a warehouse robot that highlights the box it is about to grab, an arm that shows the path it plans to swing before it moves. The explanation need not expose every number inside; it needs to give a human enough to predict, check, and, when necessary, override the machine.

Good explanations build calibrated trust — trust that matches how reliable the robot actually is. That is the real goal, because both extremes are dangerous: too little trust and a helpful robot goes unused; too much and a person follows a confident-looking machine straight into a mistake. Honest robots therefore signal not just their decisions but their uncertainty, saying in effect "I am fairly sure" or "I am guessing here," so a person knows exactly when to lean in and take a closer look.

Also calledexplainable robotics可解释机器人可解釋機器人XAI for robots

The exploration–exploitation tradeoff is the basic dilemma a learning robot faces every time it has to choose an action: should it stick with the move it already knows works well (exploit), or try something new and uncertain in the hope it works even better (explore)? Imagine you just moved to a new town and found one decent coffee shop. Every morning you can return to that safe, known cup, or you can risk a stranger café that might be wonderful or might be terrible. Go to the same place forever and you will never discover the great spot two streets over; gamble on a new place every single day and you will waste a lot of mornings on bad coffee. A robot learning a skill lives inside exactly this choice, over and over.

It matters because a robot can only learn from what it actually tries. If a robotic arm always repeats the one grasp that has worked so far, it collects no information about grasps it has never attempted, so it may stay forever stuck on a mediocre habit while a far better motion sits just out of view. But if it explores wildly all the time, it keeps throwing away the good things it has already learned and rarely cashes in on them. Good learning needs both: enough exploration to find what is possible, and enough exploitation to actually benefit from what it has found.

In practice, engineers tune this balance deliberately. A common pattern is to explore a lot early in training, when the robot knows almost nothing, and then gradually shift toward exploiting as it grows confident — much like trying many cafés in your first weeks in town, then settling into favorites once you know the place. The right amount of exploration depends on how costly mistakes are: a simulated robot can afford reckless experiments that a real, fragile, expensive machine cannot.

Also calledexplore vs exploit探索与利用的权衡探索與利用的權衡

The extended Kalman filter, or EKF, is the version of the Kalman filter you reach for when the world bends rather than runs in straight lines. The plain Kalman filter assumes everything is linear: drive twice as long and you go twice as far, in a perfectly predictable straight relationship. But a robot that turns its wheels follows a curve, and a sensor that reports an angle or a distance mixes its inputs in a curvy, nonlinear way. Feed those curves to a plain Kalman filter and its tidy math breaks. The EKF is the fix.

Its trick is to pretend the curve is a straight line — but only over a tiny stretch right around the robot's current best guess. Picture standing on a hill: zoom in close enough to your feet and the ground looks flat, even though the whole hill is curved. The EKF does exactly that with the robot's motion and sensor equations. At each step it measures the local slope of those curves — a quantity called the Jacobian, which is just the rate of change at that one spot — and uses that flat-looking approximation to run the ordinary Kalman prediction and correction. Then it moves to the new best guess and re-measures the slope, over and over.

This makes the EKF the long-standing workhorse for real robots — drones tracking their tilt, cars fusing GPS with wheel sensors — because most real systems are nonlinear. Its weakness is the very approximation that powers it: if the curve is sharp or the current guess is far off, treating it as locally flat introduces error, and the filter can drift or even fall apart. When that becomes a problem, engineers reach for filters that handle curves more faithfully.

Also calledEKF扩展卡尔曼滤波擴展卡爾曼濾波

The extracellular matrix, or ECM, is the protein scaffolding that sits outside the cells and holds a tissue together. Made largely of collagen and other tough, ropy proteins, it is the mesh that cells are embedded in — the mortar between the bricks, or the canvas that a painting sits on. Without it, a tissue would just be a puddle of loose cells with no shape.

The ECM is far more than passive filler. Its texture, stiffness, and chemical signals constantly tell cells how to behave: where to stick, when to divide, which direction to grow, and even what kind of cell to become. Cells, in turn, build and remodel the ECM around them, so tissue and scaffold shape each other in a continuous two-way conversation.

This is why the ECM is central to regenerative medicine. Engineers copy or reuse it to make scaffolds that guide new tissue into the right form, and a stripped-clean ECM left behind after removing an organ's cells can serve as a ready-made template for growing a replacement. Get the scaffolding wrong and the cells, however good, build the wrong thing.

Also calledECM细胞外基质細胞外基質
F

A factor graph is a tidy picture that separates the things you want to figure out from the pieces of evidence that constrain them. It is a graph with two kinds of nodes, never mixing — that is what 'bipartite' means. One kind, the variables, are the unknowns you are solving for: where the robot was at each moment, and where each landmark sits in the world. The other kind, the factors, are the bits of evidence: each one is a small rule pulled from a measurement, like 'the wheels say I moved a meter' or 'the camera says that tree is three meters off my left.' A factor connects only to the variables it actually constrains, and a line is drawn for each such connection.

The beauty of this picture is that it shows, at a glance, exactly what depends on what. A factor saying 'I saw landmark 7 from pose 12' links only those two nodes; it has nothing to say about pose 50 across the building. So the graph is sparse — most variables are far apart and unconnected — and that sparsity is what lets a SLAM solver work fast, because it can reason about tight little clusters instead of one giant tangle. Each factor also whispers how strongly it believes its rule, so the solver knows which evidence to trust when pieces disagree.

Factor graphs and pose graphs are close cousins: a pose graph is essentially a factor graph whose variables are only robot poses, while the fuller factor graph also keeps landmarks as variables and lets many kinds of evidence — wheel odometry, camera sightings, GPS fixes, an inertial sensor — all plug into the same picture as different factors. This shared language is why the factor graph has become the common backbone of modern SLAM: any sensor that can phrase its measurement as a factor can join the conversation.

Also calledfactor graph SLAM概率因子图機率因子圖

Factory automation is the use of machines — including robot arms, conveyors, and controllers — to make products with little or no human hands on the line. Picture a car plant: bare metal shells glide along on a moving belt, and at each station a robot arm welds a seam, another bolts on a door, and a third sprays paint, over and over, day and night. The people are still there, but they are programming, watching, and fixing the machines rather than swinging the tools themselves.

The classic factory robot is an industrial arm bolted to the floor and surrounded by a fence, repeating one precise motion thousands of times a day with a steadiness no tired human can match. Engineers group these machines into a cell — a small, self-contained workstation where one or a few robots, their grippers, and safety guards do a single job, like loading a machine or stacking boxes. When a product is made in huge quantities and almost never changes, builders often go further and use fixed automation: custom-built machinery hard-wired to do exactly one task very fast and very cheaply, but nearly impossible to repurpose.

The payoff is throughput — how many finished parts roll off the line per hour — together with consistent quality, around-the-clock running, and lower cost per unit once the heavy upfront investment is paid back. The trade-off is rigidity: an automated line is expensive to set up and slow to change, so it shines for high-volume, stable products and struggles with small batches or frequent design changes, which is exactly where more flexible, easily reprogrammed robots are now trying to win.

Also calledindustrial automation工业自动化工業自動化

Imagine trying to copy a long handwritten letter, but every pen you own smudges a little, your eraser also smudges, and even your reading glasses blur a few words. If you are not careful, every time you try to fix one mistake you risk adding two more, and the errors snowball until the page is nonsense. Fault tolerance is the art of arranging the work so that no single slip — not even a slip in the correcting itself — can cascade and ruin the whole thing. In a quantum computer, this matters enormously, because qubits drift and decohere constantly, and the machinery you use to detect and fix those errors is itself made of imperfect qubits and imperfect gates.

More precisely, a fault-tolerant design encodes each fragile logical qubit across many physical qubits using a quantum error-correcting code, and then performs every operation — the gates, the measurements, and crucially the error-checks — in a careful way so that one faulty component can only ever produce a small, correctable number of errors, never a flood. The threshold theorem makes this concrete: if the error rate of your physical hardware stays below a certain critical value (for the popular surface code, very roughly 1% per operation), you can suppress logical errors as low as you like by adding more physical qubits, and run an arbitrarily long computation reliably. The price is steep overhead — today's estimates often run to hundreds or thousands of physical qubits to protect a single logical qubit.

This is the line that separates a lab demonstration from a real computer, and it is the line we have not yet fully crossed. We are in the NISQ era: machines with tens to hundreds of noisy physical qubits and no large-scale fault-tolerant logical qubits running useful algorithms. Recent experiments have shown the building blocks — encoded logical qubits, error rates that improve as the code grows — but a full fault-tolerant computer big enough to, say, run Shor's algorithm against real-world RSA keys does not exist yet.

Also calledfault-tolerant quantum computationFTQC容错量子计算容錯量子計算

Fear conditioning is how a brain learns to be afraid of something that was harmless a moment ago. The trick is timing: if a neutral cue, like a particular sound, a light, or a place, happens just before something unpleasant, such as a small electric shock or a loud bang, the brain quickly links the two. After only a few pairings, the once-harmless cue alone is enough to trigger fear. The classic example is a lab rat that hears a tone and then feels a brief shock; soon the tone by itself makes the rat freeze, even with no shock coming. It is one of the fastest and most reliable kinds of learning, because the cost of being slow to learn about danger can be your life.

This learning happens largely in the amygdala, the brain's almond-shaped alarm center, which fuses the sound of the cue with the jolt of the unpleasant event so that the cue gains the power to set off the body's fear response, including a racing heart, tensed muscles, and the urge to freeze or flee. Fear conditioning is not a flaw; it is a survival shortcut that lets an animal, or a person, react to a threat before consciously thinking about it. But the same mechanism can misfire: a person who lived through a car crash may feel a surge of dread at the screech of brakes, and trauma-related disorders such as post-traumatic stress are partly built on fear that was learned too strongly and is hard to unlearn.

Also calledPavlovian fear conditioningthreat conditioning巴甫洛夫恐惧条件化巴甫洛夫恐懼條件化威胁条件化威脅條件化

A feature descriptor is a short list of numbers — a vector — that summarizes what a small patch of an image looks like around one interesting point, so a computer can recognize that same point again in another picture. Think of it as a fingerprint for a spot in a photo. A camera does not understand 'the corner of this window' the way you do; instead, it grabs the little neighborhood of pixels around that corner, measures the pattern of light and dark and edges there, and boils it down to maybe 128 or 256 numbers. Two patches that look alike will have nearly the same numbers, even if the picture was taken from a slightly different angle or in different lighting.

The point of squeezing a patch into a compact, stable vector is matching. When a robot sees the same scene from two viewpoints, or in two frames of a video, it wants to know which point in image A is the same physical spot as a point in image B. Comparing whole pixel patches directly is slow and breaks the moment the lighting or angle shifts. Comparing descriptors instead is fast — you just measure how close two number-lists are — and a well-designed descriptor stays roughly the same even when the patch is rotated, scaled, brightened, or seen from a new angle. That robustness is what lets the matches survive the messiness of the real world.

Descriptors are computed only at carefully chosen keypoints, usually corners and other locations that stand out and are easy to find again, rather than at every pixel. Classic hand-designed descriptors include SIFT, SURF, ORB, and BRIEF; more recent systems learn the descriptor automatically from data using neural networks. Either way, the matched descriptors become the raw glue for bigger jobs: stitching photos into a panorama, tracking how a camera moves, and building 3D maps of a space.

Also calleddescriptorlocal descriptor局部描述子

Raw brain signal is a torrent of numbers — thousands of tiny voltage readings every second, most of it noise and detail a decoder does not need. Feature extraction is the step that boils that flood down to a handful of informative numbers, called features, that actually capture what matters. It is like describing a song not by listing every sound wave but by saying "fast tempo, lots of bass" — a few summaries that hold the useful gist.

Which features you choose depends on the BCI. For rhythm-based systems you might compute the band power in a couple of frequency bands; for systems that watch for a brain response to a flash or a beep, you might measure the height and timing of a particular peak in the waveform. The aim is always the same: keep the parts of the signal that distinguish the user's intentions and throw away the rest.

Good features make the decoder's job dramatically easier, because the hard pattern-finding has already been done. In classic BCIs a human designs the features by hand; some modern systems instead let a neural network learn its own features straight from the signal.

Also calledfeature engineering特征工程特徵工程

Feedback control means a machine keeps watching what it is actually doing, compares that to what it was told to do, and constantly nudges itself to close the gap. The everyday picture is steering a car: you do not turn the wheel once to a fixed angle and hope; you keep looking at the road, notice you are drifting left, and ease the wheel right — over and over, many times a second, without even thinking. The measurement (where the car is) flows back to your hands (what they do), which is exactly why it is called feedback.

The trick that makes this powerful is that the system corrects for surprises it was never told about. A heating thermostat does not need to know that you opened a window, that a cold front blew in, or that ten guests just walked in radiating warmth — it only needs to feel the room temperature, see that it has fallen below the target, and turn the heat up until the reading climbs back. Because it reacts to the actual result rather than to a fixed plan, feedback control stays accurate even when the world misbehaves, parts wear out, or the load changes.

The cost of all this watching is that feedback can overshoot, wobble, or even shake itself apart if it reacts too hard or too late — like over-correcting the steering wheel and weaving down the road. Most of the craft of classical control is about choosing how strongly and how quickly to respond so the machine settles smoothly on its goal instead of fighting itself.

Also calledclosed-loop control反馈调节回饋調節

Feedback inhibition is a wiring trick the brain uses to keep its own excitement in check. The main signal-carrying cells of a circuit, called principal cells, fire and send their output forward. But on the way out, they also tap a nearby quieting cell, an inhibitory interneuron, which then loops straight back and shushes the very principal cells that woke it up. Picture a singer whose own loud voice trips a sensor that turns the microphone down: the louder they sing, the more the volume gets pulled back toward calm.

This loop matters because a brain that only excited itself would quickly run away into a seizure-like roar, where everything fires at once and no message stands out. By tying the brake to the gas pedal, feedback inhibition lets a burst of activity flare and then promptly settle, so each round of firing is short and sharply timed. That clean on-then-off rhythm is one of the engines behind brain waves and the precise timing that lets neurons encode information, and it keeps the strongest signals from drowning out the rest.

Also calledrecurrent inhibitionnegative feedback inhibition反馈性抑制回授抑制回饋性抑制

Feedback linearization is a trick for taming a system whose behaviour is nonlinear — meaning its response is lopsided and changes depending on where it is, like a pendulum that feels heavy near horizontal but light near the bottom. Such systems are hard to control because the simple, reliable tools we have work best on linear systems, where doubling the input always doubles the output. Rather than give up that simplicity, feedback linearization wraps the messy system in a layer of cleverly chosen feedback (control commands computed from the system's measured state) that cancels the nonlinear lumps. To the outside controller, the combination then looks and acts perfectly linear.

The recipe is: model the nonlinear forces, then at every instant compute and inject exactly the counter-command that erases them, leaving a clean target relationship of your choosing — typically 'whatever I ask for, the output simply follows.' It is like driving a car whose accelerator pedal behaves wildly at different speeds, but with a smart assistant who silently adjusts the throttle so that, from the driver's seat, the pedal feels perfectly ordinary at every speed. Once the system feels linear, you can design the actual steering with all the well-understood linear methods and proofs.

The price is honesty about your model: the cancellation only works if you know the nonlinear terms accurately, and it can demand large control effort or break down near singular configurations where the math blows up. So engineers often combine it with robust or adaptive layers to absorb the inevitable mismatch between the model and the real machine.

Also calledexact linearization精确线性化精確線性化

Feedforward inhibition is a wiring trick the brain uses to keep its signals crisp and on time. When a stream of input arrives at a target nerve cell, the very same input is also sent, as a side branch, to a nearby inhibitory neuron — a cell whose whole job is to quiet others down. So the incoming message splits in two: one copy races straight to the target to excite it, while the other copy detours through the inhibitory cell, which a heartbeat later clamps down on that same target. Picture a light switch wired so that flipping it on also arms a timer that will switch it back off a fraction of a second later.

Because the excitatory copy arrives first and the inhibitory brake follows just behind, the target cell is only allowed to fire during a brief, well-defined window before it gets shut off. This sharpens the timing of the response — turning what might have been a long, sloppy smear of activity into a quick, punctual blip — and it stops a single input from setting off runaway chatter. By narrowing when a cell may respond, feedforward inhibition helps circuits tell apart signals that arrive close together, keep activity from snowballing, and represent information with clean, precise timing rather than a blur.

Also calledfeed-forward inhibition前馈性抑制前饋性抑制

Feudalism is the name we give to how much of medieval Europe was held together — a pyramid of land traded for loyalty. A king handed out estates to powerful lords; those lords parceled bits to lesser knights, who swore to fight for them; and at the broad base, peasants worked the soil and owed labor and a share of the harvest to whoever held the land above them. Picture a chain of handshakes running from castle to cottage: I give you land, you give me your sword, your service, your faith.

It matters because for centuries this was the everyday machinery of power — no standing armies, no salaried bureaucrats, just a web of personal promises between a man and his lord doing the work that taxes and governments do today. Loyalty was the currency, and a parcel of land was the receipt.

But here is the catch, and it's a big one: "feudalism" is a tidy word historians invented long after the Middle Ages had ended, and many now distrust it. Real medieval life was far messier and more local than any neat pyramid — the rules in Normandy were not the rules in Saxony or Sicily, and plenty of places fit the model badly or not at all. The term is a useful sketch, not a photograph.

Also calledfeudal systemfeudal society封建主义封建社会

Fibrosis is scarring gone too far: a build-up of excess fibrous tissue, mostly the protein collagen, that stiffens an organ and crowds out the working cells that actually do its job. A little scar seals a wound, but fibrosis is like a contractor who keeps pouring concrete long after the hole is filled, until the room is solid and useless. It is, in effect, the enemy of true regeneration.

It usually starts as ordinary repair that never switches off. When an organ is injured again and again, the repair cells keep laying down tough collagen scaffolding, replacing soft, specialized tissue with stiff scar. Over time the organ hardens and shrinks in capability, because scar cannot pump, filter, or breathe the way the original tissue did.

Fibrosis underlies many serious chronic diseases — scarred livers (cirrhosis), stiff lungs, and a heart that scars after a heart attack instead of regrowing. Because scar tissue blocks rebuilding, a major aim of regenerative medicine is to prevent or reverse fibrosis so that real, functional tissue has room to return.

Also called纤维化纖維化scarring

File permissions decide who is allowed to do what with a file: read it, change it, or run it. On Unix-like systems (Linux, macOS) every file carries three little switches — r (read), w (write), x (execute) — and they're set separately for three groups of people: the owner, the owner's group, and everyone else.

That's what the cryptic 'rwxr-xr-x' from ls -l is showing you: the owner can read/write/run, while the group and everyone else can only read and run. The same thing gets written as a number, like 755, where each digit is just r=4 + w=2 + x=1 added up. You change them with chmod.

The one that trips up every beginner is x. A script isn't allowed to run just because it exists — it needs the execute bit. That's why you so often type chmod +x deploy.sh before ./deploy.sh will work, and why a missing x earns you a curt 'Permission denied'.

Also calledchmodrwx755permission deniedexecutable bit

A file system is how the operating system organizes everything on a disk into named files tucked inside folders — and how it finds any one of them again later. A bare disk is really just a vast sea of numbered blocks; the file system is the librarian on top, keeping the catalog that says 'the photo you call beach.jpg lives in these blocks, inside the Pictures folder.' Without it, your files would be there in the raw bits, but nothing could tell where one ends and the next begins.

You navigate it by path — a trail of folder names that pins down exactly where a file sits, like /Users/jo/notes/todo.txt or C:\Users\Jo\todo.txt. Read it left to right: start at the top, step down through each folder, and the last name is the file itself. That string is an address, and following it always lands you in one precise spot in the tree.

The folders nest into a tree, branching down from a single top called the root. This shape is why the same notes.txt can sit harmlessly in two different folders: their full paths differ, so the system never confuses them. The file system also remembers each file's size, its timestamps, and who's allowed to open it — the bookkeeping that turns raw storage into something you can actually browse.

Also calledfilesystemdirectory treefs

Finality is the assurance that once a transaction is settled, it can no longer be reversed or undone. In everyday payments this is easy — a bank can declare a transfer final. On a decentralized blockchain with no central authority, finality is subtler: because the chain can occasionally fork, you need to know when a confirmed transaction has become safe enough that no realistic chain rearrangement could ever erase it.

Proof-of-work chains offer what is called probabilistic finality. A transaction is never finalized by a single stroke; instead, each new block stacked on top of it makes reversing it exponentially harder, because an attacker would have to outpace the entire honest network's work to rebuild that many blocks. The deeper your transaction is buried, the safer it is — which is why people wait for several confirmations before treating a large payment as done.

Many proof-of-stake chains offer stronger, faster economic finality instead. Validators explicitly vote to finalize blocks, and once a supermajority has done so, reversing those blocks would require attackers to get their staked deposits destroyed by slashing — a guaranteed, enormous loss. This turns finality from 'probably irreversible after waiting' into 'provably irreversible unless attackers torch a fortune,' giving faster, firmer settlement.

Also calledfinality最终性最終性确定性確定性

For decades a transistor was basically flat: a thin channel lying along the surface of the silicon, with the gate pressed onto it from above like a hand resting on a tabletop. That worked beautifully until the transistors got so small that the channel became too short to control. Once the source and drain crowd close together, the gate loses its grip and current leaks through even when the switch is supposed to be off. That leakage is wasted power, and it was one of the walls that ended the easy era of scaling. A FinFET is the fix: instead of leaving the channel flat, you stand it up on edge as a thin vertical wall of silicon, called a fin, and let the gate wrap over the top and down both sides. Now the gate touches the channel on three faces instead of one, so it grabs the current far more firmly and shuts it off cleanly.

The intuition is simple once you picture it. Controlling a thin sheet from a single side is like trying to pinch off a garden hose by pressing on it with one finger from above; control it from three sides and it is like wrapping your whole hand around the hose, and almost nothing gets through when you squeeze. That tighter electrostatic control means less leakage at small sizes, lower off-state power, and the ability to keep shrinking when the old planar transistor simply could not. FinFETs became the mainstream logic transistor at roughly the 22nm node and carried high-performance chips down through the single-digit-nanometer generations.

It is worth remembering that those node names are marketing labels, not the physical width of anything; a '7nm' fin is nowhere near 7nm across. The fin geometry is what actually buys the control. Eventually even three-sided wrapping is not enough, and the next step is to wrap the gate all the way around the channel on all four sides, which is where gate-all-around nanosheet transistors take over at 3nm and below.

Also calledfin field-effect transistortri-gate transistor

Think of a traffic light. At any moment it's in exactly one situation — green, yellow, or red — and it knows precisely what comes next: green gives way to yellow, yellow to red, red back to green. It never sits half-green, and it never jumps straight from green to red. That's the whole idea of a finite-state machine: a piece of logic that is always in exactly one of a small, fixed set of named states, and that moves between them along well-defined transitions when something happens — a button is pressed, a timer expires, a clock ticks.

An FSM is the standard pattern for control logic — the part of a digital circuit that decides what to do next rather than crunching the numbers. You describe it with three things: the set of states, the rules for moving between them (which usually depend on the current state plus the current inputs), and the outputs each state produces. In hardware that memory of "which state am I in" lives in a register of flip-flops, updated once per clock edge, while a block of combinational logic computes the next state and the outputs from the current state and inputs. This split — state-holding sequential elements feeding combinational decision logic — is exactly what makes an FSM a clean, repeatable way to build controllers, protocol handlers, and sequencers.

FSMs come in two classic flavours, and the difference is where the outputs come from. In a Moore machine the outputs depend only on the current state — read the state, you know the outputs — which makes them steady and easy to reason about, but they react one clock later. In a Mealy machine the outputs depend on the current state and the current inputs, so they can respond in the same cycle, often with fewer states, at the cost of outputs that can glitch or change mid-cycle as inputs wiggle. A handy way to remember it: Moore outputs are labelled on the states; Mealy outputs are labelled on the transitions.

Also calledstate machineFSMfinite automaton有限状态机有限狀態機状态机狀態機

Every transistor hisses, but flicker noise is a special kind of hiss that gets louder the slower things move. Picture a dirt road full of potholes: drive fast and you skim over them, but crawl along and every bump jolts you. In a MOSFET the "potholes" are tiny defects right at the silicon-oxide interface that randomly grab and release passing charge carriers. Those slow trap-and-release events nudge the current on long timescales, so the noise power piles up at low frequencies and dominates everything near DC. Plot its power against frequency and it climbs as you go lower, roughly as 1/f — which is why it is called 1/f noise, and why it is the bane of anything measuring slow or near-DC signals like sensors, bandgap references, and audio.

Unlike thermal noise, which is flat across frequency, flicker noise has a slope, and the two cross at a point called the 1/f corner: above it thermal noise rules, below it flicker takes over. Two knobs move that corner down. First, make the device bigger — flicker noise falls with gate area, because a wider, longer channel averages over many more traps, so the same input stage drawn at 10x the area is markedly quieter at low frequency (it is also why PMOS devices, which trap less, are often chosen for the critical input pair). Second, when geometry alone is not enough, designers cheat with circuit tricks: chopping rapidly flips the signal's polarity to carry it up to a high frequency, past the corner where only quiet thermal noise lives, then flips it back, leaving the slow flicker error behind; auto-zeroing instead samples the amplifier's own low-frequency error and subtracts it. Both let a circuit see down toward DC without drowning in 1/f.

The cost is that bigger devices eat area and add capacitance (slowing the circuit), while chopping and auto-zeroing add switching artifacts and clock spurs of their own. So fighting flicker noise is a trade, not a free win — you spend area, speed, or complexity to buy a quieter view of the world near DC.

Also called1/f noisepink noiselow-frequency noise

Flip-chip integration is a way to build a quantum processor out of two chips stacked face-to-face instead of one crowded single layer. You make the qubits on one chip and all the wiring, readout, and control routing on a second chip, then flip one over and join the two with tiny metal bumps so their surfaces nearly touch. The name is literal: one wafer gets flipped upside down and bonded onto the other, like pressing two slices of bread together with a grid of solder dots in between.

The reason to bother is space. On a single flat chip every control line, resonator, and bond pad has to share the same surface as the qubits, and they quickly run out of room to route around each other — wires start crossing, frequencies get crowded, and the design jams up. Splitting the job across two tiers gives the wiring its own floor. The bumps, often made of indium because it stays soft and conducts even at millikelvin temperatures, carry signals and ground between the tiers and also set the gap between them. That small vertical gap matters: it keeps the lossy bonding metal far enough from the qubits that it does not spoil their coherence.

It is one of the leading paths past single-plane limits, but it is genuinely hard. The two chips must be aligned to within microns and pressed flat across the whole area, or some bumps never connect and the chip is dead — so yield is a real fight. The indium and the new interfaces can add their own loss and trap stray two-level defects, and getting thousands of bumps to bond reliably and cold-cycle without cracking is still being worked out. Several groups have shown working flip-chip qubit devices, but it is an active engineering frontier, not a solved, off-the-shelf step.

Also calledflip-chip bondingbump bonding倒装焊凸点键合覆晶接合凸塊接合

A flip-flop is a tiny circuit that remembers a single bit — a 0 or a 1 — and holds onto it until you tell it to change. Think of it like a light switch that stays flipped: once you set it, it sits there keeping its position even after your hand leaves, until someone deliberately flips it again. That stubborn "staying put" is the whole point. Without it, a chip would forget everything the instant the current settled.

Most flip-flops only change at one sharp moment: the rising edge of a clock tick, like a camera shutter snapping a photo of the input at exactly that instant and freezing it. Line up a row of them and you get a register that stores a whole number; pile up millions and you get the memory and state inside a processor. Every counter, every CPU register, every bit your computer "holds in mind" rests on these little one-bit keepers.

Also calledlatchregisterD flip-flop触发器正反器

Floorplanning is the very first move in physical design — the part you do before a single standard cell is dropped onto the silicon. Think of a city planner standing over an empty plot: before any house goes up, you decide how big the lot is, where the highways and the big landmarks (the stadium, the power station) go, and roughly where the water and electricity mains will run. On a chip you are doing exactly that. You fix the die and core area, you hand-place the big macros — SRAM blocks, PLLs, analog IP, anything too large or special to be auto-placed like an ordinary gate — you arrange the I/O pads or bump pins around the edge, and you sketch the power grid (the rings and straps that will feed current to everything). Only after this skeleton exists does the automated placer start filling the empty core with the millions of tiny logic cells.

Why sweat over it by hand? Because every automated step downstream inherits your decisions and cannot easily undo them. Put two chatty macros at opposite corners and the router will fight wire delay forever; cram cells in too tightly and there is no room left for clock-tree buffers or routing tracks, and timing closure becomes impossible. So you also reserve breathing room: a common starting target is a core utilization of roughly 60-75%, meaning the standard cells fill only that fraction of the core and the rest is left open for wiring, buffering, and clock trees added later. Macros get keepout halos so cells don't crowd their pins, and you add placement blockages where you want the placer to stay out. A good floorplan makes placement, clock-tree synthesis, and routing flow almost on their own; a bad one quietly poisons every signoff check that follows.

Also calledfloorplanchip planning布图规划佈局規劃

Fluxonium is a type of superconducting qubit, one of the tiny circuits that can act as the '0 and 1' of a quantum chip. It is built from a single small Josephson junction shunted by a very large inductance, so a chip designer can think of it as a cousin of the more common transmon, tuned for a different set of tradeoffs.

That large inductance is the trick. Instead of a real coil, it is made from a long chain of dozens to hundreds of junctions in series, a so-called superinductance. This reshapes the qubit's energy levels so that the lowest two states sit far apart from the rest. That large 'anharmonicity' means a control pulse aimed at the 0-to-1 transition is much less likely to accidentally excite the chip into a useless higher state, and the design can also be parked at a sweet spot where it largely ignores magnetic noise, giving long coherence times.

The honest catch is complexity. Fluxonium's working frequency is low, so it often needs a magnetic flux bias and more elaborate control and readout than a transmon, and the long junction array is harder to fabricate reliably. It is a serious, fast-improving alternative to the transmon, but no single qubit design has 'won', and chips of either kind are still small and noisy.

Also calledfluxonium qubit磁通量子比特磁通量子位元

Functional magnetic resonance imaging (fMRI) is a way to take movies of the whole living brain while a person thinks, sees, or moves — without any surgery or needles. It does not photograph the brain's electrical signals directly. Instead, it watches the blood. The trick it relies on is called the BOLD signal, short for blood-oxygen-level-dependent signal: a clever measurement that tells when and where blood in the brain is carrying more or less oxygen.

Here is the chain of clues that makes it work. When a patch of brain gets busy, its hungry cells use up oxygen, and within a few seconds the body overcompensates by flushing that spot with a surge of fresh, oxygen-rich blood — far more than the cells actually consumed. Oxygen-poor and oxygen-rich blood are magnetically different (the iron in blood behaves differently depending on whether it carries oxygen), and the big MRI magnet can sense that difference. So a local jump in oxygen-rich blood brightens the signal there, and the scanner maps these bright spots across the whole brain. Activity is therefore inferred, not measured directly — fMRI sees the blood-flow echo of neurons firing rather than the firing itself.

This indirect path gives fMRI both its strengths and its limits. Because it covers the entire brain at once and pinpoints active regions down to a few millimetres, it has become the workhorse for asking where in the brain a task happens. But the blood response is sluggish, lagging the actual neural activity by several seconds, so fMRI is poor at tracking the brain's fast, millisecond-by-millisecond timing. Reading its colourful maps also takes care: a bright spot shows that blood flow changed, which is only a stand-in for the neural activity scientists really want to know about.

Also calledfunctional MRIblood-oxygen-level-dependent signal血氧水平依赖信号血氧水平依賴訊號

Force closure is the gold-standard test for whether a grasp can truly hold an object: it asks whether the hand's contacts, using friction, can push back against any force or twist you might apply, no matter the direction. If the answer is yes, the object is fully secured — you could shake it, tug it, or spin it, and the grasp would not let go. The word closure means the contacts together close off every possible escape; force means they do it by pressing and gripping, with friction doing real work.

Friction is the secret ingredient. When a fingertip presses on a surface, it can also resist sliding sideways, within limits — like how a hand flat on a table can be pushed a little before it skids. A force-closure grasp arranges its contacts so that these friction forces, added up, can counter a pull in absolutely any direction, including a twist. A firm pinch of a pencil between two fingers is the classic example: the friction at the two fingertips stops the pencil from sliding out, even though nothing physically cages it.

One subtlety is worth knowing: two ideal point contacts work cleanly in the flat, planar case, but in three dimensions two bare points cannot stop the object from spinning about the very line that joins them — which is why a pencil pinched between two hard tips can still be twirled about its long axis. Real fingertips dodge this by being soft, spreading each touch over a small patch that can also resist that twist. With even a couple of soft, well-placed, firm contacts, then, a robot can securely hold an enormous range of shapes. It is the property grasp planners most often aim for, the mathematical promise that a grab will actually stick.

Also calledforce-closure grasp力闭合

Force control is making a robot care about how hard it pushes rather than exactly where it is. In ordinary position control the robot chases a target spot and ignores what it bumps into; that is fine in open air but disastrous on contact — press a polishing pad against a surface by position alone and a millimetre too far means either no contact or a cracked workpiece. Force control flips the goal: the robot is told to maintain, say, a steady ten newtons of push, and it continuously adjusts its motion to keep that force right, easing off where the surface bulges and pressing in where it dips.

The robot needs a sense of touch to do this — usually a force/torque sensor (a wrist gauge that measures pushes and twists) or joints that can feel resistance directly. The controller compares the felt force to the wanted force and nudges the robot to close the gap, exactly the way you sand wood: you do not think about the precise height of your hand, you think about pressing 'just hard enough' and let your hand ride up and down over the grain. This yielding, touch-guided behaviour is why force control is also called compliant control.

Pure force control is rarely used everywhere at once. In real tasks a robot mixes it with position control along different directions — holding position sideways while regulating force into the surface — and impedance or admittance control are the popular, well-behaved ways to blend the two. Force control is the heart of any job where the robot must work with the world rather than blindly against it: assembly, grinding, gentle grasping, or safe physical contact with people.

Also calledcompliant control柔顺控制柔順控制

A force/torque sensor is a small device, usually bolted into a robot's wrist between the arm and its hand, that measures how hard the robot is pushing on the world and how hard the world is pushing back. It is the robot's sense of touch through its grip — the same way you can feel, without looking, whether you are pressing a doorbell gently or leaning your whole weight on a wall.

The common kind is called six-axis because it reports six numbers at once: the push or pull along three directions (forward/back, left/right, up/down) and the twist around each of those three directions. Inside, a stiff metal body flexes by a tiny, invisible amount under load, and electrical strain gauges glued to it turn that flex into a changing voltage. The sensor's job is to untangle those voltages back into the six clean force and twist values.

Robots use this to do delicate, contact-rich jobs that pure position control cannot handle: pressing a plug into a socket, polishing a curved surface with steady pressure, or stopping the instant they bump something unexpected. Without it, a robot arm is strong but numb — it can hit an exact spot in the air, yet has no idea how firmly it is touching what is there.

Also calledF/T sensorsix-axis force sensor六轴力传感器六軸力感測器

A foreign key is a column in one table that points to the primary key of another — it's how a database links rows together. An order, for example, holds the id of the customer who placed it; that customer_id is a foreign key, a little arrow from the order over to the right person.

This is the trick that turns separate tables into a connected web. You don't repeat the customer's whole name and address on every order — you just store their id once and reach for it whenever you need them. Follow the arrow and you can jump from an order to its customer, or gather all orders belonging to one customer.

The database can guard these links for you: it'll refuse to let an order reference a customer who doesn't exist, and can stop you from deleting a customer who still has orders pointing at them. That guardrail is called referential integrity — it keeps your data from pointing into thin air.

Also calledfkreferencerelationship

A fork is your own complete copy of someone else's repository, made on the hosting side (GitHub, GitLab) with a single click. It lives under your account, so you can change anything you like without needing permission to touch the original.

It's how open source works: you fork a project you can't write to, push your changes to your copy, and then open a pull request asking the original maintainers to pull your work back in. They review it; if they like it, it becomes part of the real project.

Don't confuse a fork with a clone or a branch. A branch is a line of work inside one repo; a clone is a copy on your own laptop; a fork is a whole separate repo on the server, with your name on it — your launchpad for proposing changes to a project that isn't yours.

Also calledfork a repoforkingserver-side copy

Form closure is holding an object by shape alone — caging it so tightly that it cannot move at all, even if every surface were perfectly slippery. Instead of relying on friction to grip, the contacts surround the object from enough directions that there is simply nowhere left for it to go. Picture a key dropped into a keyhole-shaped slot, or a peg pushed snugly into a matching hole: it is trapped by geometry, and grease would not help it escape.

The trick is to box in every possible motion. An object floating in space can slide three ways and spin three ways; form closure places rigid contacts so that each of those escape routes is blocked by a wall it would have to pass through. Because friction is ignored, this is a purely geometric guarantee — it holds no matter how smooth the surfaces are, which makes it the most rock-solid kind of hold a robot can have. The price is that it needs more contact points than a friction-based grip — at least four around a flat shape, and seven to fully box in a solid object — usually surrounding it on several sides.

Form closure shines wherever you cannot trust friction: holding oily metal parts, gripping something that must not slip even a hair during precision assembly, or designing a fixture that clamps a workpiece on a machine. It is the difference between trusting a firm pinch and trusting a snug-fitting cage. Robots and factory jigs alike use it when a slip would ruin the job.

Also calledform-closure graspgeometric closure形闭合

Imagine you've built a digital lock, and you want to be sure it can never open without the right code. With simulation, you'd type in a few thousand wrong codes, watch it stay shut each time, and feel pretty good — but you've only checked the codes you happened to try. Formal verification takes the opposite approach: instead of testing examples, it proves — using mathematics — that no possible input, in any order, can ever pop the lock open. One airtight proof stands in for an infinity of trials.

Concretely, a formal tool takes your design (the RTL) plus a property you write — a precise statement like "the grant signal is never asserted to two masters at once" — and reasons over the entire reachable state space of the circuit as a mathematical structure. If the property holds under every legal input sequence, the tool returns proven. If it doesn't, the tool hands you a concrete counterexample: an exact waveform showing the steps that break it. There's no "did we write enough tests?" anxiety, because the search is exhaustive by construction. This makes it the natural partner to assertions — the constructs you use to state those properties, typically in SystemVerilog Assertions (SVA).

The catch is in the word exhaustive. It applies only to the property you stated and the design block you pointed it at — formal proves that claim completely, not that your chip is correct overall. And the reachable state space grows explosively, so large blocks can blow past memory or time limits, forcing you to constrain inputs, decompose the problem, or accept a bounded proof that holds only out to N clock cycles. Formal is razor-sharp on control logic, arbiters, and protocol checks; it's the wrong tool for verifying a wide datapath multiplier, where constrained-random simulation still earns its keep.

Also calledmodel checkingproperty checkingformal property verification (FPV)形式验证形式驗證模型检验模型檢查

Formation control is the art of keeping several robots in a chosen geometric pattern — a line, a wedge, a circle, a grid — while the whole group moves together. Picture migrating geese holding their V, or a marching band that bends and curves around a field yet never loses its shape. The robots are not just traveling to the same place; they must hold their relative positions to one another the entire way, so the pattern survives turns, speed changes, and obstacles.

The job comes down to each robot constantly answering one question: am I in the right spot relative to my teammates, and if not, how do I correct? One common approach gives each follower a leader to track and a fixed offset to maintain, so the group moves like a flock trailing a head bird. Another lets every robot watch a few neighbors and adjust toward the agreed spacing, with no single leader — more robust, since losing one robot does not behead the whole formation. Either way, small steering corrections, made many times a second, are what hold the shape together.

Formations are not just for show; the geometry does a job. A spread-out line lets a team sweep a wide area for search or mapping; a tight cluster lets robots carry one big object together; a protective ring can shield something in the middle; an aerial grid can blanket a region with sensors. The hard part is doing all this while also dodging obstacles and each other — the formation must be willing to stretch, squeeze, or briefly break and then reform, rather than rigidly marching a robot into a wall.

Also calledformation keeping队形控制隊形控制

Forward dynamics answers a 'what happens if' question: given how hard each motor is pushing right now, and how the robot is currently posed and moving, how will it speed up or slow down in the next instant? In plain terms, you feed in the forces and torques, and it predicts the resulting accelerations. It is the robot version of pushing a shopping cart: you know how hard you are shoving and how full the cart is, and forward dynamics tells you how quickly the cart will pick up speed.

The math behind it follows Newton's old rule that force equals mass times acceleration, but generalized to a whole linked body where every joint affects every other. The robot starts from its current state — each joint's angle and how fast it is turning — plus the applied torques and the steady pull of gravity, then solves for the acceleration at each joint. Crucially, this is the reverse of inverse dynamics: inverse dynamics asks 'what torques do I need for this motion?', while forward dynamics asks 'what motion will these torques produce?'

Where this really shines is simulation. To rehearse a robot's behavior on a computer before risking real hardware, you run forward dynamics over and over in tiny time steps: apply torques, compute accelerations, nudge the speeds and angles forward by a sliver of a second, and repeat. Stitched together, these steps become a believable virtual robot — the engine inside video-game physics and robot training simulators alike.

Also calleddirect dynamics正向动力学FD

Forward kinematics is the question: if I know exactly how much every joint of a robot arm is bent or extended, where does the hand end up, and which way is it pointing? You feed in the joint values — say, shoulder rotated 30 degrees, elbow bent 90 degrees, wrist twisted 45 degrees — and forward kinematics tells you the precise position and orientation of the tip (the gripper, tool, or whatever the arm carries, called the end-effector). It is like folding a carpenter's ruler: once you fix the angle at each hinge, the location of the far end is completely determined.

It works by chaining the links together one at a time. Each joint has a small piece of geometry that says how the next link is shifted and turned relative to the current one; mathematically each piece is written as a transform (a compact recipe for a rotation plus a shift in space). You multiply these transforms in order from the fixed base out to the tip, and the combined result places the end-effector in the world. This direction is the easy one: for any given set of joint values there is always exactly one answer, with no ambiguity and no guessing — which is why forward kinematics is the dependable foundation that the harder, backward problem is built on top of.

Also calledFKdirect kinematics正运动学順向運動學

A fossil fuel is sunlight from the deep past, bottled. Coal, oil, and natural gas all began as living things — ancient plants, plankton, and algae that soaked up sunshine, died, and got buried. Over millions of years, heat and the crushing weight of rock cooked their remains into black coal, dark crude oil, and invisible gas. Strike a match to any of them and you release energy that ancient life captured from sunlight — some of it long before the dinosaurs walked the Earth.

That ancient life was made of carbon, and so the fuel is too. When we burn it, that carbon joins with oxygen from the air and flies off as carbon dioxide (CO₂). The catch is timing: it took the Earth tens of millions of years to lock that carbon underground, and we are unlocking it in a couple of centuries. The CO₂ piles up in the air faster than the planet can absorb it, thickening the blanket of greenhouse gases that traps heat — which is the engine of today's warming.

A common mix-up: fossil fuels are not made from dinosaurs. The word 'fossil' just means 'dug up from the ground' — most of the buried life was tiny ocean plankton and swampy plants, not great reptiles. And these fuels are not running out tomorrow; the deeper problem is that we have far more than the air can safely take.

Also calledcoaloilnatural gaspetroleumhydrocarbons石油天然气天然氣礦物燃料

Foundry fabrication means building qubit chips on the same big, automated production lines that make the processors in laptops and phones, instead of in a small university cleanroom. A modern foundry works on round silicon wafers 300 millimeters across, about the size of a dinner plate, and patterns thousands of dies on each one with machines that repeat the same step identically all day long. The dream is simple: if the chip industry can already print billions of near-identical transistors with astonishing precision, maybe that same discipline can print qubits that actually come out the same as each other and in large numbers.

The advantage is process control and scale. A foundry holds temperature, film thickness, and feature size to tight, monitored tolerances, tracks every wafer through statistics, and runs the same recipe across a whole 300 mm wafer, so a good result on one chip is far more likely to repeat on the next. This uniformity matters most for spin qubits, which are tiny and built from silicon and silicon-germanium that foundries already handle. It also lets you make many test chips quickly and learn from data rather than from one hand-built device at a time, which is how the rest of the chip world improves so steadily.

The honest catch is that a standard CMOS line was tuned to make transistors switch fast, not to keep a quantum state alive. Many ordinary foundry materials and steps quietly leak qubit energy: the wrong metals, oxides, surface residues, or thermal steps that would never bother a logic chip can wreck coherence. So adapting a foundry means swapping in low-loss materials, cleaner interfaces, and gentler processing while keeping the line's discipline intact. It is real and progressing, with both spin-qubit and superconducting devices now coming out of 300 mm lines, but matching the best lab-made qubits at industrial uniformity is still an open, in-progress effort.

Also called300 mm fabricationCMOS-compatible qubit fabricationindustrial foundry process晶圆代工制造工业级代工工艺

A framework is a ready-made scaffold for building an app — a structure with the common parts already in place so you don't start from a blank page every time. Tools like React, Django, and Rails hand you a sensible layout, solutions to the boring-but-necessary problems, and a clear spot to plug in the parts that are actually unique to your app.

Here's the twist that defines a framework: it calls your code, not the other way round. With a plain library, you're in charge — you reach for a tool when you need it. With a framework, the framework runs the show and calls your functions at the right moments ('a request just came in — here, you handle it'). This is sometimes called 'inversion of control', and it's the whole bargain: you give up some freedom over the structure, and in return you skip a huge amount of plumbing.

The payoff is speed and shared ground. You're not reinventing routing, forms, or page rendering — the framework already did that. And because thousands of others use the same one, there's a deep well of guides, fixes, and ready-made pieces to draw from. The cost is that you build things the framework's way; learning a framework is partly learning its opinions.

Also calledweb frameworkReactDjangoRails

Once you picture a robot's poses as a map (the configuration space), that map naturally splits into two regions. Free space is the collection of all poses in which the robot touches nothing it shouldn't — it sits cleanly in the world without overlapping a wall, a table, or its own body. Obstacle space is everything left over: the poses that are forbidden because, if the robot actually struck them, some part of it would be jammed into an obstacle or tangled with itself. So the same dividing line that separates "allowed" from "not allowed" in the real world reappears, drawn right onto the map of poses.

The point of slicing C-space this way is that planning a safe motion becomes a pure geometry puzzle: find a route for the dot that stays entirely inside free space and never crosses into obstacle space. A surprising and important fact is that an obstacle's shadow on the map looks nothing like the obstacle itself. A small round pillar in the room can carve out a large, oddly shaped forbidden blob in C-space, because the robot's whole body — not just one point — has to clear that pillar at every pose. This reshaping is why planners do their thinking in C-space: there, a forbidden zone is simply a region to be steered around, no matter how strange the real-world collision geometry was.

Also calledfree spaceC-freeobstacle space自由空间障碍空间

Free will is the feeling that, when you choose, the choice is genuinely yours — that standing at a fork in the road, you could really have gone either way. Pause over a menu, settle on the noodles instead of the rice, and it seems obvious that nothing forced your hand; you simply decided. Free will is the claim that this everyday feeling is true: that you are the real author of your actions, not merely the last domino in a line that was already falling.

The trouble comes from determinism — the idea that every event, including the firing of every neuron behind your choice, is the inevitable result of what came before, stretching back long before you were born. If that's right, then your "decision" to pick the noodles was set in motion by physics and history you never controlled, and the sense of an open future is an illusion. This clash matters enormously, because we only praise, blame, and punish people on the assumption that they could have done otherwise.

Many philosophers take a middle path called compatibilism: free will and determinism can both be true at once. On this view, being free doesn't mean escaping cause and effect — that's impossible and not even what we want. It means acting from your own desires and reasons, without being coerced or compelled. A common misconception is that free will requires a magic gap in the chain of causes; the compatibilist answers that what makes a choice free is not that it has no cause, but that the cause runs through you.

Also calleddeterminismcompatibilismlibertarian free will自由意志决定论相容论決定論相容論

The free-energy principle is a sweeping idea that tries to explain, with a single rule, why living things behave the way they do: every organism is constantly trying to be less surprised by the world. Imagine your brain as a tireless guesser that holds an internal model of what it expects to sense next — the warmth of a room, the face of a friend, the feel of the ground underfoot. When reality matches the guess, all is calm. When reality differs, that mismatch is a kind of surprise, and the principle says that brains (and bodies, and even single cells) are built to keep that surprise as small as possible over time. The quantity they actually minimize is a mathematical stand-in for surprise called variational free energy, which is why the idea carries that name.

There are two ways to shrink the gap between expectation and reality, and the principle says organisms use both. One is to update the internal guess to better fit the incoming evidence — this is perception, quietly revising your model until it matches your senses. The other is to act on the world so that your senses come to match the guess — if you expect your hand to be on a warm cup, you reach out and grasp it, making the prediction come true. Acting to fulfill your own predictions is called active inference. Seen this way, perceiving and behaving are two sides of the same job: driving down prediction error. Supporters see this as a candidate grand theory linking learning, action, attention, and even why creatures stay alive at all; critics note it is very abstract and hard to test against rival explanations. Either way it has become one of the most discussed frameworks in theoretical neuroscience.

Also calledFEPactive inference frameworkfree energy minimization自由能最小化自由能最小化

Picture pushing a child on a swing. If your pushes line up with the swing's natural rhythm, small nudges build into huge arcs. A feedback amplifier has the same danger: the loop feeds its output back to its input, and at some frequency the signal arrives delayed by a full half-cycle (180 degrees). If the loop still has gain greater than 1 at that frequency, those delayed corrections reinforce instead of cancel, and the amplifier rings or oscillates instead of settling. Frequency compensation is the deliberate reshaping of the loop's gain-versus-frequency curve so that the gain has safely fallen below 1 before that dangerous phase point arrives.

The usual trick is to make one pole dominant: you intentionally add (or enlarge) a capacitor at a high-impedance node so that the loop gain starts rolling off early, at a single low frequency, and keeps falling at a gentle 20 dB per decade for as long as possible. Because that first pole already contributes its 90 degrees of lag while the other poles are still far away, the phase has room to breathe and the gain crosses unity before the total lag reaches 180 degrees. The leftover safety margin is the phase margin, and you usually aim for at least 45 to 60 degrees so the response settles cleanly rather than ringing. In a two-stage op-amp the elegant move is Miller compensation: a small capacitor bridged across the high-gain second stage looks, from the input, like a much larger capacitor (multiplied by that stage's gain), so it splits the two poles apart, pulling the dominant one down and shoving the other one up out of the way.

The trade-off is honesty itself: every bit of stability you buy by lowering the dominant pole also lowers your gain-bandwidth product and slows the amplifier down, because the unity-gain frequency is roughly gm divided by the compensation capacitance. So compensation is a negotiation, not a free fix. Add too little and the part rings or oscillates; add too much and it is rock-solid but sluggish. Good analog design finds the smallest capacitor that still guarantees enough phase margin across temperature, process, and load.

Also calledloop compensationMiller compensationdominant-pole compensation环路补偿米勒补偿迴路補償米勒補償

Frequency crowding is what happens when you try to fit too many qubits into too little radio spectrum. Each fixed-frequency superconducting qubit has its own microwave tone, a few gigahertz, that you use to address it — much like every radio station needs its own slot on the dial so it doesn't bleed into its neighbor. But all the qubits on a chip have to share one finite band, and the band is only a few hundred megahertz wide once you account for the hardware. Pack in a handful of qubits and there is room; pack in a thousand and their assigned frequencies inevitably start landing on top of each other.

A collision is when two frequencies that should be distinct end up too close, and there are several flavors. Two neighboring qubits can share almost the same frequency, so a pulse meant for one also tickles the other. A qubit's frequency can land on a neighbor's, or on the gap a two-qubit gate relies on. Worst of all, a qubit is not a perfect two-level system: its 0-to-1 transition sits near its 1-to-2 transition, and if one qubit's 0-to-1 lines up with another's 1-to-2, gates leak population into states that should never be touched. Each near-coincidence shows up as a gate that misfires, and on a crowded chip these add up fast.

This is one of the genuine walls in front of scaling fixed-frequency designs, not a detail. Because junctions come out of fabrication with scattered frequencies, you cannot simply assign a clean grid of tones and trust the chip to obey — you get what you get, then hope few of them collide. Tunable couplers and flux-tunable qubits dodge the problem by letting you move frequencies after fabrication, at the cost of extra wiring and new noise channels. Better junction targeting shrinks the spread. Neither has made crowding go away; it remains a live constraint that shapes how big a single chip can sensibly get.

Also calledfrequency collisionsspectral crowding频率碰撞频谱拥挤頻率碰撞頻譜擁擠

Imagine wanting to check the state of eight qubits at once, but only running a single wire down into the cold part of the fridge. Frequency-multiplexed readout is the trick that makes this possible. Each qubit gets its own readout resonator tuned to a slightly different frequency, and all of those resonators hang off one shared microwave line called a feedline. To read everyone at once, the control electronics send down a comb of tones, one tone per resonator, and listen to the whole bundle as it comes back. It matters because wiring, not the qubits themselves, is one of the things that keeps quantum chips small.

It works like tuning a radio. Because each resonator answers to a distinct frequency, the tone meant for resonator A barely touches resonator B. So a single combined signal can carry the answers from many qubits at the same time, and a digital filter back at room temperature separates the comb into individual channels, sorting each qubit into a 0 cloud or a 1 cloud. Pulling this off needs an amplifier that stays quiet across a wide band, which is why the broadband traveling-wave parametric amplifier (TWPA) is what unlocked reading dozens of tones through one line.

The honest catch is frequency crowding. Every resonator must sit in its own little slice of the band with guard space around it, so the number you can pack onto one feedline is limited, and tiny fabrication errors can shove two resonators onto the same frequency and ruin both. Today a single line typically multiplexes on the order of ten qubits, sometimes more, which helps with the wiring bottleneck but does not erase it. It is a real, shipping technique, not a finished one.

Also calledmultiplexed readoutfreq-mux readout频分复用读出頻分多工讀出

The frontend is the part of an app you actually see and touch — the buttons, the text, the layout, the things that move when you click. It runs in your browser, on your own device, built out of HTML, CSS, and JavaScript.

It's one half of a pair. The frontend is the shopfront: the windows, the shelves, the person at the counter. The backend is everything behind the wall — the storeroom, the till, the records — which you can read about under backend. The frontend's job is to make all of that feel simple and pleasant to use.

Because it runs on the visitor's machine, the frontend has to be friendly and fast: it shows what's there, gathers what you type or tap, and talks to the backend to fetch or save the real data. Anything you can inspect by right-clicking a page is the frontend.

Also calledfront-endclient-sideclient

A full node is a computer running the blockchain's software that keeps a complete copy of the ledger and independently checks every rule for itself. Rather than asking someone else whether a transaction or block is valid, a full node verifies it from scratch — confirming each signature, making sure no coins are spent twice, and rejecting anything that breaks the protocol. It is the network's grassroots referee, and there are thousands of them.

This is the muscle behind a blockchain's trustlessness and decentralization. Because each full node enforces the rules on its own, no miner, developer, or company can sneak in an invalid transaction or change the supply of coins — the moment they tried, every full node would simply reject the bad block. The shared truth of the network is, in effect, whatever the majority of independent full nodes agree is valid, which is why having many of them spread around the world keeps power from concentrating.

Full nodes differ from lighter clients that save space and bandwidth by storing only block headers and asking full nodes for the rest; those light clients trade some self-sufficiency for convenience. Running your own full node is the strongest way to use a blockchain, because you rely on no one else's word — your software checks the entire history and tells you the truth directly.

Also calledfull node全节点全節點

Full state feedback is a control strategy where the robot's command is computed from every single one of its state variables at once, not just the one thing you happen to care about. Recall that the state is the short list of numbers that fully describes the system's current condition — for a balancing robot, that's its tilt angle, how fast it's tipping, its position, and its rolling speed. In full state feedback, the controller looks at all of these together, multiplies each by a chosen weight (a gain), and adds them up to decide how hard to push the motors. Because the decision draws on the complete picture, it can react to trouble brewing in any variable before it grows.

The big payoff is that this lets engineers shape the robot's behavior almost at will. Every dynamic system has natural tendencies — whether it settles quickly or slowly, smoothly or with oscillations — and these are captured by mathematical fingerprints called poles. By choosing the feedback gains, full state feedback can move those poles to wherever the designer wants, a technique called pole placement. It's like having a set of tuning knobs that directly dial in 'settle fast, no overshoot, no wobble,' rather than guessing and hoping.

The one catch is right there in the name: full. The method assumes you actually know every state variable, but real sensors often measure only some of them — an encoder gives you a joint angle but not its velocity, for instance. In practice this gap is bridged by pairing full state feedback with a state observer, a companion piece of software that estimates the missing variables from the ones you can measure, so the controller still gets the complete state it needs to do its job.

Also calledstate-feedback controlpole placement极点配置極點配置

A function is a reusable little machine. You feed it some inputs, it does one job, and it hands you back a result. Write it once, then call it by name anywhere you need that job done — no need to spell out the steps again.

Think of a coffee machine: water and beans go in (the inputs), it runs its routine, and coffee comes out (the result). You don't rebuild the machine each morning — you just press the button.

This is how programs stay tidy and readable. Instead of copy-pasting the same ten lines all over, you wrap them in a named function and call it. Fix the logic in one place and every caller gets the fix for free.

Also calledmethodproceduresubroutine

Imagine you wrote a detailed test plan for a vending machine: it should accept exact change, give change back, reject foreign coins, handle a sold-out slot, recover after a power blip mid-purchase. Now you hand the machine to a tester and ask, "Which of those situations did you actually try?" Functional coverage is the scoreboard that answers that question — a running tally of which intended behaviors and scenarios your tests genuinely exercised, ticked off one by one as they happen during simulation.

More precisely, functional coverage measures progress against a coverage model you write by hand: a list of the interesting conditions a correct design must handle. You declare cover points (track every value this opcode field took), bins (group those values into buckets that matter — min, max, overflow), and cross coverage (did a read and a write ever collide in the same cycle?). As your tests run — often a flood of constrained-random stimulus in a UVM testbench — the simulator records which bins got hit. The percentage of bins covered is your honest answer to "are we done testing yet?"

The crucial thing it is not is code coverage's cousin in name only. Code coverage (lines, branches, toggles) only tells you which RTL got executed — you can hit 100% of the lines while never testing the one back-to-back-request scenario where the bug actually lives. Functional coverage tracks intent: the scenarios you decided up front were worth checking. High code coverage with low functional coverage means you ran a lot of code blindly; high functional coverage with passing checks is what lets a team sign off with a straight face.

Also calledfunctional coveragefeature coveragecoverage closure (metric)功能覆盖率功能覆蓋率

Functional near-infrared spectroscopy, or fNIRS, reads the brain by shining harmless near-infrared light into the scalp and measuring how much comes back. Such light passes through skin and bone fairly well but is absorbed differently by blood carrying oxygen versus blood that has given its oxygen up. By watching those changes, fNIRS infers which brain areas are drawing more oxygen-rich blood — an indirect sign that they are busy.

It does not measure electrical activity at all; it follows blood, the brain's fuel delivery. When a region works harder, the body sends it fresh oxygenated blood a moment later, and fNIRS catches that shift. In spirit it is a portable, wearable cousin of fMRI — far cheaper and more forgiving of movement, though much less detailed.

Its weakness is speed. Blood flow lags behind the actual firing of neurons by a second or more, so fNIRS is sluggish compared with EEG and cannot follow fast moment-to-moment thought. In return it is non-invasive, reasonably portable, and fairly robust, which makes it appealing for wearable brain–computer interfaces.

Also called近红外脑功能成像近紅外腦功能成像
G

GABA is the brain's main calming chemical messenger — the substance one nerve cell releases to tell its neighbors to quiet down. Brain cells, called neurons, talk to each other by squirting tiny puffs of chemicals across the narrow gap between them. Some of those chemicals shout “fire!” and others whisper “settle down,” and GABA is the most common whisper. Because so much of the brain runs on this one off switch, GABA is often described as the main inhibitory neurotransmitter, where inhibitory simply means firing-reducing and a neurotransmitter is any chemical neurons use to signal one another.

When GABA lands on a receiving neuron, it slots into a matching docking site called a receptor and nudges the cell further away from the threshold it must reach in order to fire its own electrical pulse. In effect, GABA raises the bar, so the neuron needs a stronger push before it will respond. This braking action keeps brain activity from running away into overexcitement: too little GABA is linked to anxiety, restlessness, and seizures, while many calming drugs — including alcohol, anti-anxiety medicines, and some sleep aids — work by boosting GABA's quieting effect. A healthy brain depends on a balance between GABA's brake and the main excitatory accelerator, a messenger called glutamate.

Also calledgamma-aminobutyric acidγ-aminobutyric acid伽马氨基丁酸伽瑪胺基丁酸

Gain modulation is a brain trick for turning the volume of a neuron up or down without changing what tune it is listening for. Imagine a radio: the station you are tuned to stays exactly the same, but you can make it louder or softer. In the same way, a neuron keeps preferring the same thing — say, a line tilted at a certain angle, or a sound from a certain direction — but its overall response to that preferred thing gets bigger or smaller depending on context. The shape of its preference is untouched; only the height is scaled.

Why does this matter? It lets the brain blend two pieces of information in a single cell. A neuron in the visual cortex might fire most for an object at a particular tilt (that is its tune), while signals about where your eyes are pointing quietly multiply its response up or down (that is its volume). Because the multiplying happens without scrambling the cell's preference, downstream neurons can still read off the tilt, yet they also get a flavor of the eye position folded in. This is how attention, eye and head position, and overall arousal can reweight signals — making relevant inputs count for more — without rewiring the circuit. Mechanisms thought to produce it include shifting a neuron's background bombardment of inputs, balanced changes in excitation and inhibition, and the influence of rhythmic network states.

Also calledgain controlresponse gain modulation增益控制增益控制
See alsotuning curve

Gain scheduling is a practical trick for controlling a robot whose behavior changes a lot depending on where it is or what it's doing. The strength of a controller's correction is set by numbers called gains — turn them up and the robot reacts harder; turn them down and it reacts gently. The trouble is that one fixed set of gains that feels just right when a robot arm is folded up close to its base can feel sluggish or even shaky when the arm is stretched out far, because a stretched arm swings with much more inertia. Gain scheduling solves this by keeping several different sets of gains on hand and swapping between them depending on the situation.

The 'schedule' is simply a lookup table or chart that says which gains to use in which operating region. The controller measures a scheduling variable — something easy to read that signals which regime it's in, like joint angle, arm extension, payload weight, or vehicle speed — and then picks (or smoothly blends) the gains tuned for that region. It is like the gears on a bicycle: a low gear for climbing a steep hill, a high gear for cruising on the flat, and you shift as the terrain changes rather than forcing one gear to do everything.

This is one of the oldest and most widely used ways to handle nonlinear systems, because each individual gain set can be designed with simple, well-understood linear tools, and the schedule just stitches those local designs together to cover the whole operating envelope. The main care needed is at the seams: if the gains jump too abruptly when crossing between regions, the robot can lurch, so engineers usually blend the gains gradually and check that the system stays stable everywhere in between.

Also calledscheduled-gain control分段增益控制增益排程控制

Imagine an amplifier has a fixed budget of "speed times strength," and you get to decide how to spend it. You can ask for huge gain, but then the amplifier only keeps that gain over a narrow band of low frequencies; or you can settle for modest gain and enjoy it out to much higher frequencies. You can't have both at once. For most op-amps and single-stage amplifiers, the product of the gain you use and the bandwidth you get is roughly constant — that constant is the gain–bandwidth product, and it sets the ceiling on what the part can do.

The reason is a single dominant pole in the frequency response: above that pole the gain rolls off at a steady 20 dB per decade, meaning every time frequency goes up 10x, the available gain drops 10x. So gain x frequency stays fixed all along that slope. The point where the curve crosses a gain of 1 (0 dB) is the unity-gain frequency, and for a dominant-pole amplifier that crossover frequency is essentially the GBW itself. If a part is spec'd at GBW = 10 MHz and you configure it for a closed-loop gain of 100, your usable bandwidth is only about 10 MHz / 100 = 100 kHz. Want more bandwidth? Use less gain per stage and cascade stages, or pick a faster (higher-GBW) part.

This is why GBW is one of the first numbers you check when picking an amplifier: it's the single figure that tells you the speed-versus-gain trade you're allowed to make. It pairs naturally with slew rate (the large-signal speed limit) — GBW governs how fast small signals can wiggle, slew rate governs how fast big ones can swing.

Also calledGBPunity-gain frequencygain-bandwidth

A gait is the repeating pattern that decides which legs move when — the choreography of stepping. Just as a horse can walk, trot, canter, or gallop, a legged robot has several gaits to choose from, and each is simply a fixed order and timing for lifting and planting feet, repeated cycle after cycle. Picking a gait is like picking a dance step: once chosen, the legs take their turns in the same rhythm over and over until the robot decides to switch.

Different gaits trade stability for speed. In a walk, the legs move one at a time so plenty of feet always stay on the ground, keeping the robot steady but slow. In a trot, a four-legged robot moves diagonal pairs of legs together — front-left with back-right, then front-right with back-left — for a quick, balanced jog. In a gallop the legs fire in a fast, sweeping sequence, and the footfalls follow so rapidly that there is a brief instant when no foot is on the ground at all — the fastest gait but the least stable, since the robot is momentarily airborne and must time its landing.

Engineers boil a gait down to a single revealing number: the duty factor, the fraction of each cycle that a given foot spends on the ground. A duty factor above one-half means each foot is down more than half the time, so several feet always overlap on the ground and the robot is solidly supported — a slow, safe walk. A duty factor below one-half means each foot is up more than it is down, leaving moments with too few feet (or none) touching, which only works at speed using momentum — a run or gallop. So the duty factor neatly separates careful walking gaits from fast running ones.

Also calledlocomotion pattern步态模式walking pattern

A galaxy is a vast city of stars — anywhere from a few million to many hundreds of billions of them — held together by gravity, along with great clouds of gas and dust and a hidden scaffolding of dark matter. The biggest galaxies, like our own, blaze with hundreds of billions of stars; but most galaxies are far smaller dwarfs. Look up on a clear, dark night and the faint, milky band arching overhead is our own galaxy, the Milky Way, seen edge-on from a seat inside it.

Galaxies come in a few basic shapes. Some are graceful spirals, with arms of bright young stars winding out from a glowing center, like cream just stirred into coffee. Others are smooth, featureless ellipticals — fat balls of older, redder stars. And many are irregulars, lumpy and shapeless, often because a near-miss with a neighbor pulled them out of joint. The universe holds something like two trillion of them.

A common mix-up is to picture a galaxy as a crowd of stars packed tightly together. In truth it is mostly empty space: stars sit so far apart that when two galaxies collide, almost no stars ever touch — the two simply glide through each other over hundreds of millions of years, reshuffled by gravity but rarely crashing.

Also calledMilky Wayspiral galaxyelliptical galaxy星系银河系銀河系星河

Game theory is the math of outsmarting each other. It studies situations where several people each make a choice, but how well any one of them does depends not just on what they pick — it depends on what everyone else picks too. Think of two drivers speeding toward a one-lane bridge: each wants to cross first, but if neither yields they both crash. The right move for you hinges entirely on what you expect the other person to do.

Because of that tangle, game theory gives us tools to reason about strategy itself — bidding in an auction, pricing against a rival shop, deciding whether to cooperate or betray. Its most famous puzzle, the prisoner's dilemma, shows the unsettling truth at its heart: two people each acting in their own clear self-interest can end up worse off than if they had simply trusted each other.

A common misconception is that game theory only applies to literal games or to cynical, selfish players. It is really about any situation of interlocking choices — traffic, evolution, nuclear standoffs, even how birds split up a feeding ground. It does not tell you to be selfish; it tells you what happens when everyone is thinking ahead about everyone else.

Also calledstrategic interactiontheory of games博弈论对策论賽局理論prisoner's dilemma

A gamma oscillation is a fast, steady rhythm of electrical activity in the brain, where large groups of nearby neurons take turns firing roughly 30 to 80 times per second. Picture a crowd at a stadium doing a coordinated clap: instead of everyone clapping randomly, they all clap together, pause, and clap again, dozens of times each second. When scientists record the brain's electrical hum, this brisk, tight beat shows up as the gamma band, the fastest of the brain's main rhythms.

This rhythm appears when a small patch of the brain is busy doing focused local work, such as recognizing a face, paying close attention to a sound, or holding a thought in mind. The leading idea is that gamma helps with binding: it gives separate features that belong together, like the color, shape, and motion of one object, a shared rhythmic beat so the brain can treat them as a single thing. Because the gaps between beats are so short, only signals that arrive at just the right moment get through, so the rhythm acts like a timing window that links cells that should cooperate and quiets those that should not.

Also calledgamma rhythmgamma wave伽马波伽马节律伽馬波伽馬節律

A ganglion is a small cluster of nerve cell bodies that sits outside your brain and spinal cord, tucked away along the body's wiring. A neuron (a nerve cell) has a plump central part called the cell body, where the cell keeps its nucleus and does its housekeeping, plus long thin fibers that carry signals to and from it. A ganglion is essentially a little knot where many of these cell bodies gather together in one place, like a roadside relay station where bundles of wires meet, swap connections, and continue on their way.

Why bunch the cell bodies up like this? Grouping them creates a convenient junction where one set of nerves can hand off its message to the next, or where incoming signals from the body can be collected before being passed inward. Ganglia (the plural of ganglion) belong to the peripheral nervous system, meaning the nerves that branch out beyond the brain and spinal cord into your limbs, skin, and organs. For example, the ganglia running in two chains alongside your spine help control automatic jobs like heartbeat and digestion, while others sit near the spinal cord and relay touch and pain signals coming in from the body.

Also callednerve knot神经结神經結

A gas fee is the small payment you make to have the network run your transaction or smart-contract call. Every action on a blockchain, sending coins, swapping tokens, minting a collectible, asks thousands of machines to do work and store the result, and that effort is not free. 'Gas' is simply the unit that measures how much work an action takes, much like a taxi meter measures distance: a quick payment costs little gas, while a heavy operation that touches lots of data costs a lot. You pay for the gas your action uses, in the network's native coin.

Two things set the final fee. The first is how much gas the work consumes, which depends on how complex the action is. The second is the price you offer per unit of gas, which rises and falls with demand: when many people want their transactions processed at once, the network gets congested and people offer more to be picked sooner, like surge pricing when everyone hails a ride during a downpour. The operators who add transactions to the chain tend to choose the ones offering more, so a higher offer usually means a faster confirmation, and a lower one means a longer wait.

Gas fees matter for two reasons. They reward the people who run the network and keep it secure, and they act as a natural brake against spam and runaway programs, since wasting the network's effort costs real money and a contract that exhausts its gas is simply stopped. For everyday users, fees are why a busy moment can be expensive and why much of the push toward faster, layered networks is aimed at making each action cost less.

Also calledgas手续费燃料费手續費燃料費

Every quantum gate is supposed to perform one exact operation on your qubits — a clean flip, a precise rotation, a perfect entangling step. In real hardware the gate never lands quite where you aimed: control pulses are slightly off, qubits drift, stray noise creeps in. Gate fidelity is the score for how close the gate you actually got is to the gate you meant to apply. It runs from 0 to 1 and is usually quoted as a percentage, so 99.9% fidelity means that on average only about one part in a thousand of the operation went astray. The leftover, one minus the fidelity, is the gate error rate.

Fidelity matters most because errors pile up. A short program may chain together thousands of gates, and a tiny slip on each one compounds into a result you can no longer trust. This is why two-qubit gates — the entangling ones that do the real work — get watched most closely: they are the hardest to make clean, so their fidelity usually sets the ceiling on what a machine can actually run.

Fidelity is also the gatekeeper for fault tolerance. Quantum error correction can fix mistakes, but only once the physical error rate drops below a certain threshold — for the popular surface code, very roughly the 1% mark, meaning gates need fidelity above about 99%. Today's best gates sit right around that frontier, which is genuinely exciting, but clearing the threshold is just the entry ticket: you still need many noisy physical qubits to protect a single reliable logical one. We are not there at scale yet.

Also calledgate error rate门错误率閘錯誤率

Every chip rung below this one keeps running into the same wall: as transistors shrink, the gate loses its grip on the channel. The gate is the switch's finger; the channel is the wire it pinches off to stop current. When the channel gets too short and too wide, the finger can only press from the top, and stray voltage from the source and drain starts leaking current through the bottom even when the switch is supposed to be off. FinFET answered this at around 22nm by standing the channel up as a thin vertical fin so the gate could wrap it on three sides. Gate-all-around takes the obvious next step: instead of three sides, wrap all four.

In a GAA device the channel is no longer one fin but a short stack of thin horizontal sheets (hence nanosheet; Intel calls its version RibbonFET), and the gate material is grown completely around each sheet, top, bottom, and both sides. With the gate surrounding the channel on every side, it has the tightest possible electrostatic control, so it can switch a very short channel fully off with very little leakage. That is the limit GAA answers, and it is why the industry moved to it at roughly the 3nm to 2nm generations, where FinFET fins had become too tall, thin, and leaky to push further. A bonus is tunability: you set drive strength by how wide you make the sheets rather than by adding more fins, which gives designers finer control over how much current a transistor can deliver.

Keep in mind that a node name like 3nm is a marketing label, not the physical size of anything on the chip; no gate is literally 3 nanometers long. GAA is best understood as the structure that keeps the gate in charge of an ever-shorter channel, buying CMOS a few more generations of scaling. The next step beyond it, stacking an n-type and a p-type device on top of each other, is CFET, which is still a research and early-development frontier.

Also callednanosheetnanosheet FETRibbonFETGAAFET纳米片奈米片全环绕栅极晶体管環繞式閘極電晶體

A gate-defined quantum dot is a way to make a qubit out of a single electron parked inside an ordinary-looking semiconductor chip. Imagine a tiny patch of silicon with a set of metal gates patterned just above it, like overlapping fingers. By putting the right voltages on those gates, you push the electrons in the material around until exactly one (or a few) gets trapped in a little electrostatic pocket only tens of nanometers wide — the quantum dot. The qubit is then stored not in the electron's position but in its spin, the quantum compass-needle that can point up, down, or any superposition of the two.

What makes this approach appealing to chip engineers is how small and familiar it is. A spin qubit is roughly the size of a single transistor, far tinier than a superconducting qubit, and it is built from the same silicon and silicon-germanium that the chip industry has spent decades perfecting. Purified silicon-28, which has no nuclear spin to jostle the electron, lets the spin hold its quantum state for a remarkably long time. You control the qubit by nudging gate voltages and applying microwave or electric pulses to flip and rotate the spin, and you read it out by a trick called spin-to-charge conversion, where the spin's direction decides whether the electron is allowed to move — a motion a nearby sensor can detect.

The honest catch is uniformity and wiring. Each dot's exact behavior depends on atomic-scale details of the gates and the material, so no two dots come out quite the same, and tuning them by hand does not scale. And while one qubit is tiny, every dot still needs several gate lines fanning out to the warm electronics, so the same dense-wiring and frequency-crowding problems that haunt other platforms show up here too. Spin qubits are a serious, fast-improving contender precisely because they ride on mature chip fabrication — but like every modality, they have not won, and today's devices are still small and finicky.

Also calledsemiconductor spin qubitSi/SiGe spin qubitelectrostatically defined quantum dot半导体自旋量子比特半導體自旋量子位元

A Gaussian distribution is the famous bell-shaped curve: high and humped in the middle, tailing off smoothly toward zero on both sides. In estimation it is the favorite shape for describing a robot's belief, because it captures the two things that matter most about a guess with just two numbers. The first number is the mean — the location of the peak, the robot's single best estimate, its "I think it's right about here." The second is the spread, which says how wide the hump is — narrow and tall for a confident robot, broad and low for an unsure one.

That spread is captured by the variance (and, for a guess about several quantities at once, the covariance matrix); the everyday "plus-or-minus" width you picture is its square root, the standard deviation. The beauty is the economy: instead of tracking thousands of separate possibilities, the robot stores just a center and a width and trusts the bell curve to fill in everything between. Real-world noise also tends to pile up into roughly this shape on its own — many small, independent errors jostling together average out into a bell — so the Gaussian is not just convenient, it is often a genuinely faithful picture of how uncertainty actually behaves.

There is one more gift that makes engineers love it. When you start with a Gaussian belief and push it through the kind of straight-line (linear) math that simple motion and sensors involve, the result is still a Gaussian — the bell may shift and stretch, but it never turns into some lumpy, two-humped monster. This closure under linear operations is exactly why the Kalman filter can run so fast and cleanly: it only ever has to update a mean and a covariance, never an unwieldy cloud of points.

Also callednormal distributionbell curve正态分布钟形曲线

GDSII is the file you actually hand to the foundry — the final, complete picture of your chip, written down as pure geometry. Imagine peeling your finished layout apart into transparent sheets, one per fabrication layer (this metal, that via, the polysilicon, each implant), and on every sheet tracing the exact outlines of every shape: a rectangle here, an L-shaped wire there, a tiny square for a contact. GDSII is the binary stencil book that holds all of those traced polygons. Everything upstream — floorplan, placement, the clock tree, routing, timing signoff, DRC and LVS — exists to produce this one clean file. When it leaves your hands, the design is done; the foundry needs nothing from you but these shapes.

Mechanically, GDSII (the GDS II Stream Format, a binary format from the early 1980s) stores a hierarchy of cells: a cell can hold raw polygons and paths, each tagged with a layer number and a datatype, and it can also reference other cells, placing them by position, rotation, and mirroring, even in repeated arrays. That hierarchy is why a memory with millions of identical bit-cells stays a manageable file size — you define the cell once and instance it everywhere, rather than re-drawing every copy. Crucially, GDSII carries only geometry plus those layer numbers; it does not record nets, timing, or rule intent. The foundry reads it through a layer map that says 'layer 31 datatype 0 is Metal-1,' and uses the shapes on each layer to build the photomask for that step.

Because the format is decades old, it has limits — 16-bit-era assumptions, integer coordinates on a database grid (commonly 1 nm or finer), and files that balloon at advanced nodes. Its modern successor, OASIS (the Open Artwork System Interchange Standard), encodes the same idea far more compactly and is now common for leading-edge tapeouts, but 'GDSII' remains the everyday word for 'the layout you ship.'

Also calledGDS IIGDS2GDSStream formatCalma GDSII版图流格式佈局串流格式

A gear is a toothed wheel that meshes with another toothed wheel so that when one turns, it forces the other to turn too — the teeth lock together so neither can slip. The gear ratio is just the bargain those two wheels strike: it compares how fast and how forcefully one shaft turns against the other. The core idea is a trade. You can have lots of speed with little force, or lots of force with little speed, but you do not get both for free — gears let you swap one for the other to suit the job.

The ratio comes straight from counting teeth. If the driving wheel has 10 teeth and it meshes with a wheel of 30, the big wheel turns only once for every three turns of the small one — a ratio of 3 to 1. The slow-down is exactly threefold, and in the same bargain the turning force at the output is multiplied by roughly the same factor (a little is always lost to friction). This is why a small, fast, weak motor can move a heavy load: route it through gearing and you cash in speed you did not need to buy the strength you did. Run the same gears the other way and you trade strength back for speed.

Gearing is everywhere in robots because raw motors are almost always too fast and too weak for a joint that has to lift, push, or hold steady. The right ratio lets a tiny motor swing a heavy arm or grip with real force. The trade has costs, though: more reduction usually means a stiffer joint that is harder to push backward (less backdrivable), and cheap gears suffer backlash — a sloppy gap where the teeth rattle without driving — which shows up as a small dead zone before the joint responds. Picking the gear ratio is one of the first and most consequential decisions in designing any powered joint.

Also calledgearingreduction ratio齿数比减速比

A gearbox is a sealed set of meshing gears that sits between a motor and the thing it moves, trading away speed to buy more turning force. Most electric motors spin fast but feebly — like a kid spinning a bicycle wheel by flicking it with one finger: fast, but easy to stop. A gearbox is the bike's low gear: it makes the output turn much slower while pushing far harder, so the wheel can now haul a rider up a hill. Inside, a small gear drives a big gear; the big gear turns slower but with more muscle.

The trade is captured by the gear ratio — how many times the input must spin for the output to turn once. A 10:1 gearbox makes the output turn one-tenth as fast but with roughly ten times the torque (turning force). To reach a big ratio without a single enormous gear, designers chain several reduction stages in a row, each stage multiplying the one before, so two 10:1 stages give 100:1. Nothing is free, though: friction between the teeth wastes a slice of the power as heat, so a real gearbox might pass on, say, 80 to 95 percent of what goes in — that fraction is its efficiency.

Also calledgeared transmissionreduction gear减速器減速器

A gene is a short stretch of DNA that carries the instructions for one inherited feature — like the recipe for a single working part of you, often a particular protein. It is the basic unit of heredity: the thing a parent passes to a child that helps shape how that child turns out.

Think of your DNA as a very long cookbook. A gene is one recipe in it — say, the one for the pigment that colors your eyes. You inherit one copy from each parent, and together they help decide the result.

Remarkably, Gregor Mendel worked out that such units must exist in the 1860s, long before anyone knew DNA was the cookbook they were written in. He saw the pattern in his pea plants first; the molecule came much later.

Also calledgenetic unitunit of heredityMendelian factor遗传因子遺傳因子

Gene delivery is the whole problem of getting genetic material into the right cells — the logistics behind every gene therapy. DNA on its own cannot just walk through a cell's protective outer membrane; it needs a courier. So delivery is the make-or-break step: a brilliant gene fix is useless if it never reaches the cells that need it, much like a perfect letter that never gets past the front door.

There are two broad routes. Viral delivery hijacks nature's own infiltrators — emptied viruses that are very good at entering cells. Non-viral delivery uses lab-made methods instead: lipid nanoparticles, tiny fat bubbles that wrap the cargo and merge into the cell, or electroporation, a quick electric pulse that briefly opens pores in the cell membrane so the material can slip through.

Each route trades off how efficiently it gets in, how much it can carry, how long the effect lasts, and whether the immune system reacts. Viral vectors are often very efficient but raise immune and cargo-size limits; non-viral methods can be safer and easier to make but may deliver less. Choosing the right delivery is one of the central design decisions in any gene therapy.

Also called基因递送基因遞送gene delivery system

Gene editing means precisely changing a specific stretch of DNA inside a living cell — rewriting one passage of the genome rather than the whole book. Where older gene therapy mostly added an extra copy of a gene, editing goes to the original text and alters it directly: correcting a misspelled letter, deleting a broken word, or pasting in a fix exactly where it belongs.

It relies on molecular tools that can be aimed at a chosen DNA address. CRISPR is the best-known, but earlier toolkits called TALENs and zinc-finger nucleases work on the same idea: a targeting part that recognises the right sequence, joined to a cutting part that lets the change be made. The cell's own repair machinery then locks in the edit, and the cell carries the new version forward.

Because it changes the source instructions, editing can in principle make a lasting correction with a single treatment. The hard parts are aiming perfectly so nothing else is altered, reaching enough of the right cells, and — for any edit that could be inherited — answering the heavy ethical questions before it ever nears the clinic.

Also called基因编辑基因編輯genome editing

Gene therapy treats disease by changing the instructions inside your cells rather than just easing the symptoms. Your DNA is a recipe book, and some illnesses come from a recipe with a typo. Instead of taking a pill every day to manage the fallout, gene therapy tries to fix, replace, or switch off the faulty recipe at its source — so the cell can finally make the right thing on its own.

It works by getting a piece of genetic material into the right cells. A harmless carrier — often a hollowed-out virus — slips a good copy of a gene inside, or delivers tools that repair or silence a broken one. The cell reads the new instructions and starts producing the protein it was missing, or stops making a harmful one, much like handing a cook the corrected page so every future dish comes out right.

This can be powerful for conditions caused by a single faulty gene, and a handful of gene therapies are now approved after careful trials. But it is hard, expensive, and not a magic switch: getting the gene to the right place, making the change last, and avoiding side effects are real challenges, and most ideas are still being tested rather than proven.

Also called基因疗法基因療法gene transfer

The genesis block is the very first block of a blockchain — block number zero, the root from which the entire chain grows. Every other block points back to the one before it, but the genesis block has nothing before it, so it is the one block that cannot reference a predecessor. It is the anchor: the fixed starting point that the whole tower of later blocks ultimately rests on.

Because there is no earlier block to derive it from, the genesis block is usually hard-coded directly into the software that runs the network. Everyone who joins agrees on the exact same genesis block down to the last byte; if two people disagreed about block zero, they would simply be on two different blockchains. In this sense the genesis block also defines the network's identity — it is the shared origin that every honest participant accepts by default.

Genesis blocks are often given small commemorative touches by their creators, since they are written by hand rather than mined in the ordinary way. Bitcoin's genesis block famously embeds a newspaper headline from January 2009 in its data, both as a timestamp proving it could not have been made earlier and as a quiet statement of purpose. Symbolic or plain, the genesis block's real job is the same everywhere: to be the undisputed first link that gives every later block something solid to chain onto.

Germ theory is the discovery that many diseases are caused by tiny organisms — bacteria, fungi, and other microbes too small to see with the naked eye. Falling ill from an infected wound isn't bad luck or bad air; it's a microscopic invader getting inside you and multiplying. Picture a single uninvited microbe slipping into a cut and, over a day, becoming millions: the redness and the fever are your body fighting that population explosion. (Today the word "germ" is used loosely to cover viruses too, though viruses were identified later and sit on the blurry boundary of what counts as "living.")

This idea, proven in the 1800s by Louis Pasteur and Robert Koch, overturned centuries of belief in "miasma" — the notion that illness rose from foul-smelling air and rotting matter. Once doctors understood that invisible organisms, not stench, spread disease, everything changed: surgeons began washing their hands and sterilizing instruments, cities cleaned their water, and the simple act of boiling, scrubbing, and disinfecting started saving more lives than any medicine of the age.

A common misunderstanding is that germs are everywhere and always out to harm us. In truth, only a small fraction of microbes cause disease; most are harmless, and many — like the bacteria in your gut — keep you alive and well. Germ theory didn't declare war on all microbes; it taught us which ones to guard against, and how.

Also calledgerm theory of diseasemicrobial theory of disease病菌学说病原微生物学说病菌學說

Germline editing means changing the DNA of eggs, sperm, or very early embryos — the cells that pass life on. Because every cell of the resulting person grows from that starting point, the change is woven into all of them, including their own eggs or sperm. So unlike editing a patient's blood or liver, a germline edit does not stop with one person: it is inherited by their children, and their children's children, indefinitely.

Mechanically it uses the same editing tools, such as CRISPR, but applied at the very beginning of development rather than to a fully grown body. That timing is exactly what makes it heritable: edit the single founding cell, and every later cell copies the edit. There is no way to confine the change to one tissue or to take it back from future generations once those people exist.

This permanence is why germline editing is banned or heavily restricted for clinical use almost everywhere. The risks of an unintended change, the impossibility of consent from people not yet born, and the danger of treating human heredity as something to redesign make it one of the most serious ethical lines in all of biology.

Also called生殖系编辑生殖系編輯heritable gene editing

Gimbal lock is what happens when a system that describes orientation with three separate spins suddenly loses one of its directions of turning. The classic picture is a set of three nested rings, called gimbals, mounted one inside another so that together they can point an object any way at all. Most of the time the three rings turn around three different directions and everything is fine. But if you tilt the middle ring far enough, two of the rings end up spinning around the very same line. At that moment you still have three knobs, yet they only let you move in two independent ways. A whole direction of motion has quietly vanished.

This is the price of describing orientation with Euler angles (roll, pitch, yaw). When the pitch reaches straight up or straight down, roll and yaw start turning the object around the same axis, so the math can no longer tell them apart and one degree of freedom is lost. In practice this shows up as a control system that jams or spins wildly when an aircraft, camera, or robot wrist passes through that pose. The fix is not better gimbals but better math: representations like the quaternion or the rotation matrix never line up their axes this way, so robots compute with those internally and only convert back to roll-pitch-yaw for humans to read.

Also called万向节死锁萬向節死鎖

Git is a tool that remembers every version of your code, so you can save your work, look back at what changed, and undo a mistake without losing everything. Think of it as an unlimited 'undo' history for an entire project, with a note on every save explaining what you did.

It's distributed, which is a fancy way of saying every copy of the project is complete: your laptop has the full history, your teammate has the full history, and the server has the full history. You can work, save, and browse the past even with no internet.

One thing to keep straight: git is the tool, GitHub is a website that hosts your git projects online. You can use git all day without ever touching GitHub — they're not the same thing.

Also calledversion controlvcsgit scm

Glial cells, also called neuroglia, are the nervous system's non-neuronal cells — the crew that surrounds, supports, and protects neurons, the cells that actually fire off signals. For a long time scientists thought of them as little more than packing material; in fact the name comes from a Greek word for glue, because they seemed to be the stuff holding the brain together. We now know they are far busier than that. If a neuron is a performer on stage, glia are the whole backstage team: the electricians, the cleaners, the security guards, and the caterers who keep the show running.

There are several kinds, each with a day job. Astrocytes, named for their star-like shape, mop up chemical waste, balance the salts and fluids around neurons, and help feed them with nutrients drawn from nearby blood vessels. Oligodendrocytes in the brain and spinal cord, and Schwann cells out in the body's nerves, wrap axons (the long signal-carrying fibres of neurons) in a fatty insulating sheath called myelin, which lets electrical messages race along far faster. Microglia are the resident immune cells: they patrol the tissue, swallow up germs and debris, and prune away weak or unused connections. Glia even outnumber neurons in much of the brain, so the nervous system is as much their territory as it is the neurons'.

Because glia maintain, insulate, and defend nervous tissue, they sit at the center of both health and disease. When their support falters, neurons struggle: damage to myelin slows or blocks signals, as in multiple sclerosis, while overactive microglia can drive harmful inflammation that contributes to many brain disorders. Studying glia has shifted the picture of the brain from a wiring diagram of neurons alone to a living community in which the supporting cells are essential partners, not just background.

Also calledglianeurogliasupport cells胶质细胞神经胶质膠質細胞神經膠質

A glial scar is the dense, tough wall that the brain or spinal cord builds around a wound — for example after a stroke, a deep cut, or a crushing injury. The main bricklayers are astrocytes, a star-shaped type of support cell that normally feeds neurons and tidies up their surroundings. When tissue is damaged, nearby astrocytes swell, multiply, and stretch out long arms that knit together into a thick, interlocking barrier, joined by other cells and a sticky meshwork of secreted molecules.

This barrier is genuinely helpful at first: it seals off the broken, leaky zone, keeps inflammation and toxic debris from spreading into healthy tissue, and helps restore the blood-brain barrier. The cruel trade-off is that the very same scar blocks repair. Axons — the long signal-carrying fibers of neurons — try to regrow across the gap but run into this wall, which is both a physical obstacle and a chemical one: it is laced with molecules (such as certain sugar-coated proteins) that actively tell a growing axon tip to stop and turn back. So the wound is sealed, but the broken wiring usually never reconnects, which is one big reason injuries to the adult central nervous system so rarely heal back to normal.

Also calledglial scarringastroglial scarreactive gliosis scar胶质瘢痕形成星形胶质瘢痕膠質瘢痕形成星形膠質瘢痕

Getting a robot from where it is to where it wants to be is usually split into two jobs done by two planners. The global planner is the big-picture route-finder: given a map of the whole area, it works out a complete path from start to goal before the robot even moves — the equivalent of opening a map app and seeing the full highlighted route across the city. The local planner is the moment-to-moment driver: as the robot actually rolls along that route, it watches the small patch of world right in front of it and steers second by second to follow the plan while dodging whatever turns up. The two run as a team — one decides the overall direction, the other handles the immediate steering.

They are split this way because each job has a different shape. The global planner can afford to think slowly and broadly: it considers the entire map, so it will not send the robot down a corridor that turns out to be a dead end — but it usually plans against a map drawn earlier and cannot know about a box someone just dropped in the hallway. The local planner is the opposite — it thinks only a few seconds and a few meters ahead, but it reacts fast to live sensor readings, swerving around a person who steps into the path or a chair that was not on the map. Coarse and far-sighted versus reactive and near-sighted: that division of labor is the whole point.

A handy way to picture it is a road trip. The global planner is the route you chose before leaving — the sequence of highways that gets you across the country. The local planner is you behind the wheel: staying in your lane, braking for the car ahead, easing around the pothole, all while keeping the big route in mind. If a road is unexpectedly closed, the local planner cannot fix that on its own; it signals back, and the global planner re-plans a fresh route around the blockage.

Also calledglobal vs local planning全局规划与局部规划全域規劃與區域規劃

Global Workspace Theory is an attempt to explain what makes some brain activity conscious while most of it stays in the dark. Picture your brain as a huge, busy office full of specialist workers, each minding their own narrow task: one team handles color, another recognizes faces, another tracks sounds, another stores memories. Most of the time these teams work quietly in their own corners and never compare notes. The theory says that consciousness happens in a single shared stage — a global workspace — like a spotlight on a theater stage or an announcement over a building-wide loudspeaker. When one piece of information wins the competition to step onto that stage, it gets broadcast to the whole office at once, and that moment of widespread sharing is what it feels like to be aware of something.

The key idea is broadcasting. The brain is full of separate modules that normally cannot talk to one another, so a thought, image, or feeling stays unconscious as long as it is trapped inside its own module. To become conscious, that information has to be amplified and made available to many systems at the same time — memory, language, decision-making, attention — so they can all act on it together. This explains a familiar experience: you can only be vividly aware of one thing at a time, because the workspace is a narrow bottleneck where contents compete and only the winner gets shared widely. It also fits brain recordings showing that a stimulus we consciously notice triggers a sudden, late, brain-wide burst of coordinated activity, while a stimulus we miss stays local and quickly fades.

Proposed by psychologist Bernard Baars and later given a neural version by Stanislas Dehaene and Jean-Pierre Changeux, the theory is influential because it is concrete enough to test and to build into computer models. It does not claim to solve the deepest puzzle of why any physical process should feel like anything at all, but it offers a working account of which information becomes conscious and why: the contents that get globally broadcast, and the unconscious flood that never reaches the shared stage.

Also calledGWTglobal workspaceglobal neuronal workspace全局工作空间全域工作空間全局神经工作空间理论

Glutamate is the brain's main "go" signal — the chemical messenger that one nerve cell uses most often to tell the next cell to fire. When neurons (the brain's wire-like signaling cells) talk to each other, they don't touch; they shoot tiny puffs of a chemical across the narrow gap between them, called a synapse. Glutamate is the chemical released at the vast majority of those excitatory "speed up" connections. If you think of the brain as a city of switches, glutamate is the most common finger that flips a switch to ON.

Here is how it works. One neuron stores glutamate in tiny bubbles and squirts it into the synapse. The glutamate drifts across and lands on docking sites called receptors on the receiving cell. These receptors are gates: when glutamate plugs in, the gates pop open and let positively charged particles rush into the cell, nudging it closer to firing its own signal. This handoff is extremely fast — a fraction of a thousandth of a second — which is why glutamate drives quick thoughts, sensing, and movement. It is also the workhorse of learning and memory, because connections that use glutamate get stronger with repeated use, the way a footpath gets worn smoother the more it is walked.

Because glutamate is so powerful, too much of it is dangerous: a flood can overexcite neurons until they exhaust themselves and die, a kind of damage called excitotoxicity that happens in strokes and some brain injuries. So the brain keeps glutamate on a tight leash, mopping it back up from the synapse within milliseconds. Its calming counterpart is GABA, the brain's main "stop" signal; healthy thinking depends on a constant balance between the two.

Also calledglutamic acidGlu谷氨酸盐麩胺酸鹽

The glymphatic system is the brain's built-in cleaning service — a network of fluid-filled channels that flushes out the waste and litter that brain cells produce as they work. Every busy cell leaves trash behind, but the brain has no lymph vessels of its own (the drainage pipes that carry waste away from the rest of the body). Instead it borrows a clever workaround: it sweeps a clear, watery liquid called cerebrospinal fluid through the tissue, picks up the debris, and carries it out. The name is a mash-up of glia (a family of brain support cells) and lymphatic (the body's usual waste-drainage system), because glial cells run this whole operation.

Here is how the plumbing works. Cerebrospinal fluid hugs the outside of arteries as they dive into the brain, traveling in thin sleeves around each vessel. Star-shaped support cells called astrocytes line these sleeves, and their end-feet are studded with tiny water gates (channels named aquaporin-4) that let the fluid pour out of the sleeves and rush through the spaces between brain cells. As it flows, the fluid mixes with the cell-made waste and then drains away along the veins, taking the garbage with it. Crucially, this rinse runs hardest during deep sleep — the brain's channels actually widen at night — which is one concrete reason sleep leaves the mind feeling cleared and refreshed.

Why does this matter? Among the waste the glymphatic system carries off are sticky proteins such as amyloid-beta, the same gunk that clumps into the plaques seen in Alzheimer's disease. The leading idea is that when this nightly cleaning falters — through poor sleep, aging, or injury — harmful proteins build up instead of being washed out. So the glymphatic system links three things that once seemed unrelated: a good night's sleep, the quiet housekeeping of glial cells, and the long-term health of the brain.

Also calledglymphatic pathwaybrain waste clearance system脑废物清除系统腦廢物清除系統

GNSS, short for Global Navigation Satellite System, is the technology that lets an outdoor robot answer the question "where on Earth am I?" A small antenna on the robot listens to radio signals from a fleet of satellites orbiting high above. Each satellite is essentially a flying clock that keeps broadcasting the precise time and its own location. By measuring how long each signal took to arrive, the robot works out its distance from several satellites at once, and where those distance-spheres cross is its position on the globe. GPS, run by the United States, is the most famous such system; Europe's Galileo, Russia's GLONASS, and China's BeiDou are others, and a modern receiver usually blends them all together, which is why we say GNSS rather than just GPS.

GNSS is wonderfully convenient because it works almost anywhere with a clear view of the sky and needs no local setup, but it is not as precise as beginners expect. A plain receiver is typically accurate to a few meters, which is fine for a delivery drone finding the right street but useless for a robot that must dock to the centimeter. Accuracy also collapses indoors, under trees, or among tall buildings, where signals are blocked or bounce around. To sharpen it, robots use a trick called RTK, Real-Time Kinematics, in which a second receiver sitting at a known fixed spot measures the current satellite errors and radios a correction to the moving robot, pushing accuracy down to a centimeter or two. Because GNSS can drop out or jump, robots almost never trust it alone; they fuse it with wheel motion and an inertial sensor so navigation stays smooth when the sky view is poor.

Also calledGPSsatellite positioning卫星定位衛星定位GNSS

The golden ratio is one special way of cutting a line so the proportions feel just right. Split a stick into a longer piece and a shorter piece, and arrange it so the whole stick is to the long piece exactly as the long piece is to the short one. There's only one cut that does this, and the longer piece always turns out about 1.618 times the shorter. That number — roughly 1.618 — is the golden ratio, written with the Greek letter φ (phi).

What makes φ feel special is that it keeps its own proportion. A rectangle built on the golden ratio can have a square sliced off one end and leave behind a smaller rectangle of the very same shape — and you can keep doing it forever, spiralling inward. That self-repeating quality is why artists, architects, and designers have reached for it for centuries, from the proportions of a book page to the lines of a building.

But it's worth being careful. The golden ratio shows up in genuine places — in the geometry of a five-pointed star, and as the surprising limit of the Fibonacci sequence (1, 1, 2, 3, 5, 8…), where each pair of neighbours edges closer to φ. Yet many famous claims — that the Parthenon, the Mona Lisa, or every seashell was secretly designed around it — are romantic exaggerations that don't survive careful measurement. φ is beautiful and real; it just isn't hiding behind everything.

Also calledphiφgolden sectiongolden meandivine proportionextreme and mean ratio黄金分割黃金分割黄金比中末比

The Goldman equation is a formula that predicts the resting voltage across a brain cell's thin outer wall, the membrane, when several different charged particles are tugging at it at once. Those particles are ions — atoms carrying a tiny electrical charge — mainly sodium, potassium, and chloride. Each kind of ion sits in different amounts inside versus outside the cell, and each is allowed to leak through the membrane at its own rate. The equation takes all of those pulls and blends them into a single number, the cell's overall membrane voltage, measured in thousandths of a volt.

The clever part is the word weighted. Picture a tug-of-war where some teams have many strong players and others have only a few weak ones: the rope settles closest to the strongest team. Here the strength of each ion is its permeability — how easily the membrane lets that ion through — and the equation gives each ion a say in proportion to that permeability. An ion the membrane ignores barely shifts the answer, while an ion it lets through freely dominates it. This is exactly why a resting neuron sits near potassium's preferred voltage (the membrane is mostly leaky to potassium), yet swings toward sodium's during a nerve impulse, when sodium gates suddenly fling open and sodium's permeability shoots up.

An older, simpler formula called the Nernst equation handles only one ion at a time and asks where its voltage would settle if it were the only player. The Goldman equation is the realistic upgrade: it accepts that a real membrane is leaky to many ions together and folds them all into one weighted average. That makes it the standard tool for explaining the resting membrane potential and how that voltage drifts whenever the membrane's permeabilities change.

Also calledGoldman-Hodgkin-Katz equationGHK voltage equation戈德曼-霍奇金-卡茨方程戈德曼-霍奇金-卡茨方程

The Golgi stain is a laboratory recipe that turns a tiny fraction of brain cells solid black, so that single neurons stand out sharply against a clear, pale background. Brain tissue is soaked first in a chromium salt and then in silver nitrate; inside a few scattered cells, these two chemicals react to form dark crystals of silver chromate that fill the cell completely. The strange and lucky part is that this only happens to maybe one cell in a hundred, seemingly at random. If every neuron were blackened, the slice would look like a solid ink blot and you could see nothing; because only a sprinkling light up, each one can finally be traced on its own.

Why this matters: a neuron is not a simple blob but a branching tree, with a cell body, a bushy crown of fine receiving branches called dendrites, and a long output cable. The Golgi stain fills all of these with black, revealing the full dendritic arbor — the spreading, antler-like shape of a single cell — in a way no earlier method could. Invented by the Italian scientist Camillo Golgi in 1873, it became the favorite tool of Santiago Ramón y Cajal, who used it to draw thousands of neuron shapes and to argue that the brain is built from separate cells touching one another, not one continuous web. The two men shared the 1906 Nobel Prize, and this single black-and-clear trick is a big reason we know what neurons look like at all.

Also calledGolgi methodsilver stainingblack reaction黑色反应鍍銀法高尔基法

A Golgi tendon organ is a tiny sensor tucked into the tendon, the tough cord that ties a muscle to a bone. Its one job is to feel how hard the muscle is pulling. Think of it like a strain gauge built into a tow rope: the harder you haul, the more the rope stretches and the more strongly the gauge reports the load. When a muscle contracts, it tugs on its tendon, and the Golgi tendon organ sitting in that tendon gets squeezed and stretched in proportion to the pulling force. It then fires off nerve signals to the spinal cord and brain saying, in effect, "this much tension right now."

This matters because muscles can generate enough force to tear themselves or snap a tendon, so the body needs a way to measure effort, not just movement. Each Golgi tendon organ wraps around a small bundle of tendon fibers; when those fibers are pulled taut, they pinch the nerve endings threaded through them and trigger signals. If the tension climbs dangerously high, the spinal cord can answer with a quick reflex that tells the straining muscle to ease off, acting like a built-in safety valve. Moment to moment, these tension reports also let the nervous system fine-tune how forcefully you grip a cup or hold a heavy bag, so you neither crush it nor drop it.

Also calledGTOneurotendinous spindle腱器官腱梭高尔基腱梭高爾基腱梭

Good manufacturing practice, or GMP, is the strict set of quality and safety standards for making medicines — including cell and gene therapies — the same way every time, free of contamination. Think of it as the difference between a home kitchen and a certified commercial one: not just a tasty result once, but clean surfaces, logged ingredients, trained staff, and a paper trail proving every batch was made right.

Under GMP, every step is controlled, documented, and checked: where materials came from, who did what, the cleanliness of the room, and tests confirming the product is what it claims and carries no stray microbes. If something goes wrong, the records let people trace exactly which batch and which step to blame.

This matters enormously for living therapies, where the 'product' is delicate cells that can carry infection or vary between batches. GMP is a big reason real therapies cost so much and take so long — and a sharp dividing line between regulated medicine and unregulated stem-cell clinics.

Also called良好生产规范良好生產規範GMP

A governance token is a crypto token that gives its holder a say in how a decentralized project is run. Where an ordinary token might just be money or a collectible, a governance token works like a voting share: holding it lets you help decide the project's direction. The simplest mental model is shareholder voting, but rebuilt in the open — except here the voting register and the rules are public code on a blockchain rather than a private corporate record.

In practice, decisions are made through proposals and votes. Someone suggests a change — adjust a fee, fund a project, upgrade the software — and token holders vote, usually with weight proportional to how many tokens they hold. If the vote passes the required threshold, smart contracts can carry the decision out automatically, with no executive needed to sign off. The token is the key that lets you both put ideas forward and weigh in on everyone else's.

Governance tokens matter because they are how a community actually steers a DAO or a DeFi protocol without a company in charge. They distribute control over a shared system to the people who use it, so the rules can change over time through open votes rather than by one owner's decree. They are the practical mechanism that turns "decentralized" from a slogan into a working decision-making process.

Also calledgovernance token治理代币治理代幣

A graded potential is a small, local change in the electrical charge across a neuron's outer skin (its membrane) whose size matches the size of whatever poked the cell. A gentle nudge makes a tiny voltage bump; a stronger nudge makes a bigger one. Think of it like a dimmer switch rather than an on/off light switch: the brightness slides smoothly up and down with how hard you turn the knob. This is different from the neuron's all-or-nothing signal — the action potential, the brief electrical spike that fires at full strength or not at all.

These ripples usually start where a neuron receives input, such as at a connection from another cell (a synapse) or at a sensory ending that feels touch or light. An incoming signal briefly opens tiny gated pores in the membrane (ion channels), letting charged particles flow in or out and tilting the local voltage up or down. But a graded potential fades as it spreads, growing weaker the farther it travels from where it began, like a splash in a pond that flattens into stillness. Its job is to add things up: many small graded potentials arriving close together can pile on top of one another, and if their combined push reaches a tipping point at the neuron's launch zone, they trigger a full action potential that races down the cell to pass the message along.

Also calledlocal potentialelectrotonic potential局部电位局部電位分级电位变化分級電位變化

Gradient descent is how a machine learning model teaches itself to make fewer mistakes. Picture the model's error as a vast, hilly landscape: every possible setting of its internal numbers (its parameters) is a spot on the terrain, and the height at each spot is how wrong the model is there. Gradient descent is simply walking downhill. From wherever you stand, you feel which way the ground slopes steepest, take a small step that way, and repeat — again and again, until you settle into a valley where the error is low.

The size of each step is set by a single dial called the learning rate. Tiny steps make the journey slow but careful; huge steps are fast but reckless — overshoot the valley and you can go bouncing up the far slope, never settling. Getting that dial right is one of the quiet arts of training a model.

A common misreading is to imagine the model can see the whole landscape and leap straight to the lowest point. It can't. It only knows the slope right under its feet — the local downhill direction, the "gradient." So it inches its way down blindly, one footstep at a time, which is exactly why training can take millions of steps, and why it can sometimes get stuck in a valley that isn't the deepest one.

Also calledsteepest descent最速下降法

Graft-versus-host disease, or GvHD, is rejection turned inside out. In ordinary rejection the recipient's body attacks the graft. In GvHD the graft attacks the recipient: transplanted donor immune cells, finding themselves in a body they read as foreign, turn on the host's own tissues. Imagine inviting a security team into your home and having them decide that you are the intruder.

It happens mainly after bone-marrow or blood-stem-cell transplants, because those grafts include living donor immune cells. Once inside, those cells scan the recipient's markers, judge them 'not self', and attack — often hitting skin, gut, and liver, the way an immune system would attack any invader.

GvHD is a serious, sometimes life-threatening risk of these transplants. Doctors guard against it by matching donor and recipient closely and by carefully managing the immune system, balancing this danger against the benefit the transplant is meant to provide.

Also called移植物抗宿主病GvHDGVHD

Grammar is the hidden machinery of a language — the whole system of rules that lets a string of sounds or words add up to meaning. It tells us how to build words, how to slot them together, and which combinations land as natural and which as nonsense. You carry this machinery in your head: "the cat sat on the mat" feels right, "mat the on sat cat the" feels broken, and no one had to teach you why. That instant sense of right and wrong is grammar at work.

Here's the twist most people miss. There are two very different things both called grammar. Descriptive grammar is what linguists do: they watch how people actually speak and write down the real, often beautifully intricate rules behind it — including the rules of casual speech and every dialect. Prescriptive grammar is the list of dos and don'ts from style guides and schoolteachers: don't split infinitives, never end a sentence with a preposition. The first describes; the second judges.

So when someone says a way of speaking has "no grammar" or is "just lazy," they've mixed the two up. Every variety of every language — from formal writing to street slang to a signed language — runs on a rich, consistent grammar. What people usually mean is that it breaks the prescriptive rules of a prestige standard, which is a social preference, not a fact about whether the language has rules. It always does.

Also calleddescriptive grammarprescriptive grammarsyntax and morphology描写语法规定语法描寫語法規定語法文法

Graph search is a family of methods for finding a route when the world has been boiled down to a graph — a set of dots (called nodes), each standing for a place or state the robot could be in, joined by lines (called edges) that say "you can step directly from this dot to that one," often with a cost attached for how expensive or long that step is. Picture a subway map: stations are the dots, the track segments between them are the lines, and you want the best way from your station to your destination. Graph search is simply the disciplined procedure for finding that best way through such a web of connections.

To use it for robot motion, you first have to turn the smooth, continuous space of poses into one of these graphs — typically by chopping it into a grid of cells, or by scattering sample poses and linking nearby safe ones. Once that graph exists, a graph-search algorithm explores it outward from the start, fanning across edges and keeping track of the cheapest way reached to each node so far, until it touches the goal; then it traces that record backward to read out the winning route. This is the backbone of a huge share of practical planners — the well-known names Dijkstra's algorithm and A* are both graph searches — and its great strength is a guarantee: if a route through the graph exists, these searches will find it, and (for Dijkstra, or for A* with an admissible cost estimate) it will be the cheapest one in the graph.

Also calledgraph search图搜索圖搜尋

A grasp is the moment a robot hand takes hold of an object, touching it at a few well-chosen spots so that the object can no longer slip, tip, or fall out. Think of how you pick up a coffee mug: your fingers press on a few places, and once they do, the mug moves with your hand instead of sliding around on its own. A robot grasp is the same idea — a small set of contact points that, together, pin the object to the hand and let the robot carry, lift, or place it with confidence.

What makes a grasp good is not how hard the robot squeezes but where it touches and how those touches push back against the world. Every shove, tug, or shake on the object is a force trying to move it; a solid grasp arranges its contacts — and the friction at each one — so that they can balance out whatever the world throws at the object, keeping it locked to the hand. A bad grasp leaves a gap: some twist or slide the contacts cannot resist, and the object wobbles or drops. So a grasp is really a little balance of forces, not just a clamp.

Grasping is harder for robots than it looks because objects come in endless shapes, weights, and surfaces, and the hand often cannot see exactly where everything is. A grasp that works on a smooth box may fail on a slippery bottle or a floppy bag. This is why grasping sits at the heart of robot manipulation: almost every useful job — sorting parcels, loading a dishwasher, assembling a part — begins with the simple-sounding but surprisingly deep act of getting a firm hold.

Also calledthe grasp握持抓握

Grasp planning is the robot's homework before it touches anything: looking at an object and working out exactly where to put each finger and how to angle the hand so the grab will hold. You do this without thinking when you reach for a pen — your hand already knows to land on the barrel, not the slippery tip. A robot has to compute it. Given the object's shape and where it sits, grasp planning chooses the contact points and the hand pose that turn a risky reach into a reliable hold.

The planner usually generates many candidate grasps and then scores them, keeping the best. A good candidate is one whose contacts can resist being pushed or twisted from any direction, that the fingers can actually reach without bumping the table or the object itself, and that leaves the robot in a comfortable pose to lift and move next. Modern systems often learn this from huge piles of examples — a camera sees the object, and a trained model proposes where to grip — while classic systems reason directly from the geometry of the shape.

Grasp planning matters because a robot that grips in the wrong spot can wreck the whole task: it knocks the object over, crushes it, or drops it halfway. By thinking first, the robot turns the messy variety of the real world — odd shapes, clutter, partial views — into one concrete, well-aimed move. It is the bridge between seeing an object and successfully holding it.

Also calledgrasp synthesis抓取合成

A grasp quality metric is a number that scores how good a particular way of gripping an object is — how firmly and reliably it will hold. When a robot looks at an object, there are usually many possible places and angles to grab it: by the rim, by the body, edge-on, top-down. The metric is the yardstick that lets the robot compare these candidate grasps and pick the best one, the way a number from 0 to 10 lets you rank choices instead of just guessing.

What does a high score actually mean? Roughly, a strong grasp is one that will not let the object slip, twist, or fall no matter which direction it gets nudged from — you could shake it and the object stays put. A weak grasp is one where a small bump or a slightly heavier-than-expected object would break the hold. Good metrics reward grips where the contacts press from opposing sides so the object is trapped, where the contact patches are wide and well placed, and where the hold resists pushes and twists coming from any direction. They penalize a grasp that pinches one tiny corner the object can easily pivot out of.

The point of having a single score is automation: a robot can generate hundreds of possible grasps in a fraction of a second, run each through the metric, and act on the highest-scoring one — no human picking by eye. The catch is that the score is only as honest as its assumptions; if the real object is heavier or more slippery than the metric expected, a top-scoring grasp can still fail, which is why quality scores are usually paired with planning that allows for being wrong.

Also calledgrasp quality scoregrasp metric抓取质量评分抓取品質評分

A gravitational wave is a ripple in the fabric of space and time itself, set off when very heavy objects whip around or smash together — like two black holes spiraling into each other. As the wave rolls past, it gently stretches space in one direction and squeezes it in another, then snaps back.

Einstein predicted these waves a century ago, but they're so faint that no one could catch one until 2015, when a giant instrument called LIGO felt a tremor from black holes that collided over a billion years ago. The result was announced to the world in 2016.

The effect is mind-bendingly tiny: as a wave passes through you, your height changes by far less than the width of a single atom. That's why detecting one took some of the most sensitive machines humans have ever built.

Also calledgravity wavespacetime rippleLIGO引力波重力波时空涟漪時空漣漪
See alsospacetime

Gravity compensation is the trick of calculating exactly how hard gravity is pulling down on each part of a robot arm at this very moment, and then telling the motors to push back with precisely that much force — no more, no less. The result is an arm that feels weightless: it neither sags toward the floor nor drifts upward. Imagine holding a heavy ladder perfectly still in mid-air. Most of your effort is not about moving it; it is just spent fighting gravity so the ladder stops where you let go. Gravity compensation hands that exact 'holding' effort to the robot's own motors, so they hold the arm up on their own.

Why does this matter so much? A robot arm is a chain of heavy links, and the pull of gravity on each link depends on how the arm is currently folded — an outstretched arm needs far more holding torque at the shoulder than a tucked-in one. The robot uses a math model of its own masses and lengths to work out, joint by joint, the steady torque needed just to stay put against gravity. Once that baseline torque is supplied automatically, any extra command from the controller goes purely into the motion you actually want, instead of being wasted on holding weight up. This makes the arm easier to control precisely, and it lets a person grab the arm and guide it by hand as if it floated, which is how many robots are 'taught' new motions.

Also calledgravity cancellation重力抵消抗重力扭矩

If you cut open a fresh brain, you would see two shades. The darker, pinkish-gray regions are gray matter, and the paler, almost ivory-white regions are white matter. They are not different organs but two ways the brain's tissue is organized. Gray matter is where the work of thinking gets done, and white matter is the wiring that carries the results from one place to another.

Gray matter is packed with the cell bodies of neurons (the brain's signaling cells) along with their bushy branches, where messages are received and decisions are made. White matter, by contrast, is full of axons: the long, cable-like tails that neurons use to send signals over distance. Each axon is wrapped in a fatty insulating sheath called myelin, and it is this pale fat that gives white matter its color and lets signals travel fast.

A useful picture is a city: gray matter is the buildings where people meet and get things done, while white matter is the highways and phone lines connecting one neighborhood to the next. In the wrinkled outer shell of the brain, gray matter sits on the surface and white matter lies beneath it, so the thinking layer is on the outside and its connecting cables run deep inside.

Also calledgrey matterwhite matter tracts灰质白质灰質白質

The greenhouse effect is the trick of air that keeps Earth warm enough to live on. Sunlight pours in through the atmosphere and heats the ground, which then radiates that warmth back up as invisible infrared heat. Certain gases — carbon dioxide, water vapor, methane — let the sunlight through but soak up the outgoing heat and send much of it back down. Think of a parked car on a sunny day: light gets in through the glass, but the warmth can't easily get out, so it builds up inside.

This is not a flaw — it's a blessing. Without any greenhouse effect, Earth's surface would average a brutal −18°C, frozen and lifeless. That blanket of gases is the reason our planet is a comfortable, living world rather than a ball of ice. Every sunset that doesn't plunge you into instant deep freeze is the greenhouse effect doing its quiet work.

The trouble is too much of a good thing. By burning coal, oil, and gas, we've thickened the blanket — adding carbon dioxide faster than nature can remove it — so more heat stays trapped and the whole planet slowly warms. One common mix-up: the greenhouse effect itself is natural and ancient; what's new and dangerous is how human emissions are turning the thermostat up.

Also calledgreenhouse warming温室效应溫室效應greenhouse gases温室气体

A gripper is the robot's hand — the device at the very end of an arm whose whole job is to take hold of an object and not let go until told to. If the arm is what reaches, the gripper is what grasps. It is one kind of end effector, the swappable tool a robot wears at its wrist, and it is the part that finally touches the work: closing around a bottle, pinching a screw, or cradling an egg without crushing it.

The most common design is the parallel-jaw gripper: two flat fingers that slide straight toward each other to clamp an object from two sides, like a small powered vise. It is simple, strong, and reliable, but it only really knows one move — squeeze. A multi-fingered gripper, by contrast, has three or more jointed fingers that can curl and spread, wrapping around oddly shaped things the way a human hand does and even rolling an object between its fingertips. More fingers and joints mean more shapes it can hold, but also more motors to drive and more decisions to plan.

Choosing a gripper is mostly about matching it to the objects and the touch they need. Jaws can be wide or narrow, hard steel or soft rubber, fast or gentle; many add a touch sensor so the robot can feel how firmly it is holding and stop before it slips or breaks. The grip a robot picks — where to place the fingers and how hard to press — is called the grasp, and a good gripper is one that makes a wide range of safe, steady grasps easy.

Also calledrobot hand末端夹持器機械手爪

Gross domestic product is the price tag on everything an economy makes. Add up the market value of all the goods and services a country produces in a year — the haircuts and the cars, the software and the school lunches — and that single, enormous number is its GDP. Think of it as the nation's total annual receipt: a measure of how much stuff got made and sold.

Economists lean on it because it's the handiest yardstick of an economy's size and health. When GDP grows, more is being produced, which usually means more jobs and fatter paychecks; when it shrinks for months on end, that's the textbook signal of a recession. To compare across countries or eras, they often divide by population (GDP per person) and strip out rising prices ("real" GDP) so they're measuring more output, not just bigger price tags.

But GDP is a famously narrow ruler, and that's its great misconception. It counts only what carries a market price, so a parent raising children at home, a volunteer cleaning a park, or a sunny afternoon adds nothing to it — while a traffic jam burning extra gasoline nudges it up. It measures the size of the pie, not how it's sliced, nor whether making it left the air dirtier. A high GDP says an economy is busy; it doesn't say its people are well.

Also calledGDPgross domestic productreal GDPGDP per capita国内生产总值人均GDP國內生產毛額

Imagine a phone book that isn't sorted by name at all — just a random pile of N entries — and you want the one entry that matches a name you know. Classically you have no choice but to check entries one by one, and on average you'll look through about half of them, so the work grows with N. Grover's algorithm is a quantum method that finds that marked entry in roughly the square root of N steps instead. For a list of a million, that's about a thousand checks rather than half a million. It needs an 'oracle': a way to recognize the right answer when it sees it, even if it can't directly point to where the answer is.

Here's the honest mechanism, because it's easy to mishear. The algorithm does not 'try all answers at once' and then read off the winner. It starts with all possibilities sharing equal amplitude, then repeats a two-step move — the oracle flips the sign of the marked answer's amplitude, and a second operation reflects all amplitudes about their average. Each round nudges a little more amplitude toward the correct answer and away from the rest, a process called amplitude amplification. After about sqrt(N) rounds the correct outcome has a high probability of being measured. Run too many rounds and the amplitude overshoots and starts shrinking again, so the number of iterations actually matters.

Also calledGrover searchquantum search algorithmGrover 搜索量子搜索算法Grover 搜尋量子搜尋演算法

A growth cone is the tiny, restless tip at the very end of a growing nerve fiber. As a young neuron (nerve cell) builds its long cable-like extensions — the axon that sends signals out and the dendrites that take signals in — it does not just shove them outward blindly. Instead, the leading edge swells into a hand-shaped structure, the growth cone, that gropes its way forward through the crowded tissue of a developing brain or body, feeling around like a fingertip reading the path ahead. Picture the front of a vine creeping along a wall: it reaches, touches, grips where the surface is good, and pulls the rest of the stem along behind it.

The growth cone is constantly in motion. It puts out thin, sticky feelers — finger-like spikes called filopodia and thin webs between them called lamellipodia — that stretch out, sample the surroundings, and then either grab on or pull back. These feelers are studded with sensors that read chemical signposts in the environment: some molecules say come this way, others say stay away. By following the attractive signs and shrinking back from the repulsive ones, the growth cone steers the fiber, turning left or right, speeding up or slowing down, until the axon arrives at exactly the right target — say, the precise muscle or brain region it is meant to connect to. This is how the staggering wiring of the nervous system, with its billions of correctly placed connections, gets laid down in the first place.

When a growth cone finally reaches its destination, it stops exploring and settles down, transforming into a synapse — the junction where one neuron passes messages to the next. So the growth cone is essentially a temporary pathfinder: it exists to do the hard work of navigation during development and then retires once the connection is made. The same machinery can reawaken when nerves try to regrow after injury, which is why understanding growth cones matters not only for how brains are built, but for how damaged ones might be repaired.

Also calledaxonal growth coneneuronal growth cone轴突生长锥軸突生長錐

Growth factors are signaling proteins that act as instructions to cells, telling them to divide, move, or specialize into a particular cell type. They are the body's text messages: a cell releases one, it drifts to neighboring cells, and those that can read it change their behavior in response. This chemical chatter is how a body coordinates healing, growth, and the day-to-day upkeep of tissue.

Each growth factor fits a matching receptor on a target cell like a key in a lock. When the key turns, it flips switches inside the cell that may say grow now, crawl toward the wound, build a blood vessel here, or become a bone cell. Different factors carry different messages, and the exact mix and timing a cell receives steers what it ultimately does.

In regenerative medicine, growth factors are the third ingredient alongside cells and scaffolds — the instructions that tell the other two how to build. Engineers add them to scaffolds or bioinks to guide young tissue. But they are powerful and short-lived, and the same signal that heals can, in the wrong amount or place, drive unwanted growth, so dosing and delivery must be handled with great care.

Also called生长因子生長因子

The Grübler–Kutzbach criterion is a simple counting formula that tells you how many independent ways a machine made of rigid bars and joints can move, before you build it or even pick up a wrench. Imagine a folding chair, a robot arm, or a car suspension as a set of stiff parts (called links) pinned together at connections (called joints). Each loose part, floating freely, could move in several ways; each joint then ties parts together and takes some of those freedoms away. The criterion adds up the freedoms and subtracts the restrictions to give one number, called the mobility, which is how many separate motions you must control to fully command the mechanism.

The recipe is the same every time. You start by giving every moving link its full quota of freedoms (three in a flat, drawing-board world; six in real 3-D space), but you do not count the fixed base, since it never moves. Then, for every joint, you subtract the motions it forbids: a hinge, for example, allows only turning and blocks everything else. Add up what is left and you have the mobility. If the answer is one, the machine has a single degree of freedom and one motor or handle controls all of it, like a pair of scissors. If it is two or three, you need that many independent drives. If it comes out as zero or less, the parts are locked into a rigid frame that cannot move at all.

Engineers reach for this criterion at the very first sketch, because it catches expensive mistakes early. It instantly reveals whether a proposed linkage will actually move, whether it has just enough motors, or whether it is over-constrained and will jam or bind. It works for everything from a humble door hinge to a six-legged Stewart platform. One caveat: it counts only the general case and can be fooled by special geometries (perfectly parallel bars, shared pivot lines) that grant a sneaky extra motion the formula misses, so a clear-eyed designer always sanity-checks the number against the actual shape of the machine.

Also calledmobility formulaGrübler count自由度公式活动度公式

The gut-brain axis is the two-way communication line that runs between your digestive tract and your brain, letting each one sense and influence what the other is doing. Think of it as a busy phone line with traffic flowing in both directions: when you are anxious, your brain can send messages down that make your stomach churn or send you running to the bathroom; and when something is off in your gut, signals travel back up that can shade your mood, appetite, and alertness. The familiar feeling of butterflies before a big moment, or of losing your appetite when you are upset, is this axis at work.

The conversation travels along several routes at once. A large nerve called the vagus nerve acts like a direct cable, carrying electrical signals back and forth; hormones released into the blood act as slower chemical messages; and the immune system passes along its own status reports. The gut even has its own dense web of nerve cells, the enteric nervous system, which handles digestion on its own but stays in constant touch with the head brain. Adding to all this, the trillions of bacteria living in the intestines, known as the gut microbiome, produce chemicals that can feed into these channels, which is why diet and gut health are now studied for their links to stress, mood, and even some brain disorders.

Also calledgut–brain connectionbrain-gut axis肠脑轴脑肠轴腸腦軸腦腸軸

Gyrification is the way the outer sheet of the brain — the cortex, the thin wrinkled layer where most of our thinking happens — folds in on itself as the brain grows. Instead of staying smooth like a balloon, the surface buckles into ridges and grooves. The bumps that stick out are called gyri (one is a gyrus), and the valleys between them are called sulci (one is a sulcus). It is like crumpling a large sheet of paper so it fits inside a small box: the folding lets a big surface squeeze into a small skull.

The reason this matters is that thinking power depends a lot on how much cortex you have, and folding is nature's trick for packing in more. A human cortex unfolded would be roughly the size of a large dinner napkin, yet it tucks neatly into a head the size of a melon. Folding also shortens the wiring: areas that need to talk to each other end up sitting closer together across a fold, so signals travel faster. The pattern is not random — major folds form in much the same places in every healthy person, which is why brain maps look broadly alike from one individual to the next.

How much a brain folds varies enormously across species, and it tracks roughly with brain size and complexity. Mice and rats have almost smooth (lissencephalic) brains with few or no folds, because their cortex is small enough to fit without crumpling. Humans, dolphins, and elephants have deeply folded brains. When folding goes wrong during development in humans, the result can be too few folds (lissencephaly) or too many small ones (polymicrogyria), both of which are linked to serious problems with learning and movement.

Also calledcortical folding脑皮质折叠腦皮質折疊gyrogenesis

A gyroscope is a sensor that measures how fast something is turning — its rate of rotation. Where an accelerometer feels being pushed in a straight line, a gyroscope feels spinning. If a robot pivots quickly to the left, its gyroscope reports a high turning speed; when the robot holds still, the gyroscope reads near zero. It does not say which way the robot is facing, only how fast that facing is changing right now, like a speedometer for rotation rather than an arrow on a compass.

Like its accelerometer cousin, a modern gyroscope is a MEMS chip, with tiny vibrating structures etched into silicon. The trick is subtle but elegant: when a vibrating object is turned, a faint sideways force appears on it (the Coriolis effect), and the chip measures that force to figure out the turning speed. There is no real spinning wheel inside — just microscopic parts buzzing back and forth, sensing the gentle push that rotation creates.

Knowing the turning rate, a robot can work out its actual heading by adding up the rotation over time — a process called integration, which is just continuous accumulation, like keeping a running total of every small turn. The snag is drift: each reading carries a sliver of error, and accumulating thousands of them per second lets the angle estimate creep away from the truth, so a gyro left alone slowly "thinks" it has turned when it has not. That is why a gyroscope is usually teamed with an accelerometer inside an IMU, so the steady pull of gravity can keep nudging the estimate back honest.

Also calledgyro陀螺仪传感器角速度计
H

Habeas corpus is your right to ask a judge one blunt question: "By what authority are you holding me?" If the police or the state lock someone up, this is the rope that lets a court haul the case into the open and demand a reason. Imagine a friend who vanishes into a cell; with habeas corpus, a judge can order the jailer to physically bring that person to court and justify the detention — or set them free.

It matters because it turns imprisonment into something the powerful must explain, not just do. A government can still arrest you, but — except in rare, openly declared emergencies like rebellion or invasion, when the writ itself can be suspended — it cannot make you disappear indefinitely with no charge, no hearing, and no answer. The body must be produced; the reason must be shown. That single demand has, for centuries, been one of the strongest brakes on tyranny.

A common mix-up: habeas corpus does not decide whether you're guilty, and it isn't a trial. It only tests whether your detention is lawful in the first place. You might be brought before the court, the state shows valid grounds, and you go right back to your cell — the point was never freedom, but accountability for the locking of the door.

Also calledthe Great Writwrit of habeas corpus人身保护令状提审令人身保護令狀大令狀

Habituation and sensitization are the two simplest ways a nervous system learns: it learns to react less, or to react more, to something it keeps meeting. They are called non-associative learning, meaning the animal is not linking two different events together — it is simply adjusting its reaction to one repeated thing. In habituation, a stimulus that happens over and over without any consequence gradually stops grabbing your attention. Think of moving in next to a railway: the first night the trains jolt you awake, but after a week you sleep right through them. In sensitization, the opposite happens — after something painful or alarming, you become jumpier and respond more strongly even to mild, harmless events. After a near car crash, your heart leaps at the next honk that would normally not faze you.

These two pulls work in different directions, and which one wins depends on the situation. Habituation lets a creature ignore the harmless and the familiar so it does not waste energy reacting to every rustle of leaves; sensitization makes it extra-watchful when the world has just turned dangerous. Both are genuine learning, not mere fatigue: a habituated animal will snap back to full reaction the instant the stimulus changes or a new threat appears, which a tired-out muscle could not do. Scientists love these forms of learning because they are so basic that they can be traced in animals with only a handful of nerve cells — the sea slug Aplysia, for instance — where the very synapses that grow weaker (in habituation) or stronger (in sensitization) can be watched directly.

Also callednon-associative learning非联结性学习非聯結性學習

Most quantum algorithms start by taking a qubit that holds a definite answer — say |0> — and 'opening it up' so it is genuinely undecided between 0 and 1. The Hadamard gate is the tool that does this. Hand it a |0> and it produces an equal superposition of |0> and |1>; hand it a |1> and it produces a similar equal mix, but with a different internal sign. Think of it less like flipping a coin and more like setting a coin spinning: the qubit is now poised between both outcomes in a precise, fully describable way, and that exact balance is what later gates rely on.

It helps to be honest about what 'superposition' buys you here. After one H gate, if you measured the qubit immediately you would just get 0 or 1 with 50/50 probability — no magic, no parallel answers. The power comes later: the sign that H tucks into the |1> branch lets the branches interfere with each other as the algorithm runs, so wrong answers can cancel out and right ones reinforce. The Hadamard gate is what creates those branches in the first place; the rest of the circuit choreographs how they interfere.

Two practical notes. H is reversible like every quantum gate, and it is its own inverse — apply it twice and you are exactly back where you started, the two superpositions interfering to undo each other. And it rarely works alone: a layer of Hadamards across many qubits, followed by entangling gates and a final round of interference, is the basic shape of algorithms from Grover's search to Shor's factoring.

Also calledH gateHadamard

A hair cell is a special sensing cell, found in the inner ear, that turns tiny mechanical movements — like the wobble of a sound wave or the tilt of your head — into electrical signals the brain can read. Its name comes from the neat little bundle of stiff bristles sticking up from its top. Despite the name, these are not real hairs: they are tiny finger-like rods called stereocilia, lined up in a row from short to tall like the pipes of an organ. When the surrounding fluid moves, it pushes the whole bundle to one side, and that bending is the very thing the cell is built to feel.

Here is the clever trick. Neighboring bristles in the bundle are joined near their tips by minute molecular threads called tip links. When the bundle leans toward its tall side, these threads pull taut and yank open tiny trapdoors — ion channels, which are gates in the cell's outer skin — letting charged particles rush in and nudge the cell's voltage. Lean the other way and the threads slacken, the gates close, and the voltage settles back. So a back-and-forth bending becomes a back-and-forth electrical wiggle, faithfully tracing the motion. The cell then passes this signal on to a nerve fiber, which carries it toward the brain. This conversion of a push into a nerve signal is called mechanotransduction — sensing by touch, at the scale of a single cell.

Hair cells are why you can hear and why you can keep your balance. In the snail-shaped cochlea of the ear, rows of them sort sound by pitch, each tuned to its own slice of high or low. In nearby looping canals, other hair cells report which way your head is turning or tipping, so you stay steady when you walk. They are exquisitely sensitive but also fragile: very loud noise, certain drugs, or simple aging can snap their bristles, and in humans they do not grow back — which is one major reason hearing loss is so often permanent.

Also calledsensory hair cellauditory hair cell听毛细胞聽毛細胞感觉毛细胞感覺毛細胞

Imagine you are describing a kitchen to someone. A recipe says "first chop the onions, then heat the oil" — a sequence of steps that happen one after another. A floor plan, by contrast, says "the stove sits next to the sink, and a wire runs from the switch to the light" — it describes things that all exist at once, side by side. A hardware description language (HDL) is the floor plan, not the recipe. It is a specialized programming-style language for describing what a digital circuit is — which gates, registers, and wires exist and how they connect — rather than a list of instructions a processor runs one at a time.

This "everything happens at once" quality is what makes an HDL different from ordinary software code. When you write two blocks in an HDL, you are usually describing two pieces of hardware that operate in parallel — they run side by side, not one after the other. Some of that hardware is purely combinational and settles the moment its inputs change; other parts are sequential and update only on each tick of the clock. The language lets you capture a design at the register-transfer level (RTL) — describing how data moves between registers each clock cycle — and a synthesis tool then translates that description into an actual arrangement of logic gates on a chip, the way a builder turns a floor plan into walls and plumbing.

The two HDLs you will meet in practice are Verilog (and its modern superset SystemVerilog) and VHDL. They look quite different on the page but do the same job: they let engineers write, simulate, and verify a circuit as text long before any silicon is manufactured. The same description can be fed to a simulator to check that it behaves correctly, and its synthesizable core can then be handed to synthesis to become a real gate-level netlist — one description, two destinies.

Also calledHDLhardware description language硬件描述语言硬體描述語言

A harmonic drive is a clever, compact gearbox that achieves a huge speed reduction in a single thin ring — and does it with almost no slop or wobble. Instead of stacking many rigid gears, it uses a flexible steel cup, called the flexspline, whose toothed rim is gently squashed into an oval by an inner egg-shaped hub. The oval pushes the cup's teeth into a slightly larger fixed outer ring at just two spots, on opposite sides. As the hub spins, the squashed shape sweeps around like a ripple traveling through the flexible cup — that traveling wave is the 'strain wave' the gear is named for.

Here is the trick: the flexible cup has just a couple fewer teeth than the rigid outer ring. So after the egg-shaped hub makes one full turn, the flexible cup has only crept backward by those few teeth — meaning the output barely moves per input turn, giving ratios like 100:1 or even 300:1 from one small unit. Because many teeth stay meshed at once and they are preloaded against each other, there is almost no backlash, the tiny dead play that lets ordinary gears rattle back and forth. That combination of high ratio, light weight, and near-zero slop is exactly what robot arm joints crave, which is why harmonic drives sit in the elbows and shoulders of most precise industrial and humanoid robots.

Also calledstrain-wave gearharmonic reducer应变波齿轮應變波齒輪

A hash is a short, fixed-size fingerprint computed from any piece of data. Feed in a single word or an entire movie, and the hash function spits out the same-length string of characters — a tidy little signature that stands in for the whole thing. The same input always produces the same hash, and even a one-letter change scrambles it completely.

Two properties make it useful. First, it's one-way: you can go from data to hash in an instant, but you can't run it backwards to recover the original — the fingerprint doesn't contain the person. Second, it's a reliable summary: if two files have the same hash, they're almost certainly identical, so you can check a download wasn't corrupted just by comparing fingerprints instead of every byte.

That same trick powers fast lookups. A hash map turns a key like 'email' straight into a number that says exactly which slot to look in — no scanning a list, just compute the hash and go. It's why looking something up by key feels instant even in a giant collection.

Also calledhashinghash functionchecksumdigestsha256md5

As we get older, our brains change — but there is a big difference between the slow, gentle slipping that happens to almost everyone and the steeper decline of an actual disease. Healthy aging is like an old, well-loved car: it starts a little slower on a cold morning and you reach for the manual more often, but it still gets you where you are going. With healthy aging, a person might take longer to recall a name, juggle fewer things at once, or learn a new phone more slowly — yet they keep handling daily life, their judgment, and the threads of their own story on their own. Pathological aging, by contrast, is not just a slower version of the same thing. It is a disease process, such as Alzheimer's disease or other dementias, in which brain cells are actively damaged and lost, and the trouble keeps growing until it overwhelms everyday living.

The key is to look at the trajectory and the cost, not at any single forgetful moment. Misplacing your keys is ordinary; forgetting what keys are for, or getting lost on a street you have walked for thirty years, points toward disease. Doctors watch for changes that are progressive (steadily worsening over months and years), that go well beyond what peers the same age experience, and that begin to break a person's ability to dress, cook, pay bills, or stay safe. Under a microscope and on brain scans, pathological aging also shows physical marks that ordinary aging does not — for example, the sticky amyloid plaques and tangled tau proteins of Alzheimer's disease, or the shrinking of specific brain regions faster than normal.

Drawing this line matters because the two call for very different responses, and the boundary can be genuinely blurry — there is a middle zone, sometimes called mild cognitive impairment, where it is not yet clear which way things will go. Healthy aging is reassured, supported, and kept sharp with sleep, exercise, social life, and hearing aids; pathological aging needs medical evaluation, diagnosis, and care planning, and the earlier it is caught the more can be done. Treating a treatable disease as if it were just old age can rob someone of real help, while treating normal aging as a catastrophe causes needless fear.

Also callednormal aging vs neurodegenerative disease正常衰老与神经退行性疾病正常老化與神經退化性疾病

Hebbian plasticity is a simple rule for how the brain learns: when two neurons are active at the same time, the connection between them grows stronger. It is usually summed up in a catchy phrase — neurons that fire together, wire together. Picture two friends who keep showing up at the same parties; over time they become close, and bumping into one makes you think of the other. In the brain, if one neuron tends to fire just as another fires, the junction between them (the synapse) gets reinforced, so the first becomes better and better at helping trigger the second.

This idea, proposed by psychologist Donald Hebb in 1949, matters because it turns a vague notion — learning — into something physical and local. Each synapse adjusts itself based only on what the two neurons it joins are doing, with no central manager telling it what to do. Repeated co-activation strengthens the link, so patterns that occur together get stitched into the wiring of the brain. This is widely believed to be a building block of memory and habit: practicing a piano scale, learning that thunder follows lightning, or recognizing a face all involve the same cells repeatedly firing in step until their connections stick.

The flip side completes the rule: connections that go unused, or where one neuron fires while the other stays quiet, tend to weaken over time. So Hebbian plasticity does not only build links — it also lets useless or contradictory ones fade, helping the brain keep what is meaningful and let go of what is not. Real brains add refinements, such as caring about the precise timing of the two spikes, but the core insight — that experience reshapes connections by rewarding things that happen together — remains one of the most influential ideas in all of neuroscience.

Also calledHebb's rulefire together, wire together赫布学习法则赫布學習法則一起激发就一起连线一起激發就一起連線
See alsosynapse

Heliocentrism is the idea that the Sun, not the Earth, sits at the center of our solar system, with Earth and the other planets orbiting around it — along slightly stretched, oval paths rather than perfect circles. Picture a campfire at night: the fire stays put while everyone shuffles their chairs around it. The Sun is that fire, and we are one of the chairs — moving, even though it never feels like we are.

For most of history people believed the opposite: that the Earth stood still at the center of everything while the Sun, Moon, and stars wheeled overhead. It certainly looks that way — the Sun does 'rise' and 'cross the sky.' But in 1543 the Polish astronomer Nicolaus Copernicus argued that the heavens make more sense if the Earth is just another planet, spinning daily and orbiting the Sun once a year. His own model was not yet tidy — it still leaned on circular orbits and the extra little loops (epicycles) astronomers had long used — and it was only Johannes Kepler's elliptical orbits, decades later in 1609, that truly simplified the picture.

The shock wasn't only scientific — it was deeply personal. Heliocentrism quietly demoted humanity from the fixed hub of creation to passengers on an ordinary world adrift in space. One common mix-up: it does not claim the Sun is the center of the whole universe. The Sun is just the center of our solar system; it is itself one unremarkable star among hundreds of billions in our galaxy.

Also calledCopernican systemCopernican heliocentrismSun-centered model日心說哥白尼學說地動說

Hematopoietic stem cells, or HSCs, are the blood-forming stem cells that live mainly in the bone marrow, the soft tissue inside our bones. They are multipotent, sitting at the head of a family tree from which every kind of blood cell descends: the red cells that carry oxygen, the platelets that clot wounds, and the whole army of white cells that defend against infection. Think of an HSC as the single source spring from which all the body's many streams of blood cells flow.

The demand they meet is staggering. Your body burns through hundreds of billions of blood cells every day, and HSCs replace them ceaselessly for a lifetime. They manage this with the classic stem cell balance: some divisions copy the HSC itself, keeping the reservoir full, while others produce daughter cells that step down a series of intermediate stages, gradually committing and maturing into one specific blood cell type. A tiny resting population thus sustains a vast, constantly renewing output.

HSCs are unusual among stem cells in that they have underpinned a real, established medical procedure for decades: the bone marrow or blood stem cell transplant. By replacing a patient's faulty blood-forming system with healthy HSCs, this approach is used in serious blood and immune disorders. It is a demanding procedure with significant risks, including the danger that transplanted immune cells attack the recipient — but it stands as one of the longest-running, best-validated examples of stem cell medicine actually in use.

Also calledHSCblood stem cell造血干细胞造血幹細胞

For decades the cheapest way to get a better chip was to shrink everything on one big slab of silicon — logic, cache, I/O, analog — all built on the same process and the same wafer. But that one-size-fits-all bargain has frayed. The bleeding-edge transistor that makes logic fast and dense is wasted (and expensive) on a chunk of analog or I/O that gains nothing from it, big dies catch more defects and yield worse, and no single process is best at everything. Heterogeneous integration is the answer: instead of forcing every function onto one process, you build each block on the process that suits it best, then stitch the separate dies together inside one package so they behave like a single chip.

Think of it like building a high-performance car. You would not machine the engine, the tires, the battery, and the seats all out of one block of titanium just because titanium is great for the engine. You pick the right material for each part and assemble them. Heterogeneous integration does the same with silicon: cutting-edge logic on a leading 3nm-class node, dense memory on a DRAM process, analog and RF on an older node that prizes good voltage handling over speed, even silicon photonics for optical links — each on its best-fit process, joined by an interposer or a 3D stack with through-silicon vias. This is the umbrella idea that chiplets, 2.5D/3D packaging, HBM-on-interposer, and die-to-die standards like UCIe all serve.

Two roadmap pressures make this more than a convenience. First, yield and cost: a few smaller, separately tested known-good dies are far cheaper to manufacture than one giant monolithic die, because a single defect ruins less silicon. Second, the memory wall: a processor that is starving for bandwidth can sit micrometers from a tall stack of memory inside the same package, with thousands of short, parallel connections that a board trace could never match. Packaging the right pieces close together, each on the right process, has become as important to overall progress as shrinking the transistor itself.

Also calledHI

A heuristic is a mental shortcut — a rule of thumb your brain reaches for to get a fast, good-enough answer without grinding through every detail. Faced with a wall of choices, you don't weigh each one; you go with the option that's most familiar, or the price that ends in .99, or the restaurant with the longest line. It's the difference between sprinting down a path you already know and surveying the whole forest first.

Heuristics matter because thinking is expensive and life is fast. These shortcuts let you cross a busy street, read a stranger's mood, or pick a checkout lane in a heartbeat — and most of the time they serve you beautifully. They are not laziness; they are the cleverness of a mind that has learned what usually works.

But the same shortcut that usually wins can quietly misfire. Judge how likely something is by how easily examples spring to mind, and you'll fear plane crashes more than car rides — even though the car is far deadlier. That predictable failure is a bias. The common misconception is that a heuristic is simply a mistake; really, it's a mostly-right rule whose occasional wrong turns are the price of its speed.

Also calledrule of thumbmental shortcut经验法则拇指法则捷思法經驗法則捷思

The Higgs boson is a tiny particle that acts like a ripple in an invisible field filling all of space — the Higgs field. That field is what lets many of nature's basic building blocks have mass, instead of all zipping around weightlessly at the speed of light.

Think of the Higgs field as a kind of cosmic molasses. Some particles wade through it and feel a lot of drag (they end up heavy); others slip through easily (they stay light). The boson is the proof the field is really there: give the field a hard enough poke, and a single particle pops out for a fleeting moment.

Physicists spotted it in 2012 at the Large Hadron Collider near Geneva, weighing about 125 GeV — roughly 130 times the mass of a hydrogen atom. You may have heard it called 'the God particle,' but that nickname is just catchy marketing from a book title; physicists don't use it, and it has nothing to do with religion.

Also calledHiggs particleGod particleHiggs field上帝粒子希格斯粒子希格斯場BEH boson

Picture the problem HBM was invented to solve. Your logic die — a GPU or AI accelerator — can crunch numbers far faster than it can fetch the data to crunch. That gap is the memory wall: the chip starves not because it lacks compute, but because the pipe feeding it data is too narrow. Ordinary DRAM sits on the far side of the circuit board, reached through a handful of skinny wires; widening that pipe by adding more pins runs out of room fast. HBM answers a single question — how do you make the data pipe enormously wide without making the wires long? — and its answer is to go vertical and move close.

An HBM stack is several DRAM dies (commonly 8, 12, or 16 high) piled on top of each other and wired together vertically by through-silicon vias, which are copper-filled holes punched straight down through the silicon. That tall stack is then set down right beside the logic die on a silicon interposer — a tiny circuit board made of silicon that lets you etch thousands of fine wires between the two. Instead of a narrow bus a few wires wide, HBM talks over a bus roughly a thousand bits wide, because the data only has to travel a few millimeters across the interposer rather than across a whole board. Wide-and-short beats fast-and-far: each individual wire is fairly relaxed in speed, but a thousand of them in parallel deliver staggering total bandwidth.

The trade is real estate and money for bandwidth. Stacking and TSVs are expensive to manufacture, and the silicon interposer adds cost and packaging complexity, so HBM lives where bandwidth is worth almost any price: AI training and inference, GPUs, and high-performance computing, where the model weights and activations must stream in continuously. It is the same packaging idea — known-good dies brought close together on an interposer — that powers chiplets, applied specifically to memory, turning the memory wall from a brick wall into a much wider doorway.

Also calledHBMstacked DRAM

Every lithography tool faces the same limit: it can only print features as fine as its light lets it. Ordinary EUV already uses very short 13.5nm light, but the smallest thing a lens can resolve also depends on how wide a cone of that light it can gather and focus, a number called the numerical aperture (NA). Think of it like a camera lens: a wider aperture collects more of the image-forming rays and brings finer detail into focus. High-NA EUV widens that cone from today's 0.33 to 0.55, which sharpens resolution by roughly a third. That matters because the rungs below keep demanding tighter pitches, and each generation of EUV buys you another shrink before you have to fall back on slow, expensive multi-patterning tricks.

There is no free lunch, though. To bend that wider cone of light, the optics use larger, asymmetric mirrors, and the physics of that design shrinks the exposure field, the patch of wafer printed in one shot, to about half the area of a standard EUV tool. So for big chips that don't fit in the smaller field, the design must be split and printed in pieces, then carefully stitched together at the seam, an extra step earlier EUV tools didn't need. High-NA machines are also enormous and cost roughly double a standard EUV scanner, so fabs reserve them for the few critical layers where the finer resolution genuinely pays off, while everything else stays on cheaper tools.

Also calledhigh-numerical-aperture EUV0.55-NA EUV高数值孔径 EUV高數值孔徑 EUV

The hippocampus is a small, curved structure tucked deep inside the temporal lobe, the part of the brain just behind your temple. It gets its name from the Greek word for seahorse, which its shape roughly resembles. You actually have two of them, one on each side of the brain. Its most famous job is helping you form new lasting memories of events and facts.

Think of it less as a hard drive and more as a binding clerk. When something new happens, the hippocampus quickly ties together the scattered pieces, the sights, sounds, words, and where you were, into a single experience, then helps hand that bundle off to the wider cortex for long-term keeping. It is also a navigation hub: it holds cells that fire depending on where you are, building an inner map that lets you remember places and find your way around.

We learned how vital it is from people who lost it. A patient known as H.M. had both hippocampi removed to stop severe seizures, and afterward he could no longer form new long-term memories, even though his older memories and his skills stayed intact. That single case revealed that this one small structure sits, like a doorway, on the path every new memory must take.

Also calledhippocampal formation海马海馬海馬迴

When we talk about the hippocampus in memory, we mean the special job this small, seahorse-shaped structure does when you learn something new: it is the brain's note-taker for the kinds of memories you can talk about. Those fall into two overlapping types. Declarative memory is the stuff you can state in words, like the fact that Paris is the capital of France or that your friend's birthday is in March. Episodic memory is your record of personal events, the actual experiences you lived through, like what you ate this morning or the trip you took last summer. The hippocampus is essential for laying down brand-new memories of both kinds. It is not really needed for skills your body just does, like riding a bike, which are stored elsewhere.

Picture the hippocampus as a quick-witted binding clerk sitting at the center of the brain. A single moment is never stored in one place; the sights live in one patch of cortex, the sounds in another, the words and feelings in still others. In the heat of the moment the hippocampus rapidly ties all those scattered threads into one bundle and tags it as a single experience, so that later, pulling on any one thread, the smell of rain, a song, a face, can tug the whole memory back into view. This fast binding is what lets you remember a one-time event after living it only once.

But the hippocampus is meant to be a temporary holder, not the final vault. Over the following days, weeks, and months, especially during sleep, it gently replays these new memories and coaches the wider cortex to take them over for permanent keeping, a slow handover called consolidation. Once a memory is fully settled into the cortex, it can survive even if the hippocampus is later lost. That is why someone with hippocampal damage may forget what happened minutes ago yet still recall their childhood clearly: the doorway for making new memories is blocked, but the old, already-filed ones remain safe.

Also calledhippocampal memory functionmemory consolidation hub海马记忆作用海馬記憶作用

Historiography is the study of how history itself gets written — not what happened in the past, but how people have told the story of the past, and why those stories keep changing. Think of it as standing behind the historian's shoulder: instead of reading the painting, you watch the painter choose which colors to use, which figures to leave out, and which to push into the light.

It matters because there is no single, finished account of any era. Each generation asks new questions and notices what earlier ones ignored. A history of a war written by the victors in 1820, by a colonized people in 1960, and by a social historian counting ordinary lives in 2010 will describe the same events in strikingly different ways — and each tells us as much about its own moment as about the past.

A common misconception is that this means history is just opinion, so anything goes. Not so. The facts still discipline the work — the date a battle was fought does not bend to fashion. What shifts is the framing: which facts we gather, how we weigh them, and what story we believe they add up to.

Also calledhistory of historythe history of history-writing史学史历史编纂学史學史歷史編纂學

The Hodgkin-Huxley model is a set of mathematical equations that explain, almost moment by moment, how a nerve cell produces its electrical spike — the brief jolt of voltage called an action potential that neurons use to send messages. Back in the early 1950s, Alan Hodgkin and Andrew Huxley measured electricity flowing through the giant nerve fiber of a squid, then wrote down formulas that captured what they saw. The remarkable thing is that their equations do not just describe the spike after the fact; you can feed them a starting voltage and they will generate the whole rising-and-falling pulse on their own, matching the real cell strikingly well. For this they won a Nobel Prize, and the model became the foundation of how scientists put neurons into mathematics.

The core idea is that a patch of cell membrane behaves like a tiny electrical circuit. The membrane stores charge like a small battery-and-capacitor, and embedded in it are channels — protein gates that let charged particles called ions slip in or out. The equations track two main currents, one carried by sodium ions rushing in and one by potassium ions flowing out, plus a small steady leak. The clever part is that each channel's openness is not fixed: Hodgkin and Huxley invented changing numbers (written m, h, and n) that act like dials, sliding open or shut depending on the current voltage and on how much time has passed. As voltage rises, sodium gates fling open and push it higher still — a runaway loop that fires the spike — and then they snap shut while potassium gates open to pull the voltage back down, resetting the cell. Knit these pieces together and the math reproduces the action potential's exact shape, speed, and threshold.

Beyond the squid, the model gave neuroscience a reusable language: almost every modern simulation of how neurons compute, from single cells to whole networks, descends from this template, simply swapping in different mixtures of channels for different cell types. It also shows the power of theory in biology — by insisting their equations match every detail of the data, Hodgkin and Huxley correctly predicted that voltage-controlled gates must exist decades before such ion channels were directly seen.

Also calledHH modelHodgkin-Huxley equations霍奇金-赫胥黎方程HH 模型霍奇金-赫胥黎方程式

Holonomic and nonholonomic are two kinds of rules that limit how a robot can move, and the difference is whether the rule can be boiled down to a relationship among positions or only ties down the velocities — how the robot may move from one instant to the next. A holonomic constraint is one you can express purely in terms of where the parts are: it locks certain positions together, so it actually shrinks the set of places the robot can ever reach. A nonholonomic constraint is subtler — it restricts the robot's instantaneous motion without forbidding any destination, so the robot can still reach anywhere, just never by heading straight there.

A shopping cart is the perfect picture. There is no spot in the store the cart cannot reach, so nothing rules out any final position — yet the cart cannot slide directly sideways; at every instant it is only allowed to roll along the way its wheels point. To move sideways into a gap you have to shuffle forward and back, wiggling the wheels, until you have crept over. That ban on sideways sliding is a nonholonomic constraint: a limit on instantaneous velocity that can never be rewritten as a rule about position alone, which is exactly what makes it nonholonomic. A car and a differential-drive robot live under the same rule, which is why parallel parking takes a careful little dance.

Why bother with the distinction? Because it tells you how hard path planning will be, and what counts as a holonomic robot. A holonomic robot — like an omnidirectional drive, which is free of any such velocity restriction and can scoot in any direction at any instant — can be steered straight to its goal along the most obvious line, so planning its motion is easy. A nonholonomic robot can reach the same goal but must obey its moment-to-moment limits along the way, so its planner has to thread together a sequence of allowed wiggles and curves. Recognizing which kind of constraint a robot faces is the first thing an engineer checks before deciding how to make it move.

Also calledholonomic constraintnonholonomic constraint完整性约束非完整性约束

Holonomic and nonholonomic describe a deep difference in how freely a robot can move: whether it can instantly travel in every direction it can point in, or whether some directions are blocked at any given moment even though it could still reach them by maneuvering. A holonomic robot can move any way it likes right now — forward, sideways, diagonally, or spin in place — with no direction off-limits. A nonholonomic robot cannot: at this instant some motions are simply impossible, so to go those ways it must first shuffle and turn.

The everyday picture is a shopping cart versus a car. A cart with casters on all four corners is holonomic — you can slide it straight sideways into a tight gap without turning it at all. A car is nonholonomic: it cannot slide sideways into a parking spot, even though that spot is clearly reachable, because its wheels only roll forward and back and steer. That is exactly why parallel parking takes a back-and-forth wiggle: the car has to convert a series of legal forward and reverse arcs into the sideways shift it cannot do directly. The restriction is on which directions are available at each instant, not on which places are ultimately reachable.

This distinction shapes how planners must work. For a holonomic robot, a planner can often draw a route as if the machine were a free-floating dot, since it can follow any squiggle. For a nonholonomic robot, the planner must respect the movement rule at every step — only producing paths the machine can actually trace, full of the curves and reversing maneuvers its wheels allow — which makes the planning genuinely harder. The deeper idea behind the labels is about counting: when the number of directions a robot can command at once equals its total number of independent ways to be positioned (its degrees of freedom), it is holonomic; when it can command fewer directions than that, it is nonholonomic.

Also calledholonomic constraintnonholonomic constraint完整约束非完整约束

A homogeneous transformation matrix is a single 4x4 grid of numbers that captures everything about how one frame of reference relates to another: both how it is rotated and how it is shifted in space. A frame is just an agreed-upon set of axes and an origin, like 'the corner of the table' or 'the robot's wrist.' The transform bundles the rotation part (which way the second frame is twisted relative to the first) and the translation part (how far away its origin sits) into one tidy object. Feed a point's coordinates through this matrix and it pops out expressed in the other frame, as if you had carried the point from one viewpoint to another.

Packing rotation and translation together into one 4x4 is the clever trick the word 'homogeneous' refers to. On its own, rotation can be done with multiplication, but adding a shift normally needs a separate addition step; by tacking on one extra row and treating positions as having a phantom fourth coordinate of one, the matrix lets a single multiplication do both at once. The real payoff is chaining: if you know the transform from the table to the robot base, from the base to the arm, and from the arm to the gripper, you simply multiply the three matrices in order to get the transform from the table straight to the gripper. This is how a robot figures out where its hand is in the world by walking through every joint.

Mathematicians call the set of all these valid rigid-body transforms SE(3), the special Euclidean group, which is just a precise name for 'every way you can move a solid object around without bending or stretching it.' In software, whole trees of these transforms describe a robot's body and its surroundings, and systems like ROS keep them organized in a transform tree so any part of the robot can ask 'where is that, from my point of view' and get an answer.

Also calledtransformT-matrix4x4 transform位姿变换矩阵位姿變換矩陣

When two animals share a similar brain part or behavior, scientists ask one key question: did they inherit it from a shared ancestor, or did each one invent it separately? Homology means the trait comes from a common ancestor — like how human arms, bat wings, and whale flippers are all the same basic set of bones, passed down and reshaped over time. Analogy (also called convergence) means the trait looks or works alike but arose independently, the way a bird's wing and an insect's wing both fly yet grew from completely different origins. Telling these two apart is the central detective puzzle of comparative neuroscience.

This distinction matters because it changes what we are allowed to conclude. If a brain structure is homologous across species — say, the basic layout of the spinal cord in all backboned animals — then studying it in a mouse can teach us about humans, because we are looking at the same inherited piece. But if a feature is merely analogous — for example, the camera-like eyes of octopuses and humans, which evolved separately — then similarities can be misleading, and the underlying wiring may follow totally different rules. Scientists weigh several clues to decide which it is: shared developmental genes, similar position and connections in the body, intermediate forms in fossils or relatives, and where the species sit on the evolutionary family tree. A trait that keeps reappearing in distant, unrelated lineages is a strong hint of analogy rather than common descent.

Also calledhomologous structuresanalogous structureshomoplasyconvergent evolution同源结构同功结构趋同演化同源結構同功結構趨同演化

A hormonal negative feedback loop is the trick your body uses to keep a hormone from running wild: once enough of that hormone has built up in the blood, it reaches back and tells the glands above it to ease off — so its own arrival shuts down the very command that produced it. Think of a household thermostat. The hypothalamus (a control hub deep in the brain) sets a target level, the pituitary gland just below it passes the order along, and a downstream gland releases the final hormone. When that final hormone climbs high enough, it loops back to the hypothalamus and pituitary like a thermostat sensing the room is warm, and the heating signal is dialed down.

This self-quieting design is what keeps levels steady instead of swinging to extremes. A clear example is the stress system: the brain tells the adrenal glands to release cortisol, and rising cortisol then suppresses the brain signals that called for it, capping the response so the body does not stay flooded with stress hormone. The same pattern governs thyroid hormone, sex hormones, and many others. Because the brake is the output itself, the loop needs no outside supervisor — it automatically settles around a set point, the way a ball rolled up the side of a bowl always rolls back toward the middle.

When a feedback loop breaks, levels drift out of range, which is why doctors often read hormones in pairs — a low command hormone alongside a high output hormone, or the reverse, tells them where in the loop the fault lies. The loop also explains a quirk of some medicines: taking a hormone from outside can fool the brain into thinking the body already has plenty, so it stops sending its own commands, and the natural glands grow quiet until the loop is allowed to wake up again.

Also calledendocrine negative feedbackintern/feedback control内分泌负反馈內分泌負反饋

The HPA axis is your body's main stress-response chain — a relay team of three glands that work together, one handing off to the next, to flood your body with stress hormones when something demands extra alertness. The three players are the hypothalamus (a tiny control hub deep in the brain), the pituitary (a pea-sized gland hanging just below it), and the adrenal glands (two small caps sitting on top of your kidneys). Picture a fire alarm wired through three stations: the brain spots the smoke, the middle station amplifies the warning, and the last station finally sprays the water. When you slam on the brakes to avoid a crash, sit down to a dreaded exam, or hear a loud bang in the dark, this chain is what jolts your whole body awake.

The hand-offs happen through chemical messengers called hormones, released into the bloodstream like letters dropped in the mail. First the hypothalamus releases a hormone called CRH; that tells the pituitary to release a second hormone, ACTH, into the blood; ACTH travels down to the adrenal glands and tells them to pump out cortisol, the body's chief long-acting stress hormone. Cortisol then does many jobs at once — it raises blood sugar for quick fuel, sharpens attention, and temporarily dials down digestion and the immune system so energy goes where it is needed now. Crucially, the rising cortisol also travels back up to the brain and pituitary and tells them to ease off, a self-quieting loop (called negative feedback) much like a thermostat shutting off the heater once the room is warm enough.

This system is not only for emergencies: it runs on a gentle daily rhythm, peaking in the morning to help you wake and get going, and dipping at night so you can rest. When stress is brief, the loop switches on, does its job, and switches off cleanly. But when stress is relentless and cortisol stays high for too long, the axis can become worn down or stuck, which researchers link to problems like disrupted sleep, anxiety and depression, weakened immunity, and high blood pressure. That is why the HPA axis sits at the heart of how the mind and body talk to each other, and why so much research on stress, mood, and resilience comes back to it.

Also calledstress axishypothalamic-pituitary-adrenal axis应激轴下丘脑-垂体-肾上腺轴壓力軸下視丘-腦下垂體-腎上腺軸

HTML is the language that gives a web page its structure and content — the headings, paragraphs, links, images, and lists. Think of it as the skeleton of the page: it decides what's there and what each piece is, but not yet how any of it looks.

You build a page out of tags — little labels wrapped in angle brackets that come in pairs. <h1>…</h1> marks a big heading, <p>…</p> a paragraph, <a href="…">…</a> a link. The browser reads these tags and turns them into the page you see.

On its own, raw HTML looks plain — black text on a white background. That's by design: HTML handles the bones, CSS adds the looks, and JavaScript adds the behavior. Together they make every page on the web.

Also calledhypertext markup languagemarkuptags

HTTP is the simple back-and-forth that the whole web is built on: your browser sends a request ('please give me this page'), and a server sends back a response ('here it is'). Every page you open, image you load, and form you submit is really just one of these little request-and-reply exchanges.

Each request names a method — GET to fetch something, POST to send something — points at a URL, and comes back with a status code (200 if all went well, 404 if the thing wasn't there). It's a polite, stateless conversation: each request stands on its own, and the server forgets you the moment it's done.

HTTPS is the exact same conversation, just locked inside an envelope. The S is for secure: the connection is encrypted (via TLS), so no one snooping on the wire can read or tamper with what's passing through — which is why the padlock shows in your address bar. These days plain HTTP is treated as unsafe, and HTTPS is simply the default.

Also calledhypertext transfer protocolhttp requesthttp responsetlsssl

An HTTP status code is the little 3-digit number a server puts at the top of every web response to tell you, in one glance, how the request went. You've already met the famous ones: 200 means 'OK, here you go,' 404 means 'I couldn't find that,' and 500 means 'something broke on my end.' Every page you load and every API call you make comes back stamped with one of these.

The first digit sorts them into five families, which is the only part worth memorizing. 2xx = success (it worked). 3xx = redirect (look over there instead). 4xx = you messed up (bad request, not found, not allowed). 5xx = the server messed up (it's not your fault). So even a code you've never seen — say 429 — you can read at a glance: 4-something, so the problem is on the asking side (it means 'too many requests, slow down').

When you're debugging, the status code is the first thing to check. A 401 tells you it's a login problem; a 404 tells you the address is wrong; a 500 tells you to stop poking your code and go read the server's logs. It's the server's one-word answer to 'how did that go?'

Also calledstatus coderesponse code200404500http code
See alsoHTTP / HTTPS

Human rights are the basic freedoms and protections that belong to every single person, simply for being human — not granted as a reward, not earned by good behavior, and not handed out only to citizens of the right country. You have them the moment you are born, the same way a newborn already has a name waiting for it. Things like not being tortured, not being enslaved, being able to speak your mind, and being treated as equal before the law all live under this one roof.

The big idea is that some claims are too fundamental to be left to a king's mood or a government's convenience. After the horrors of the Second World War, the world tried to write this down plainly: in 1948 the United Nations adopted the Universal Declaration of Human Rights, a short, powerful list that opens by insisting all people are "born free and equal in dignity and rights." It is the landmark statement everything else points back to.

A common misunderstanding is that rights are gifts from a government — so a government could simply take them back. The whole point runs the other way: human rights are held to exist whether or not any law recognizes them, and a state that violates them is failing a duty, not exercising a choice. Governments don't create these rights; at best, they promise to protect what was already there.

Also calledUniversal Declaration of Human RightsUDHRrights of man世界人权宣言基本人权世界人權宣言基本人權

A humanoid robot is a robot shaped roughly like a person: a torso, a head, two arms with hands, and two legs it walks on. It is the figure most people picture when they hear "robot," thanks to a century of movies — but in real engineering the human shape is a deliberate, and surprisingly demanding, design choice rather than just a costume. Most working robots look nothing like us: a factory arm bolted to the floor or a wheeled delivery cart is far simpler and steadier. Building a machine that stands and walks on two legs the way we do is one of the hardest things in robotics.

So why bother with the human form at all? Because the entire world we live in was built for human bodies. Stairs, door handles, light switches, tools, vehicles, chairs, and countertops are all sized and placed for a creature with our height, reach, and two grasping hands. A robot built to the same plan can, in principle, step into that world and use it as-is — climb the same stairs, open the same doors, pick up the same drill — without anyone rebuilding the building. The catch is that two-legged balance is brutally hard: unlike a four-legged or wheeled machine, a humanoid is always on the edge of toppling and must constantly catch itself, the same way you unconsciously sway and adjust just to stand still. That, plus the need to coordinate two arms and many joints at once, is why convincing, reliable humanoids took so long to arrive and are still far harder and costlier than a robot that simply rolls on wheels.

Also calledandroidanthropomorphic robot类人机器人仿人机器人

Human–robot interaction is the study of how people and robots communicate, work together, and shape each other's behavior. It asks the very human-side questions that the mechanics and the code leave out: How should a robot signal what it is about to do so a person nearby feels safe? When a robot speaks, gestures, or simply turns its 'head,' how do people read that? And how does sharing space and tasks with a machine change what the people themselves do? It treats the human and the robot as one team, not as a tool and its user.

It is deliberately interdisciplinary, stitching together engineering with psychology, design, and the study of language and gesture. A robot that hands you a cup is not just solving a motion problem; it has to reach out at a pace you can predict, look where it is about to move so you can anticipate it, and let go at the right moment. Getting any of that wrong feels jarring or even unsafe, even when the underlying machinery works flawlessly. So HRI cares as much about how an action is perceived as about whether it technically succeeds.

Why it matters grows as robots leave fenced-off factory cells and move into homes, hospitals, shops, and roads, where the other party is an untrained person, not an engineer. Trust becomes central: people who trust a robot too little ignore its help, while people who trust it too much rely on it past its real abilities. HRI studies how to calibrate that trust — through clear, honest signals — so the partnership is both effective and safe.

Also calledHRI人—机器人交互人機協作

Huntington's disease is an inherited brain disorder that slowly destroys a cluster of cells deep in the brain, robbing a person of smooth movement, clear thinking, and steady mood over many years. Its most striking sign is chorea — restless, dance-like twitches and writhing that the person cannot hold still (the name comes from the Greek word for dance). The disease usually shows itself in midlife, around the thirties or forties, and gradually worsens. It is passed down in families: if a parent carries the faulty gene, each child has a one-in-two chance of inheriting it, and almost everyone who inherits it will eventually develop the illness.

The cause is a single tiny stutter in one gene, called HTT. Inside that gene a short sequence of three DNA letters — C, A, G — is meant to repeat a modest number of times, but in Huntington's disease it repeats far too often, like a key on a keyboard that gets stuck and types the same thing over and over. Roughly 36 or more of these CAG repeats produce a misshapen, sticky version of a protein that slowly poisons neurons, hitting hardest in a region called the striatum that helps plan and smooth out movement. As those cells die, control of movement, memory, judgment, and emotion all unravel together.

There is no cure yet, and the disease is fatal over time, usually ten to twenty years after symptoms begin. Treatment focuses on easing the burden: medicines can quiet the worst of the chorea, lift depression, or steady mood, while physiotherapy and family support help people stay independent for as long as possible. Because the exact gene is known, a simple blood test can tell whether someone carries it — a heavy choice many at-risk families weigh carefully, since the result reaches into the whole family's future.

Also calledHDHuntington's chorea亨廷顿舞蹈症亨廷頓氏舞蹈症慢性进行性舞蹈病

When you stack two chips and want them to talk to each other, you have to bridge the gap between them. The old way is to drop tiny balls of solder between matching pads on each die, like resting one circuit board on a bed of beads. That works, but solder bumps are bulky: each one needs breathing room, so you can only fit a few thousand of them across a chip, and every bump adds height, resistance, and a long electrical path. As the memory wall and the cost of moving data off-die became the dominant limits, those fat, sparse connections turned into a bottleneck.

Hybrid bonding throws the solder away. Instead, you polish the face of each die almost atomically flat, with copper pads embedded in a surrounding oxide. Press the two faces together and the oxide fuses oxide-to-oxide while the copper pads fuse copper-to-copper, all in one bond. The 'hybrid' part is exactly that pairing: oxide doing the gluing and structural sealing, copper doing the electrical connecting. Because there are no balls to leave room for, the pads can sit just a micron or two apart, so you can pack many thousands of these joints into a single square millimetre, each one short, low-resistance, and electrically quiet.

The payoff is bandwidth and density that bumps simply cannot reach. A 3D stack joined this way behaves almost as if the two dies were one piece of silicon: signals hop straight across the seam with little delay or energy cost. This is why hybrid bonding is the enabling step behind the most aggressive 3D stacking, from cache stacked directly on top of a processor to the next generations of HBM, where the goal is to get enormous numbers of wires between layers without paying the bump tax in height, power, or area.

Also calleddirect bond interconnectcopper-to-copper bondingCu-Cu hybrid bonding铜-铜混合键合銅-銅混合鍵合

Hybrid position/force control is a way of telling a robot arm to be picky about position in some directions and picky about pushing force in others — at the very same moment. Think about wiping a table with a sponge. Side to side and forward, you care exactly where the sponge goes, so you control its position. But straight down into the table, you do not want a precise height — you want a gentle, steady press, so there you control the force instead. A robot doing this same job needs both rules running together, each pointing in a different direction.

The trick is to split the directions of the task into two groups. Some directions are 'position-controlled': the robot is told a target spot and works hard to land the tool exactly there, ignoring how much force that takes. The other directions are 'force-controlled': the robot is told a target push and adjusts its motion to keep that push steady, ignoring exactly where the tool ends up. A piece of math called a selection mask marks which directions belong to which group, so the two controllers never fight over the same axis.

This matters whenever a robot must touch a surface it cannot perfectly measure, like grinding a weld, turning a crank, or sliding a peg into a hole. Pure position control would crack the part or snap the tool the instant reality differs from the plan by a hair; pure force control would let the tool wander off the path. Splitting the task lets the robot stay exactly on track where it must and stay gentle where it must, all at once.

Also calledhybrid control混合控制混合控制position/force control

A hydraulic actuator is a muscle that runs on pressurized liquid. A pump squeezes oil to a very high pressure, and that pressure pushes against a piston inside a sealed cylinder, sliding it out or pulling it back. Because liquids barely compress at all, almost none of that push is wasted — the force shows up at the rod cleanly and stiffly, like leaning on a solid steel bar rather than a springy one.

Its great strength is force density: a fairly small hydraulic cylinder can shove with a power that an electric motor of the same size could never match. That is why you see it in the heavy world — excavator arms, factory presses, aircraft landing gear, and the legs of some big walking robots. The trade-off is the whole plumbing kit it drags along: a pump, a tank of oil, hoses, and valves, all of which add weight, can leak, and need maintenance.

A robot controls a hydraulic actuator mainly through valves that meter how fast and which way the fluid flows, deciding how far and how hard the piston moves. The same setup that gives crushing strength also stores danger: high-pressure oil is energetic, so leaks and bursts are taken seriously, and the system is usually kept clean and well sealed.

Also calledfluid power actuator液压缸液壓缸

A hydrogel is a soft, water-swollen network of polymer chains — long, tangled molecules — that traps huge amounts of water while still holding a solid shape. Familiar examples are gelatin dessert, soft contact lenses, and the absorbent core of a diaper. The result feels wet and squishy, much like real soft tissue, which is exactly why hydrogels are so useful in the body.

Inside a hydrogel, the polymer strands cross-link into a loose mesh, like a fishing net soaking in the sea. The net gives the material its shape, while the water filling every gap lets nutrients, oxygen, and signals diffuse freely through it. To a living cell, a well-made hydrogel feels much like its natural surroundings, so cells can sit inside, stay alive, and move around rather than being smothered.

Because they are gentle, water-rich, and tunable, hydrogels are a workhorse of regenerative medicine: a common base for tissue scaffolds and for the bioinks used in 3D printing, as well as for cradling cells or releasing drugs slowly. Their weakness is mechanical — most hydrogels are soft and fragile, so they suit squishy tissue far better than load-bearing parts like bone.

Also called水凝胶水凝膠

Hyperpolarization is when the inside of a neuron becomes even more negatively charged than it is at rest — it sinks further below its normal baseline. Picture a neuron's electrical state as the water level in a tank. At rest, the level already sits below the rim by a fixed amount (the inside is about 70 thousandths of a volt more negative than the outside). Hyperpolarization is when the water level drops even lower than that resting mark. So if depolarization is the cell getting more excited and closer to firing, hyperpolarization is the opposite: the cell becoming calmer, more negative, and harder to set off.

This happens when the balance of charged particles flowing across the cell's outer skin shifts. A neuron's membrane is dotted with tiny gates called ion channels that let specific charged atoms in or out. When positively charged potassium atoms rush out, or negatively charged chloride atoms flow in, the inside loses positive charge and tips further negative — that is hyperpolarization. It matters because it pushes the cell away from the threshold needed to fire its signal, so it acts like a brake. The brain uses it both to quiet neurons down (inhibition, the way some messages tell a cell to stay silent) and as the natural overshoot at the tail end of a firing event, briefly making the cell rest before it can fire again.

Also calledmembrane hyperpolarization膜超极化膜超極化

Hypothalamic releasing hormones are tiny chemical messages, made by a small control center deep in the brain called the hypothalamus, that tell the body's master gland when to switch its own hormones on or off. Picture the hypothalamus as a manager who never makes the product directly but sends short written orders down to the factory floor — the pituitary gland sitting just below it. Each order is a small molecule (a peptide, meaning a short chain of the building blocks that make proteins), and each one carries a single clear instruction: release more of this hormone now, or hold it back.

They work because the hypothalamus and the pituitary are linked by a private set of blood vessels, like a short pipe running straight down between them. The hypothalamus drips a releasing hormone into that pipe, the message travels only a few millimeters, and the pituitary reads it and answers — often by sending out its own hormone into the wider bloodstream to reach far-off glands like the thyroid, the adrenals, or the ovaries and testes. There is a matching messenger for each major line of command: one to call up the stress hormone, one for growth, one for the thyroid, one for reproduction. Crucially, some of these messages say go and others say stop — for example, the brain holds back the milk-and-mood hormone prolactin mainly by releasing a brake (the chemical dopamine) rather than a green light.

This handful of small molecules is how the thinking, feeling brain quietly steers the slow chemical tides of the whole body. Because one tiny signal at the top can ripple outward into growth, stress, metabolism, and fertility, the releasing hormones are a favorite target for medicine: doctors can give synthetic copies, or blockers, to treat infertility, certain cancers, growth problems, and more.

Also calledhypothalamic hormonesreleasing factorshypophysiotropic hormones释放因子下丘脑激素釋放因子下視丘激素
See alsohypothalamus

The hypothalamus is a small region deep in the brain, about the size of an almond, tucked just below the thalamus and above the roof of your mouth. Despite being tiny, it is one of the body's most important control centers. Its main job is to keep your inner world steady, holding things like body temperature, water balance, blood pressure, and energy supply within the narrow range your cells need to survive.

It does this by constantly sampling the blood and listening to signals from the rest of the brain, then nudging the body back toward balance. If you get too hot it triggers sweating; if you are dehydrated it makes you thirsty; if your energy runs low it makes you hungry. It also drives sleepiness, body clock timing, and basic urges. Think of it as a thermostat and pantry manager rolled into one, quietly adjusting dials so the body neither overheats nor runs dry.

The hypothalamus also acts as the bridge between the nervous system and the hormone system. It sits just above the pituitary gland, a pea-sized gland it controls like a puppeteer, telling it when to release hormones that ripple out to the thyroid, adrenal glands, ovaries, and testes. In this way a structure smaller than your thumb tip helps steer growth, stress responses, reproduction, and the daily rhythms of the whole body.

Also called下视丘下視丘
See alsothalamus
I

An IDE is a text editor with superpowers — one app where you write, run, and fix your code without ever leaving it. The name spells out the idea: it integrates, in one window, all the separate tools a programmer would otherwise juggle. VS Code, IntelliJ, and Xcode are the ones you'll hear most.

Here's why people love it. As you type, it autocompletes the rest of a word, suggests what comes next, and underlines mistakes in red before you even run anything — like a spell-checker that actually understands code. A button runs your program; another opens a debugger to pause it and look inside.

You could absolutely write code in plain Notepad — many start there. But an IDE quietly removes a hundred tiny frictions a day: jumping to where a function is defined, renaming something everywhere at once, flagging a typo the instant you make it. It's the difference between writing by hand and writing with a very attentive assistant looking over your shoulder.

Also calledcode editorVS CodeIntelliJPyCharmXcode

An operation is idempotent if doing it once and doing it ten times leave you in exactly the same place. Pressing the elevator button again doesn't summon ten elevators; the button is already lit, and pressing it changes nothing. The result is the same no matter how many times you repeat the action.

Contrast that with 'add 1 to my balance' — run it five times and you're five dollars richer, which is decidedly NOT idempotent. But 'set my balance to 100' is: run it once or fifty times, the balance is 100. The difference is whether repeating piles up effects or just lands on the same answer.

This is what makes retries safe. Networks drop, requests time out, and you often can't tell whether a request actually went through. If the operation is idempotent, you can simply try again without fear of charging the card twice or creating two copies — repeating it is harmless.

Also calledidempotencyidempotencesafe to retryrepeatable

An image keypoint is a small, distinctive spot in a picture that a computer can find again reliably — even after the scene shifts, the camera moves, or the lighting changes. Think of it as a visual landmark. Just as you navigate a city by remembering corners and signs rather than every brick, a robot picks out a sparse set of standout points instead of trying to track every pixel, which would be hopeless because most pixels look just like their neighbors.

What makes a good keypoint is being unmistakable from every direction. A point in the middle of a blank white wall is useless: slide your window of view in any direction and it looks identical, so you cannot tell if anything moved. A point along a straight edge is only half-useful: you can tell when it shifts across the edge, but sliding along the edge looks the same. A corner, where two edges meet, is the prize — nudge it any way at all and the local pattern changes, so the robot can locate it precisely. This is why classic corner detectors are the workhorses of keypoint finding, and why the two prized traits are repeatability (the same physical spot is found again in a new image) and distinctiveness (it does not get confused with other spots).

Keypoints are the anchors of much of robot vision. By finding the same physical points across two photos, a robot can stitch a panorama, track its own motion frame to frame, build a map while localizing itself in it, or estimate the depth of objects from a stereo pair. Each keypoint is usually paired with a feature descriptor — a compact fingerprint of its surroundings — so the same point can be recognized and matched between different views.

Also calledfeature pointinterest pointcorner特征点特徵點

Visual servoing — steering a robot from a live camera feed — comes in two flavours that differ in where the robot measures its error. Image-based servoing (IBVS) works directly in the flat picture: it looks at where features such as corners or dots appear in the image now versus where they should appear when the task is done, and moves to close that pixel gap, never bothering to fully reconstruct the real 3D layout. Position-based servoing (PBVS) does the opposite: it first uses the image to reconstruct where things actually are in real 3D space — the object's full position and orientation — and then plans a motion in that physical space to reach the goal pose.

A homely analogy: you want to park a car so a particular tree fills a certain spot in your side mirror. The image-based way is to drive while watching only the mirror, nudging until the tree sits exactly where it should in the glass — you never calculate the car's coordinates, you just match the view. The position-based way is to first work out 'the tree is three metres back and one metre right of where I am,' then steer your real position to that computed point. Both can park the car; they just disagree about whether to think in the picture or in the world.

The trade-off is real. Image-based servoing is robust because it never leans on a fragile full 3D reconstruction — small camera-calibration errors barely hurt it — but its path through real space can wander oddly since it only optimizes the picture. Position-based servoing gives clean, predictable motion in the world and is easy to reason about, but it depends on accurate calibration and pose estimation, so a bad reconstruction sends the robot confidently to the wrong place. Many practical systems blend the two to get the strengths of both.

Also calledIBVS vs PBVS图像伺服与位置伺服影像伺服與位置伺服

An imaginary number is what you get when you ask a forbidden question: what number, multiplied by itself, gives a negative result? No ordinary number works — a positive times a positive is positive, and so is a negative times a negative. So mathematicians simply invented one. They called it i, defined by the rule that i × i = −1, making it a square root of minus one. From this single seed grow all the imaginary numbers: 2i, −5i, and so on.

Far from being a useless curiosity, i turns out to be one of the most practical tools ever discovered. Pair it with the ordinary numbers and you get the complex numbers — written like 3 + 4i — which behave like a flat plane rather than a single line. Engineers lean on them constantly to describe alternating electrical current, radio waves, and vibrations; modern electronics and quantum physics would be almost impossible to write down without them.

The one thing to unlearn is the name. "Imaginary" was originally a sneer, hurled by skeptics who thought these numbers were fake. They aren't. They are exactly as real and as useful as the −1 that lets your bank account go into the red. The word stuck, but the insult was wrong.

Imitation learning is teaching a robot by showing it the right thing to do, the way a child learns to whisk eggs by watching a parent rather than by guessing wildly until the kitchen is a mess. Instead of letting the robot blunder through endless trial and error chasing a reward, you give it recordings of an expert doing the task well — each moment paired with the action the expert chose — and the robot trains its policy to reproduce those choices. Show it enough good examples and it learns to act like the demonstrator.

The big win is that it sidesteps two of the hardest parts of reward-based learning: you do not have to handcraft a tricky reward function, and the robot does not have to crash thousands of times to discover what works, because the expert already knows. The classic catch is that a pure imitator only knows the situations it was shown. Let it drift somewhere the expert never went — a slightly odd angle, a spot it never quite reached — and it has no demonstration to copy, so small mistakes can snowball. Modern methods fight this by mixing in a little correction or extra practice, but at heart imitation learning is the simple, powerful idea of learning by example.

Also calledlearning by imitation模仿式学习模仿式學習

Immune rejection is what happens when your immune system spots transplanted cells, tissue, or an organ as 'not me' and attacks it. Your body runs a kind of identity check on every cell, like a bouncer reading ID badges at a door. Each person's cells carry their own molecular badges, and donor cells usually carry the wrong ones.

Immune cells patrol the body and read surface markers on every cell they meet. When they find foreign markers on a graft, they raise the alarm, multiply, and mount an attack — much as they would against a virus. The closer the donor's markers match the recipient's, the gentler this reaction; a poor match triggers a fast and fierce assault.

Rejection is the central obstacle of transplantation. It is why donors and recipients are carefully matched, and why most graft recipients must take immune-dampening drugs. Overcoming it without those drugs — true acceptance — is one of the field's biggest prizes.

Also called免疫排斥transplant rejectiongraft rejection

Your immune system is the body's standing army against germs — the bacteria, viruses, and other invaders that would happily make a home in you. Think of it as a castle with layered defenses: high walls first, then guards who can recognize a particular enemy by face. Day and night, without you ever noticing, it patrols, attacks, and cleans up.

The first layer is fast and rough. Your skin is a wall; tears, mucus, and stomach acid wash or burn intruders away; and roving cells gobble up anything that breaks through. This innate defense reacts within minutes to hours and treats every invader much the same — it is the reason a scrape gets red, warm, and swollen as the cleanup crew rushes in.

The second layer is slower but brilliant: it learns. Special cells study a new germ, build weapons shaped to fit that exact enemy, and — crucially — remember it for years. That memory is why most people get chickenpox only once — though the virus can hide in the body and resurface decades later as shingles — and why vaccines work: they teach the system to recognize a threat before the real one ever shows up. The whole system rests on one delicate trick — telling self from non-self. When it misreads your own healthy tissue as the enemy, the result is an autoimmune disease.

Also calledimmunitythe body's defense system免疫防御系统

Immune tolerance is the goal of coaxing the immune system to accept a graft as 'self' — to leave it in peace — without a lifetime of immune-dampening drugs. Instead of standing guard with the security team switched off, the body genuinely updates its own guest list so the new tissue counts as a welcome resident.

Researchers try to teach this acceptance in several ways: introducing donor cells so the body learns to read their markers as familiar, or nudging the special regulatory immune cells whose job is to call off attacks. Done well, the immune system stays fully active against germs and tumors, yet treats the graft as one of its own.

True, durable tolerance is hard to achieve and still mostly experimental, but it is one of the field's great prizes: a transplant that lasts without the constant cost and risk of suppressing the whole immune system.

Also called免疫耐受transplant tolerancegraft tolerance

Immunohistochemistry, usually shortened to IHC, is a way to pinpoint one specific molecule inside a slice of brain tissue by borrowing the immune system's precision. The tissue is first fixed — soaked in a chemical that locks its molecules in place so the slice stays preserved and lifelike, like a flower pressed and set so it keeps its shape. Researchers then add antibodies, the immune system's guided missiles: proteins that latch onto one chosen target, such as a particular protein. Wherever that target sits in the slice, the antibody sticks; everywhere else, it washes away.

The antibody is tagged with something you can actually see. The tag may be an enzyme that turns a colorless chemical into a colored deposit visible under an ordinary microscope, or a glowing fluorescent dye seen under a special light — that fluorescent version is often called immunofluorescence. Either way, a brain slice that looked uniform suddenly reveals exactly which cells, and which parts of those cells, carry the molecule of interest.

Because nearly every cell type and signaling system has its own signature protein, IHC lets neuroscientists ask sharply targeted questions: Which neurons make dopamine? Where does this receptor sit on the cell? Which cells were recently active? It is a cornerstone tool for mapping who's who and what's where in the brain.

Also calledIHCimmunostaining免疫染色免疫染色法

Immunosuppression means using drugs to turn down the immune system so it stops attacking a transplanted graft. If immune rejection is an over-zealous security team throwing out a newcomer, immunosuppressive drugs are the order to stand down. They keep the graft alive — but they leave the whole building less guarded.

The drugs blunt the immune cells that would otherwise recognize and destroy the foreign tissue. They are usually taken for as long as the graft is in place, often for life, and the dose is a constant balancing act: enough to protect the graft, not so much that the body is left defenseless.

The cost is real. A dampened immune system fights infections less well and watches less vigilantly for cancer, so these risks rise. That trade-off is exactly why researchers chase immune tolerance — graft acceptance without the lifelong drugs.

Also called免疫抑制immunosuppressive drugsanti-rejection drugs

Immutability is the property that once data has been recorded on a blockchain and confirmed, it cannot be quietly changed or deleted. The record becomes write-once: you can always add new entries on top, but you cannot reach back and edit what is already settled. This is what lets a blockchain serve as a permanent, trustworthy history that everyone can rely on.

It does not come from a law or a promise — it comes from how the blocks are stitched together. Each block carries the hash (fingerprint) of the previous block, so the blocks form a tightly linked chain. Altering an old transaction would change that block's fingerprint, which would break the link in the very next block, and the next, all the way to the present. To make the edit stick, an attacker would have to redo the work of every block since — and out-race the entire honest network doing it, which on a large chain is wildly impractical.

The practical upshot is that the deeper a transaction is buried under later blocks, the more final it becomes. After enough confirmations, reversing it is effectively impossible. This is why immutability is prized for things like financial records, property titles, and audit trails — but it is also why mistakes are unforgiving: a payment sent to the wrong address cannot simply be undone.

Also calledtamper-resistance不可篡改性不可变性不可變性

Impedance control is a way of telling a robot not where to be, but how to feel when something pushes on it. Most simple control insists the robot hold an exact position no matter what, so if it meets a wall or a person it shoves through stubbornly and can do damage. Impedance control instead makes the robot's hand (its end-effector — the gripper or tool at the tip) behave like a chosen spring-and-damper: push it and it gives way by an amount you decide, then eases back. You are programming a relationship between the force the robot meets and the motion it allows, rather than nailing it to one spot.

Think of it as dialing the softness of a handshake. Set the virtual spring stiff and the robot holds firm, yielding only slightly under load — good for precise work. Set it soft and the robot becomes gentle and forgiving, flowing around contact — good for working beside people or sliding a part into place by feel. The damper part controls how bouncy versus syrupy that yielding feels. Crucially, you do not measure force and react to it after the fact; you shape the whole dynamic behaviour so the right give-and-take emerges naturally on contact.

Because it takes a motion deviation as its input and produces a contact force as its response, impedance control is the natural choice when a robot must touch an uncertain, changing world — opening a door, polishing a surface, or being safe around humans — where rigid position commands would be brittle or dangerous.

Also called机械阻抗控制機械阻抗控制

In vivo therapy delivers the gene or the edit directly inside the body, so the change happens in the patient's own tissue where the cells live. The Latin in vivo means within the living body. Instead of sending cells out to a workshop, this is the house-call approach: the repair team comes to you and works on the cells right where they are, no removal required.

A treatment — such as a virus carrying a healthy gene, or editing tools packaged in tiny fat bubbles — is injected or infused and travels to the target cells, for example in the eye, muscle, or liver. There it slips its cargo inside, and the cells make the change in place. Nothing is taken out and grown in a dish; the patient's body is the workshop.

The appeal is simplicity: in principle one injection, no custom cell manufacturing. The challenge is aim and control. The therapy must reach enough of the right cells without straying to the wrong ones, the dose has to be right inside a living system, and because the change is made in place there is no dish step to screen out edits that missed their mark.

Also called体内疗法體內療法in vivo gene therapy

In-hand manipulation is the act of moving a grasped object around within the hand itself, without setting it down and picking it up again. The hand has already caught the object; now it shifts the object's position or turns it to a new orientation purely by working the fingers — sliding, rolling, or re-gripping it in place. Think of how you pick up a pen sideways and then, without your other hand and without putting it down, walk it around in your fingers until it is poised to write.

Why bother? Because how you first grab an object is rarely how you need to hold it. A robot may snatch a screw at whatever angle it was lying, but to drive it the screw must end up pointing straight out of the fingertips; a part picked from a bin may need to be flipped before it can be inserted. The clumsy way is to put the object down, let go, and re-grasp it from a better angle, which is slow and risky. In-hand manipulation skips all that by rearranging the object while it stays held.

It is one of the trickiest skills in robotics because the object must be kept under control during the very moment its grip is loosened or rolled — relax too much and it falls, hold too tight and it cannot move. Doing it well typically needs a multi-fingered hand, careful sensing of contact and slip, and a plan for how each tiny re-grip will nudge the object, which is why in-hand manipulation is usually treated as the core hard problem inside the broader goal of dexterous manipulation.

Also calledwithin-hand manipulation手中操作in-hand reorientation

An in-silico brain model is a piece of the brain rebuilt inside a computer — a software copy of neurons and their connections that you can run, watch, and poke at, instead of working with living tissue. The name comes from the idea that experiments can happen in living animals (in vivo), in a dish (in vitro), or now in silicon chips (in silico). Picture a flight simulator, but for brain tissue: the screen is filled with thousands of model nerve cells wired together, and when you switch them on, they fire and pass signals to one another much as real cells would. Nothing in the model is alive; it is all numbers being crunched, yet the patterns it produces can look strikingly like the chatter of a real brain.

Scientists build these models to test ideas they cannot easily test in a real head. Suppose you suspect that a certain type of cell is what keeps a memory steady, or that a particular drug calms an over-firing circuit — you can change that one thing in the simulation, run it, and see what happens, over and over, with perfect control and no harm to any animal. A good model is grounded in real measurements: the shapes of cells, how fast they fire, how strongly they connect. If the simulated tissue then behaves like the real thing, the underlying idea gains support; if it does not, the idea was probably wrong or incomplete. In this way the model becomes a kind of testable hypothesis you can run, rather than just a picture.

The catch is that a model is only as trustworthy as the assumptions baked into it. Real brains have billions of cells, countless cell types, and details no one has fully measured, so every simulation leaves things out and simplifies. A model can be beautiful and internally consistent yet still be wrong about the living brain, the way a very detailed map can still mislead if the surveyor guessed at the unmapped parts. So researchers treat results from in-silico brains as clues and predictions to be checked back against experiments, not as final proof on their own.

Also calledsimulated brainvirtual braincomputer model of neural tissue虚拟脑脑仿真虛擬腦腦模擬

Incentive salience is the pull a reward exerts on you — the magnetic urge to go get it. Brain scientists have found that this pull, which they nickname wanting, is surprisingly separate from how much pleasure the reward actually gives you, which they call liking. Wanting is the craving that makes your mouth water and your feet carry you toward the kitchen; liking is the warm enjoyment you feel once the cake is in your mouth. They usually travel together, but they are run by different machinery and can come apart.

The wanting side leans heavily on a brain chemical called dopamine, which acts like a volume knob on desire. Boost dopamine and a reward feels more grabbing, more worth chasing — even though it tastes no better. Block dopamine and an animal will still smile and lick its lips at a sweet treat (liking is intact), yet barely lift a paw to obtain it (wanting is gone). Liking, by contrast, depends on smaller hotspots that use the brain's own opioid and cannabinoid signals.

This split matters because it reshapes how we understand addiction. In a person hooked on a drug, repeated use can crank up wanting for the drug to enormous levels, while the liking — the actual pleasure — fades. The result is a powerful, gnawing craving for something that no longer feels good: you intensely want what you barely enjoy. The same mismatch can color overeating, compulsive gambling, and the tug of a phone notification.

Also calledwantingmotivational salience想要动机显著性動機顯著性

Indium bump bonding is the technique that physically joins two quantum chips face-to-face by squeezing arrays of tiny indium bumps between them. Each bump is a soft metal dot, often only a few tens of micrometers across, deposited on matching pads on the two chips. When the chips are pressed together, the bumps deform and weld into a single column that both holds the chips in place and carries an electrical signal across the gap.

Indium is the metal of choice for a specific reason: it stays soft and ductile even when cooled to a few thousandths of a degree above absolute zero, the temperature at which superconducting qubits operate. Most metals turn brittle in the cold and would crack during the long cooldown, but indium keeps flexing, so the bumps survive. It also becomes superconducting at low temperature, which means a bump can carry a control or readout signal, or a clean ground connection, with very little loss.

In a flip-chip quantum processor this is the concrete bond beneath the architecture. One chip holds the qubits and the other holds the wiring and readout lines; the indium bumps connect the two tiers while leaving a controlled air gap between them. Getting hundreds of bumps to be the same height, land in the right place, and all bond reliably is hard, and bump uniformity, alignment, and yield are active engineering problems on today's small, noisy devices.

Also calledindium bumpsindium micro-bumpsindium flip-chip bonding

An induced pluripotent stem cell, or iPSC, is an ordinary specialized adult cell that has been rewound back to a blank, embryo-like state. Take a fully committed cell — a bit of skin or blood, say — and switch a few master genes back on, and the cell forgets its job and reverts to behaving like a pluripotent stem cell. It is like resetting a device to its factory settings: the same hardware, wiped clean and ready to be configured into anything again.

The breakthrough came in 2006, when Shinya Yamanaka showed that introducing just a small set of reprogramming factors — the so-called Yamanaka factors — could reset a mature cell's identity. These factors flip the cell's internal control switches back toward the pattern seen in early development, reactivating the pluripotency program the cell had long since shut off. The result is a cell that, by every practical test, behaves like an embryonic stem cell.

The reason iPSCs caused such excitement is that they deliver pluripotency without an embryo, sidestepping the central ethical objection to embryonic stem cells. They can also be made from a specific patient's own cells, yielding pluripotent cells that are a genetic match and far less likely to be rejected. They have become indispensable for studying disease and screening drugs in a dish, though using them to grow safe transplant tissue is still an active, demanding area of research.

Also callediPSC诱导多能干细胞誘導多能幹細胞

An industrial manipulator is a robotic arm bolted in one place — usually on a factory floor — that does physical work like welding, painting, lifting, or assembling. It is the picture most people have in their head when they hear the word 'robot': a metal arm with a row of joints, swinging tirelessly through the same motions all day. It does not roll or walk anywhere; its job is to reach into the space around its base.

Like a human arm, it is built from rigid links connected by joints, and at the far end is a 'hand' called the end effector — which might be a gripper, a welding torch, a paint sprayer, or a suction cup, swapped to suit the task. By moving its joints in the right combination, the arm places that hand exactly where the work needs to happen, over and over, with great precision and speed.

This is the original and still most common form of working robot. Industrial manipulators shine at jobs that are repetitive, heavy, dirty, or dangerous — the kind of tasks where a machine's steadiness and stamina beat a tiring human hand. They are the reason a car body can be welded in the same exact spots on every single vehicle that rolls down the line.

Also calledindustrial robot armrobotic arm机械手臂機械手臂

The inertia tensor is a compact bundle of numbers that describes how hard it is to start, stop, or turn a rigid body's rotation — and crucially, how that difficulty changes depending on which axis you spin it about. For straight-line motion, a single number (the mass) tells you how reluctant an object is to speed up. Rotation is trickier: a long wrench is easy to spin about its length but hard to spin end-over-end, so a single number is not enough. The inertia tensor packages all those direction-dependent stubbornnesses together, usually as a 3-by-3 grid of values.

The simpler idea hiding inside it is the moment of inertia: a measure of rotational reluctance about one chosen axis, set not just by how much mass a body has but by how that mass is spread out. Mass far from the spin axis counts much more than mass near it — this is why a figure skater spins faster by pulling their arms in, drawing mass toward the axis and lowering their moment of inertia. The full tensor simply records this reluctance for every direction at once, including the off-axis cross-terms (the products of inertia) that describe bodies whose mass is lopsided rather than neatly symmetric.

In robotics, every link of an arm — every forearm, every gripper segment — has its own inertia tensor, and these feed directly into the equations that predict how the robot will respond to the forces driving it. Get them wrong and the controller mispredicts the motion, leading to sloppy tracking or instability. That is why engineers carefully estimate each part's mass distribution, either from the 3D design model or by measurement, before trusting a robot to move quickly and precisely.

Also calledmoment of inertiarotational inertia转动惯量惯量矩阵

An inertial measurement unit, almost always called an IMU, is a tiny sensor package that tells a robot how it is moving and which way it is tilted — without looking at the outside world at all. It bundles together two or three sensors on one little chip: an accelerometer that feels pushes and the pull of gravity, a gyroscope that feels turning, and often a magnetometer that feels the Earth's magnetic field like a compass. The same kind of chip sits inside your phone, quietly noticing when you flip the screen sideways.

Each sensor alone is incomplete, but together they paint a richer picture of motion. The accelerometer can sense which way is down because gravity always tugs that way, but it gets confused when the robot itself speeds up or shakes. The gyroscope is excellent at catching quick spins and turns, but over time its readings slowly wander off. By combining them, the IMU lets a robot keep a running sense of its own orientation — whether it is upright, leaning, or rolling over — even in pitch darkness or thick fog where cameras would fail.

Because it senses only the robot's own body, an IMU is a proprioceptive sensor, and a fast, cheap, ever-available one. The catch is that small errors pile up: if you try to track position by adding up acceleration over and over, the guess drifts further from the truth every second. That is why robots rarely trust an IMU on its own; they fuse it with outward-looking sensors like GPS or cameras, letting each correct the other's weaknesses.

Also calledIMU惯性测量单元惯导单元

Infinity is endlessness — the idea of something that never stops, never runs out, has no last step. The crucial thing to get straight is that it is not a number. You can't reach it by counting, and you can't do ordinary arithmetic with it: there is no biggest number that counting finally arrives at, because whatever number you name, you can always add one more. Think of walking down a road that has no end — not a very long road, but one with genuinely no final mile.

Why it matters: Georg Cantor discovered something astonishing — there isn't just one infinity. Some infinities are strictly bigger than others. In 1874 he proved that the counting numbers 1, 2, 3, ... and all the real numbers between 0 and 1 are infinities of different sizes: the counting numbers go on forever, yet the points on that little stretch of line — which include the never-ending, never-repeating decimals, not just the tidy ones — form a crowd so much larger that they can't be paired off against the counting numbers at all. In 1891 he gave the elegant proof now usually told, the diagonal argument: line those numbers up in any list you like, then build a new one whose first digit differs from the first number's first digit, whose second digit differs from the second number's second digit, and so on (steering clear of 0s and 9s, so the same value can't sneak back in under a different decimal spelling). The number you get differs from every number on the list — so no list could ever hold them all.

A common confusion to clear up: there's the potential infinity of a process that can always go one more step (the ∞ symbol you meet in calculus, meaning "grow without bound"), and the actual infinity of a completed endless collection, like the whole set of counting numbers taken at once. Mathematicians once thought only the first kind was respectable; Cantor's great move was to treat the second kind as a real, working object — and to show it comes in different sizes.

Also calledendlessnessthe infinite无穷大无限無窮大無限aleph-nullℵ₀

Inflation is the slow, broad rise in prices across an economy — not one pricey item, but almost everything creeping upward at once, so each dollar in your pocket quietly buys a little less. Think of the grocery cart you filled for $50 a few years ago: today the very same cart might cost $60, even though nothing inside it changed. The goods didn't get more valuable — your money got weaker.

To track it, economists watch a big shopping basket of typical purchases — food, rent, gas, haircuts — and follow the total cost of that basket month after month, with each item weighted by how much people actually spend on it, so rent counts for more than haircuts. That weighted total is an index like the Consumer Price Index (CPI), and inflation is simply how fast that index climbs, usually quoted as a yearly percentage. Mild inflation, a few percent a year, is so normal that central banks actually aim for it; runaway inflation, where prices double in months, can wreck savings and trust in money itself.

Here's the common mix-up: inflation isn't "prices are high," it's "prices are rising." Even with steady 2% inflation, prices keep inching up forever — they just do it gently. And a raise that merely matches inflation isn't really a raise at all; your paycheck got bigger, but so did every price tag, leaving you exactly where you started.

Also calledCPI inflationrising cost of living通胀物价上涨通膨

An inhibitory postsynaptic potential, or IPSP, is a small dip in a neuron's inner voltage that makes the cell less likely to fire a signal. A neuron is a brain cell that talks to others by sending brief electrical pulses called spikes. Whether it fires depends on its voltage reaching a tipping point called threshold. An IPSP is the opposite of a push toward firing: it is a gentle pull in the wrong direction. Think of a dimmer switch being nudged down a little, so the light stays off.

Here is how it happens. When one neuron wants to quiet another, it releases a chemical messenger (often a molecule called GABA or glycine) at the junction between them, the synapse. That messenger opens tiny gateways in the receiving cell that let in negatively charged particles, or let positive ones leak out. Either way the inside of the cell becomes more negative than usual — a change called hyperpolarization, meaning it drifts even further from the threshold needed to fire. So the cell now needs extra excitation to reach that tipping point, which is why an IPSP holds the neuron back. Each IPSP is tiny, but many arriving together can add up and reliably keep a neuron silent, helping the brain stay balanced and sharp rather than firing wildly.

Also calledIPSP抑制性突触后电位抑制性突觸後電位

An initial coin offering, or ICO, is a way for a new blockchain project to raise money by selling its tokens to the public before — or as — it is built. People send in an established cryptocurrency, and in return they receive a batch of the project's new tokens. The name echoes the stock market's "initial public offering," and the idea is loosely parallel: a young venture funds itself by selling the public a stake — but here the stake is a token, and the sale happens directly through smart contracts rather than through banks and exchanges.

Mechanically it is straightforward. The team publishes a plan, sets a price and the terms of the sale, and deploys a smart contract that accepts incoming funds and automatically sends each buyer the right number of tokens. Because it is all code on an open network, anyone in the world can take part within minutes, and the team can raise capital from a global crowd without going through the gatekeepers that traditional fundraising requires.

ICOs matter because they showed that a project could fund itself, and gather a community, by issuing a token directly to whoever believed in it — bypassing venture firms and stock exchanges entirely. The same idea later evolved into more structured forms with extra safeguards, but the core move stayed the same: turn early supporters into token-holding participants from day one, and let a global audience help launch something new.

Also calledICOinitial coin offeringtoken sale首次代币发行首次代幣發行

The insular cortex, often just called the insula, is a patch of brain folded out of sight deep inside each side of the brain, tucked away beneath the spot where the temporal lobe meets the frontal and parietal lobes. You cannot see it on a normal view of the brain's surface because it is hidden under overhanging folds, like a small inner room walled off behind the outer rooms of the house. Its special job is to listen in on the body itself: it gathers the quiet inner signals that report how your organs and tissues are doing — a pounding heart, a tight chest, a full stomach, a dry throat, the burn of a stubbed toe, the queasy turn of nausea. This sense of the body's internal state is called interoception, and the insula is its main home in the brain.

What makes the insula remarkable is that it does not just register these raw body signals — it blends them with feeling and meaning. The deeper, back part takes in the basic bodily readings, while the front part weaves them together with emotion, memory, and judgment, turning a fast heartbeat into the felt experience of fear, or a churning gut into the conscious sense of disgust. Because of this, the insula is deeply tied to how emotions actually feel from the inside, to cravings and the urge to seek reward, to empathy when we share others' pain, and to the basic awareness that this body is mine. When the insula is damaged or behaves abnormally, people can lose the ordinary felt connection to their own body and emotions, which is why it draws interest in conditions ranging from anxiety and addiction to chronic pain and eating disorders.

Also calledinsulainsular lobe岛叶脑岛島葉腦島

Insulin is the hormone that unlocks your cells so they can take in sugar from the blood and burn it for energy. Think of it as a doorman: after a meal, sugar floods into your bloodstream, your pancreas releases insulin, and the doorman waves that sugar inside the cells. Without him, the sugar piles up outside, stranded in the blood while the cells go hungry.

That pile-up is diabetes. In type 1, the pancreas makes little or no insulin at all; in the far more common type 2, the body still makes it but the cells stop listening, as if the doorman is shouting and no one answers. Either way, blood sugar climbs to dangerous levels while the body, starved of fuel, begins to break itself down.

A common mix-up: insulin does not 'cause' diabetes, and taking it is not a sign of failure or of eating too much sugar. It is replacement for something the body should make on its own. Before it could be given as medicine, a diagnosis of type 1 diabetes was a death sentence — children wasted away within months.

Also calledinsulin hormone胰岛素胰島素血糖激素

An integral is a way of adding up an infinite number of tiny pieces to get a whole. Picture the area under a curve — a hilly, irregular shape that no simple formula seems to fit. Slice it into countless paper-thin vertical strips, find the area of each, and add them all up. As the strips get thinner and thinner, the total settles on one exact answer: that answer is the integral. In short, it measures accumulation — how much something piles up.

This is why it shows up everywhere. Know how fast a car is going at every instant, and integrating that speed tells you the total distance traveled. Know the rate water flows into a tank, and the integral gives the total volume collected. Anytime a quantity builds up from a changing rate, the integral is the tool that sums it.

The deepest surprise is that integration is the exact reverse of the derivative — the operation that measures how fast something changes. This is the Fundamental Theorem of Calculus: differentiating undoes integrating, like multiplying undoes dividing. A common mistake is to think the integral is just "area" and nothing more; the area is the picture, but the real idea is accumulating a quantity from its rate of change.

Also calleddefinite integralindefinite integralantiderivativeintegration定积分不定积分反导数定積分不定積分

The integrate-and-fire model is a deliberately stripped-down cartoon of a single neuron — a nerve cell — that captures just one essential trick: a neuron quietly adds up the little electrical nudges it receives from its neighbors, and the moment that running total crosses a fixed line called the threshold, it fires off a single sharp pulse, then resets and starts over. Picture a bucket sitting under a few dripping taps. Each drip is an incoming signal; the water level is the cell's charge, or voltage. Nothing dramatic happens while the bucket slowly fills, but the instant the water reaches a marked rim, the bucket tips, dumps everything out (that splash is the neuron's spike), and settles back empty to begin filling again.

Real neurons are fantastically complicated, with thousands of tiny pores and pumps shuffling charged particles in and out of the cell. The integrate-and-fire model throws almost all of that away on purpose. It does not try to reproduce the detailed shape of the electrical pulse at all; it only tracks the slow build-up of voltage toward threshold and treats each firing as an identical, instant blip. In the popular leaky version, the bucket also has a small hole in the bottom, so if the drips stop the level slowly drains back down — a neat way to say that a neuron forgets old nudges if fresh ones do not keep arriving. This is why it is often called the leaky integrate-and-fire, or LIF, model.

The payoff of all this simplifying is speed and clarity. Because the rule is so cheap to compute, scientists can wire up networks of thousands or millions of these toy neurons and watch how patterns of firing ripple through a circuit, without drowning in the biochemical details of any one cell. It will not tell you everything about how a particular neuron works, but it is one of the most useful starting points in theoretical and computational neuroscience for asking how the timing and rhythm of spikes carry information across a population of cells.

Also calledleaky integrate-and-fire modelLIF modelIF neuron漏积分发放模型漏積分發放模型整合发放模型整合發放模型

An integrated circuit is an entire electronic circuit — thousands to billions of transistors plus all their wiring — built together on a single thumbnail-sized sliver of silicon, the "chip." Before ICs, engineers soldered individual transistors and resistors together by hand, like wiring a city one streetlight at a time. An IC fabricates the whole city in one go, so the parts are born already connected — microscopically small, fast, and cheap.

Chips are made by photolithography: light projects circuit patterns onto a silicon wafer coated in light-sensitive resist, and chemicals etch the exposed pattern, layer by layer — the transistors first, then the metal wires stacked above them. Repeating this builds millions of devices side by side in one run. Modern VLSI (very-large-scale integration) packs billions of transistors with features only a few nanometres wide; the processor in your phone is one such chip, holding more switches than there are stars you can see in the sky.

Also calledICchipmicrochipVLSI集成电路積體電路

Integrated quantum photonics builds a quantum processor out of light instead of electrical circuits. Where a superconducting chip moves microwave signals along metal wires, a photonic chip guides single particles of light through tiny channels etched into glass-like material. Picture a maze of hair-thin transparent pipes printed onto a wafer: photons enter, run through splitters and bends, interfere with each other, and come out the far side carrying the answer. Because the information rides on light, the same telecom wavelengths and optical fibers that already carry the internet can plug straight into the chip, and much of it runs at or near room temperature rather than a hair above absolute zero.

The building blocks are waveguides, beamsplitters, phase shifters, and detectors, all patterned into silicon or silicon nitride. A waveguide is a buried strip of higher-index material that traps light and steers it around the chip. A beamsplitter is just two waveguides brought close enough that a photon can hop between them, which is how two light paths interfere. Phase shifters tune the path length to set the interference, and at the end, detectors — often superconducting ones that must still be cooled — click when a photon arrives. Encode a qubit in which path a photon takes, or in its polarization, and a careful mesh of these elements can run quantum logic and quantum links on a single piece of silicon.

The honest catch is that photons barely interact with each other, which is exactly why they are clean carriers but also why two-qubit gates are hard. The standard trick makes those gates probabilistic: the operation only succeeds when detectors happen to click the right way, perhaps a small fraction of the time, so you run many attempts and keep the good ones. Generating exactly one photon on demand, getting it into the waveguide without losing it, and detecting it efficiently are all still imperfect. Photonics is a serious contender precisely because it is telecom-friendly and partly warm, but like every modality today it is small, lossy, and unproven at scale — no approach has won.

Also calledphotonic quantum chipon-chip quantum photonics光子量子芯片片上量子光子学光子量子晶片晶片上量子光子學

Intellectual property is ownership over things you can't touch — ideas, inventions, names, stories, songs. The law treats a clever creation a bit like a plot of land: it has an owner, and others need permission to build on it. The catch is that an idea, unlike a field, can be copied endlessly at almost no cost, so the law steps in to hand the creator a temporary, exclusive right where none would exist naturally.

It comes in a few main flavors. A patent protects an invention — how something works — for around twenty years. Copyright protects the expression in a book, film, or song, usually for the author's life plus seventy years. A trademark protects a brand's name or logo — the swoosh, the bitten apple — for as long as it's in use. Each rewards a different kind of creativity.

Here's the deep bargain, and a common misunderstanding: these rights are deliberately limited, not eternal. Society grants a monopoly to tempt people into inventing and creating, then lets the protection expire so the work flows into the public domain for everyone to use freely. It is a balance between feeding the creator and feeding the commons — and reasonable people argue endlessly about where the line should sit.

Also calledIP知识产权智慧財產權intangible property

An intelligence quotient, or IQ, is a single number that says how your performance on a particular kind of mental test compares to everyone else's. The test is scored, then stretched onto a scale where 100 is the dead-centre average — set there by design, so that roughly half the population scores above it and half below. So an IQ isn't a measure of how clever you are in some absolute sense; it's more like your ranking in a very specific race, run against the rest of the crowd.

Why bother? Because, narrow as it is, that score is surprisingly useful. It does a decent job of predicting how someone will fare at school or at certain jobs, and it flags learning difficulties early enough to help. Picture a thermometer: a single reading that's genuinely informative, yet tells you nothing about the whole weather system around it.

Here's the trap to avoid: IQ measures one slim slice of the mind — chiefly reasoning, pattern-spotting, and verbal skill under timed conditions. It says little about creativity, wisdom, emotional savvy, drive, or street smarts. Scores can drift with schooling, practice, language, and culture, and the whole idea has a tangled, often abused history. A high IQ is a real strength; it is not a verdict on a person's worth or their ceiling.

Also calledIQIQ score智力商数智力測驗分數

For decades the story of chips was simple: shrink the transistors and everything gets faster. But a chip is not just transistors — it is also the vast tangle of tiny metal wires that carry signals and power between them, often a dozen or more stacked layers of them. Interconnect scaling is the uncomfortable fact that when you shrink those wires too, they get worse, not better. A thinner wire is like a narrower water pipe: it fights the flow harder (higher resistance, R), and packed close to its neighbors it stores more charge between them (higher capacitance, C). The product of the two sets the RC delay — roughly, how long it takes to charge the wire up enough to register as a '1'. Transistors keep getting quicker as they shrink, but the wires get slower, so on a modern node the wires, not the switches, increasingly decide how fast and how power-hungry the chip can be.

This is the wire crisis behind much of today's roadmap. You can flip a transistor in a fraction of a picosecond, yet a signal still has to crawl down a resistive copper trace to get anywhere useful, and a meaningful share of a chip's energy is now spent just pushing charge onto those wires. Engineers fight back on several fronts: adding more metal layers so wiring has room to breathe; swapping in new conductor materials (cobalt, ruthenium, and molybdenum) that behave better than copper at tiny dimensions where copper's barrier liners eat up the cross-section; and using low-k insulators between wires to trim capacitance. The most dramatic move is backside power delivery — lifting the fat power-and-ground wires off the crowded front of the chip and routing them underneath, which frees the front-side metal to carry signals and cuts the IR voltage droop those power wires used to suffer.

The deeper lesson is that scaling is no longer one knob. Transistor architecture (FinFET, then GAA nanosheets) addresses the switch; interconnect scaling addresses the plumbing between switches — and the plumbing has become the harder problem. It is one of the limits pushing the industry past the single monolithic die toward chiplets and advanced packaging, where short, fast links between smaller dies sidestep some of the penalty of dragging signals across one enormous chip.

Also calledwire scalingRC delay scalingback-end-of-line (BEOL) scaling

The internal quality factor, written Q_i, is a single number that tells you how good a piece of a quantum chip is at holding onto microwave energy without quietly losing it to the materials around it. Picture pushing a child on a swing and then letting go: a high-Q_i swing keeps swinging for a very long time, while a low-Q_i one drags to a stop fast because friction is bleeding away the motion. On a chip, the swing is a tiny on-chip resonator, and the friction is every imperfect surface, oxide layer, and stray defect that soaks up energy it should not. Engineers care because Q_i is the cleanest yardstick they have for how lossy their materials and fabrication process are.

Concretely, Q_i counts roughly how many oscillation cycles the resonator's energy survives before it leaks into internal loss channels rather than out the intended port. You measure it by cooling a test resonator to near absolute zero, sweeping a microwave tone across its resonance, and reading how sharp and deep the dip is: a tall, narrow resonance means low loss and high Q_i, a broad shallow one means the energy is draining fast. The total measured Q is split into Q_i, the intrinsic loss you are trying to fight, and the coupling Q that describes the deliberate connection to the outside world, so the trick is to isolate Q_i from the part you put there on purpose. Higher Q_i roughly tracks longer achievable qubit coherence, because the same surface oxides and trapped defects that drain a resonator also drain a nearby qubit.

The honest catch is that Q_i is not one fixed property of a material; it changes with temperature, with how many photons you drive into the resonator, and even from cooldown to cooldown, because much of the loss comes from individual atomic-scale defects that fluctuate. The hardest losses to beat show up at the single-photon powers that real qubits actually use, where two-level-system defects in surface oxides dominate. So a record Q_i quoted at high drive power can look far better than what the qubit beside it ever feels, and chasing Q_i is an ongoing materials-and-cleanliness fight, not a solved problem.

Also calledintrinsic QQ_internal内部品质因数本征品质因数內部品質因數本徵品質因數

The International Phonetic Alphabet is a set of symbols designed so that each distinctive speech sound used in the world's languages has its own mark — one symbol, one sound, with small added marks, called diacritics, for finer shades. Ordinary spelling is a mess: the "gh" in "enough" sounds like "f," yet it's silent in "though." The IPA cuts through that. Write a word between slashes, like /θɪŋk/ for "think," and anyone trained in the system can pronounce it correctly without ever having heard it.

That is why it shows up in dictionaries, language classrooms, and singers' scores around the world. Because the symbols stand for sounds rather than letters of any one language, the same chart works for English, Mandarin, Zulu, or a language with no writing system at all — a field linguist can sit with a speaker and capture exactly what they hear. The familiar symbol [θ], for instance, is the sound at the start of "thin," whatever country you're in.

A common misunderstanding is that the IPA is an alphabet for some language, or a code only experts use. It isn't a language at all — it's more like a ruler for sound. And it doesn't capture every shading of a real voice; rather, it pins down which sounds matter, precisely enough that two people on opposite sides of the planet can agree on what was said.

Also calledIPAphonetic alphabetphonetic transcription国际音标國際音標音标

An interneuron is a nerve cell that sits in the middle of a circuit, passing messages between other nerve cells rather than reaching out to muscles or sense organs. Think of a relay between two phone callers: the message comes in from one neuron, the interneuron does a quick bit of sorting, and the message goes out to another neuron right nearby. Most interneurons are short-range cells that stay within one local patch of the brain or spinal cord and never send their wiring off to distant body parts.

Interneurons are the workhorses of decision-making in the nervous system. Some of them excite their neighbors, nudging a signal forward, while many others quiet their neighbors down, acting like a brake that keeps activity from running wild. By mixing these pushes and brakes, a single interneuron can decide whether an incoming signal gets amplified, blocked, or reshaped before it continues. This is how circuits filter noise, sharpen timing, and produce the fast, finely tuned behavior we rely on every moment.

Also calledlocal neuronassociation neuron联络神经元聯絡神經元局部神经元局部神經元

Interoception is your brain's sense of what is happening inside your own body. Just as your eyes report on the outside world and your skin reports on touch, a hidden set of sensors tracks the inside: how fast your heart is beating, whether your lungs feel full, if your stomach is empty, whether you are too warm, and dozens of other signals. Most of the time this reporting runs quietly in the background, but it surfaces as feelings like hunger, thirst, a racing heart, a full bladder, or that flutter of butterflies in your gut.

These body signals travel up the spinal cord and through nerves like the vagus to the brainstem, then on to a deep fold of the cortex called the insula. The insula is the central hub that gathers all these scattered reports and assembles them into a single overall sense of how your body feels right now. Crucially, this is not just plumbing: the same machinery shapes emotion and decision-making, because feelings like fear, calm, craving, or unease are built in large part from how your body feels. When the insula misreads or over-amplifies these inner signals, the result can be panic attacks, anxiety, or eating and addiction problems.

Also calledinteroceptive sensesense of the internal body内感觉內感覺内部感受內部感受
See alsoVagus Nerve

Once you decide to stop building one giant chip and instead place several smaller chiplets side by side, you hit a new problem: how do you wire them together? Ordinary circuit-board traces are far too coarse — they carry maybe dozens of connections per millimeter, while the edge of a modern die wants thousands. An interposer is the answer. It is a thin slab — usually silicon, sometimes an organic laminate — that sits underneath the chiplets and acts as a private, ultra-fine wiring floor between them. The chiplets are flip-mounted on top with tiny solder microbumps, the interposer routes the dense traffic horizontally from one to the next, and a coarser set of bumps on its underside connects the whole assembly down to the package and board.

This is what people mean by 2.5D integration: the chips still live in a single plane, edge to edge, rather than being stacked vertically (true 3D). The interposer just gives them a much richer set of connections than a board ever could. Because silicon can be patterned with the same lithography used to make chips, a silicon interposer offers wire pitches measured in micrometers, plus the option of through-silicon vias (TSVs) that punch straight down so power and board signals can pass through it. That fine pitch is precisely why HBM works the way it does: a stack of TSV-bonded DRAM is set right next to the logic die on a shared interposer, and the thousands of short, dense wires between them are what deliver the enormous memory bandwidth — answering the memory wall that a narrow off-package bus could never solve.

The trade-off is cost and size. A large silicon interposer is itself a piece of fabricated silicon, expensive and limited by how big a single exposure can print, which is why organic and bridge-based alternatives (embedding only a small silicon bridge where the dense wiring is actually needed) have grown popular. But the core idea holds: the interposer is the shared foundation that makes chiplet systems possible, letting you mix dies from different process nodes and keep only the known-good ones, while still wiring them together almost as tightly as if they were one chip.

Also calledsilicon interposer2.5D interposer硅中介层矽中介層

These are the two main ways neuroscientists eavesdrop on the electrical chatter of neurons, and the difference comes down to where the listening electrode sits. In intracellular recording, an exquisitely fine electrode tip is pushed through a single neuron's outer skin, the cell membrane, so the wire is literally inside one cell. From that vantage point you read the cell's own voltage directly: the slow rises and dips of its mood, every small ripple that does not quite trigger a signal, and the full, sharp shape of each action potential, the brief electrical spike a neuron fires to talk to its neighbors. It is like clipping a microphone onto one person's collar to catch their every breath and whisper.

In extracellular recording, the electrode stays outside the cells, parked in the salty fluid between them. It never breaks into any neuron; instead it senses the faint voltage ripples that spread through the surrounding tissue whenever nearby cells fire. From this spot you mostly catch the short blips of action potentials from a handful of neighbors, plus a slower, blended hum from the activity of many cells at once, called the local field potential. It is like holding a microphone in the middle of a room: you hear the crowd and can pick out a few loud voices, but you are not pressed against any single mouth.

Each approach trades something for something else. Intracellular recording gives a gorgeously detailed, complete picture of one cell, including the quiet signals that never become spikes, but it is delicate, hard to keep stable, and usually limited to one or a few neurons at a time. Extracellular recording is sturdier and friendlier to awake, behaving animals, and modern probes can listen to hundreds of cells together, but it sees only the loud events, the spikes and the crowd hum, and untangling which spike came from which neuron takes extra detective work called spike sorting.

Also calledintracellular recordingextracellular recording细胞内记录细胞外记录細胞內記錄細胞外記錄

Intracortical recording uses tiny electrodes that go inside the cortex, sitting among the neurons themselves rather than resting on the surface. From this close, an electrode can hear individual neurons fire — the brain's sharpest, most basic signals — along with the blended hum of cells nearby. If scalp EEG is listening from outside the stadium, this is sitting in the stands among the fans, hearing single voices.

This is the highest-fidelity way to read the brain: it captures the firing of specific neurons in real time, which is exactly the detail needed to control a robotic arm or a cursor smoothly. It is the foundation of fully implanted brain–computer interfaces, where decoding depends on knowing what individual cells are doing.

Its great cost is invasiveness. The electrodes must be surgically pushed into living brain tissue, which carries real risk, and the body's healing response can gradually wrap the electrodes in scar tissue and dim the signal over months or years. Making implants that stay clear and reliable for a long time is one of the field's central challenges.

Also calledpenetrating electrodessingle-unit recording穿刺电极穿刺電極

Inverse dynamics works backward from a goal: you tell it exactly how you want the robot to move — the path, the speeds, and especially how quickly to speed up and slow down — and it computes precisely how much push each motor must deliver to make that motion happen. If forward dynamics is 'I push this hard, where does it go?', inverse dynamics is the flip side: 'I want it to go exactly here, like this — so how hard must I push?' It is the same question your own brain answers without thinking when you decide to lift a cup smoothly to your lips and your muscles supply just the right effort.

To get the answer right, inverse dynamics has to account for several forces at once. Gravity is constantly pulling each link down, so some torque is needed just to hold position. Speeding a joint up or slowing it down takes extra torque, because mass resists changes in motion. And in a connected arm, swinging one joint flings sideways forces onto the others — the Coriolis and centrifugal effects — which must also be paid for. Adding all of these together for the desired motion gives the exact torque command for each joint at each instant.

This is the backbone of high-performance robot control. Rather than nudging the motors and correcting mistakes after the fact, a controller can use inverse dynamics to predict the needed torques in advance, feed them straight to the motors, and let a smaller correction loop clean up only the leftover error. The payoff is motion that is fast, smooth, and accurate — essential for tasks like welding a straight seam or carrying a full glass of water without a spill.

Also calledID逆向动力学

Inverse kinematics is the reverse question, and the one a robot actually needs to answer in everyday work: I want the hand to be right here, pointing this way — so how much should each joint bend to make that happen? You start from the goal (a target position and orientation for the end-effector) and you have to solve backward for the joint values that achieve it. This is exactly what your own brain does, silently, every time you reach for a coffee mug: you decide where your hand should go, and your shoulder, elbow, and wrist angles sort themselves out.

Going backward is much harder than going forward, for two reasons. First, there can be several different joint settings that all put the hand in the same place — a human can grab the same mug with the elbow tucked low or flared out high — so the robot may face many valid answers and must pick one. Second, some targets have no solution at all because they simply lie beyond the arm's reach, and near awkward configurations the math can become touchy and unstable. Because of this, inverse kinematics is one of the central problems of robot motion: every time an arm is told to weld a seam, place a part, or follow a drawn path, something must be solving inverse kinematics, either with an exact algebraic formula or by an iterative numerical search.

Also calledIK逆运动学逆運動學逆解

Inverse reinforcement learning is a way for a robot to watch an expert and figure out what the expert was trying to achieve — the hidden goal behind the moves, not just the moves themselves. Picture watching a skilled driver without anyone telling you the rules of the road. You don't merely memorize 'turn left here, brake there'; you slowly infer what they seem to care about — staying in the lane, keeping a safe gap, getting there smoothly without jerking the car. Inverse reinforcement learning does exactly this for a robot: from demonstrations it reconstructs a reward function, the scoring rule that says which outcomes are good and which are bad, that would best explain why the expert behaved the way they did.

This flips the usual setup on its head, which is where the name comes from. In ordinary reinforcement learning — a topic the robot's AI side borrows from the field of reinforcement learning — you hand the robot a reward function and it discovers a good behavior by trial and error. Inverse reinforcement learning runs that backwards: you hand it the behavior (the expert's demonstrations) and it discovers the reward function that the behavior was secretly optimizing. The payoff is that a reward, once recovered, captures the intent rather than the surface motions. A robot that has grasped why an expert slows near obstacles can keep doing the sensible thing in fresh situations the demonstrations never covered, instead of blindly replaying old motions.

The hard part is that many different goals can explain the same handful of demonstrations — slowing down could mean 'save fuel' or 'be gentle on cargo' or 'avoid a bump,' and the robot can't always tell which. So these methods lean on extra assumptions, such as preferring the simplest explanation that fits, and they usually need a fair number of clean demonstrations before the inferred goal is trustworthy.

Also calledIRLinverse optimal control逆最优控制

The invertebrate nervous system is the wiring plan used by animals without a backbone — worms, snails, clams, octopuses, insects, crabs, and many more. Instead of one big brain and a single spinal cord running down the back, most of these animals build their nervous systems from ganglia: small, dense clumps of nerve cells that act like local control hubs. The ganglia are strung together by nerve cords, which are bundles of nerve fibers that carry signals from one clump to the next, a bit like towns connected by highways.

A very common body plan, seen across worms (annelids), molluscs, and arthropods such as insects and crustaceans, is a pair of ganglia at the front that form a simple brain, plus one or two nerve cords running along the belly side — the ventral nerve cords. (Vertebrates, by contrast, put their main cord along the back.) In segmented animals like earthworms, centipedes, and insects, the body is built from repeating blocks called segments, and each segment carries its own pair of ganglia. These segmental ganglia handle much of the local work — moving that segment's legs or body wall — so the animal can keep walking or wriggling even when the head ganglia are busy, sluggish, or damaged.

This decentralized, repeated design is a major theme in comparative neuroscience. It shows that intelligence and quick reflexes do not require a vertebrate-style central brain: a fly's escape jump and an octopus's color changes are run largely by ganglia and nerve cords. Molluscs vary widely — a clam gets by with a few scattered ganglia, while an octopus concentrates much of its nervous system into a large brain plus clever nerve cords in each arm, showing how flexible the invertebrate plan can be.

Also calledganglionic nervous system无脊椎动物神经构造無脊椎動物神經構造

The inverted-pendulum model of walking is a deliberately simple picture of how a legged robot (or a person) stays upright while moving. A normal pendulum, like a clock's, is a weight hanging down from a pivot and swinging gently below it. An inverted pendulum is the same thing flipped over: a weight balanced up on top of a stiff, thin support, like a broom balanced on your palm. The model says: ignore the arms, the swinging leg, and all the body's complicated parts, and pretend the robot is just one heavy lump (its body) sitting on top of one stick (the leg that is currently on the ground), pivoting around the foot.

This is useful because the messy physics of walking suddenly becomes the well-understood physics of a balancing stick. As the lump teeters forward over the planted foot, gravity tries to topple it; the trick of walking is to swing the other leg out ahead and plant a fresh foot just in time, so the body falls onto a new support and the process repeats. Walking, in this view, is really a controlled series of forward falls, each one caught by the next step. The model lets engineers compute where to put the next foot and how fast the body will travel, using a single clean equation instead of a tangle of joints.

Because it is so stripped-down, the inverted-pendulum model is the starting sketch for most walking-robot controllers; the popular 'linear' version even holds the body at a constant height, which makes the math simple enough to solve on the fly. Real robots then add back the details the model left out, but the core intuition — keep catching your own fall with the next step — comes straight from this picture.

Also calledlinear inverted pendulum modelLIPM倒立擺模型

The "invisible hand" is Adam Smith's image for a quiet kind of magic in markets: when people chase their own gain, they can end up helping everyone, even though that was never their plan. The baker bakes bread to make money, not to feed you — yet you wake up to fresh bread. No one ordered it; the wish to profit, guided as if by an unseen hand, nudges each person to make things others actually want. (Smith's own phrase, in The Wealth of Nations, actually described a merchant who, preferring to invest at home rather than abroad, is unwittingly led to strengthen his own country's economy; the baker is a later, friendlier stand-in for the same idea.)

Here's why the idea is so powerful: it suggests that order can emerge without anyone in charge. Prices act as silent signals — when something runs short, its price rises, which lures more sellers in and tells buyers to ease off, until the gap quietly closes. A whole city gets fed every morning with no central planner drawing up the menu, simply because thousands of self-interested choices mesh.

But the hand is not all-powerful, and Smith knew it. It works its tidy magic only when competition is real and prices tell the truth. When a factory dumps pollution it never pays for, when a monopoly corners a market, or when buyers can't see what they're really getting, self-interest can steer us straight into harm. "Greed is good" is a crude misreading — the honest claim is narrower and wiser: under the right rules, private gain and public good can point the same way.

Also calledthe invisible handAdam Smith's invisible hand无形之手斯密的看不见的手無形之手

An ion is an atom or molecule that has picked up an electric charge — because it has lost or gained one or more of its tiny electrons. Normally an atom is perfectly balanced: as many negative electrons as positive protons, so it carries no charge overall. Knock an electron loose, or stuff an extra one in, and that balance breaks. The leftover charge is what makes it an ion. Table salt is the everyday proof: each grain is a tidy lattice of sodium ions and chloride ions, locked together by nothing more than their opposite charges.

Which way it goes gives the ion its name. Lose electrons and you have a surplus of positive protons — a positively charged cation (like sodium, Na⁺). Gain electrons and the negatives win — a negatively charged anion (like chloride, Cl⁻). Atoms do this constantly to reach a more comfortable, stable arrangement, and the result is everywhere: it's why salt dissolves, why batteries push current, and why the signals in your own nerves are really ions sloshing across cell membranes.

One thing to keep straight: gaining a negative electron makes an ion more negative, and losing one makes it more positive — which can feel backwards at first. The atom's nucleus, with its protons, never changes during all this; only the lightweight outer electrons come and go. Change the protons instead and you'd have a different element entirely, not just an ion of the same one.

Also calledcationanion阳离子阴离子陽離子陰離子charged particle

An ion channel is a tiny doorway built into the thin, oily skin that wraps around every cell — the cell membrane. That membrane is normally waterproof and blocks electrically charged particles called ions (think of sodium, potassium, calcium, and chloride) from drifting through on their own. An ion channel is a special protein, folded so that a narrow tunnel runs right through it from outside the cell to inside. When the channel is open, certain ions can slip through that tunnel and cross the membrane; when it is shut, they cannot. So it works less like an open hole and more like a turnstile or a guarded gate set into an otherwise sealed wall.

What makes ion channels remarkable is that each kind is picky about which ions it lets pass — this is called selectivity. The shape and the electrically charged lining of the tunnel act like a fitted keyhole: a potassium channel waves potassium ions through but turns sodium away, even though sodium is the smaller particle. Many channels are also gated, meaning they snap open or closed in response to a trigger — a change in the voltage across the membrane, a chemical messenger latching onto them, or even a physical push or stretch. Because ions carry electric charge, every time a channel opens and ions rush through, it nudges the cell's electrical state, the way opening a faucet changes the water level in a tank.

This is the machinery behind the electrical life of nerve and muscle cells. When the right ion channels fly open in the right order, sodium pours in and the cell's voltage flips, producing the sharp electrical pulse — the action potential — that neurons use to send messages, and that makes your heart beat and your muscles contract. Because ion channels sit at the heart of every such signal, they are also a common target of medicines and toxins: local anesthetics work by jamming certain channels shut, and many venoms attack them, which is exactly why those substances can numb pain or shut signaling down.

Also calledchannel proteinmembrane channel离子通道蛋白離子通道蛋白

An ionotropic receptor is a protein in the cell's outer wall that does two jobs at once: it is both a lock that recognizes a specific chemical messenger, and a tiny doorway that lets charged particles flow in or out. The chemical messenger that fits it is called a neurotransmitter — the signal one nerve cell squirts at another. When that messenger snaps into the lock, the doorway swings open right away, with no middle steps. Think of a turnstile that pops open the instant you press your key card against it.

This direct, all-in-one design is what makes ionotropic receptors fast — they open within a fraction of a thousandth of a second, far quicker than receptors that have to relay the message through helper molecules inside the cell. The charged particles that rush through (called ions, such as sodium, potassium, or chloride) change the electrical balance across the cell wall, nudging the receiving cell toward firing its own signal or quieting it down. Because they react so quickly, ionotropic receptors handle the brain's split-second business: reflexes, rapid thoughts, and the moment-to-moment chatter between neurons.

Also calledligand-gated ion channel配体门控离子通道配體門控離子通道

IR drop is the voltage your circuits lose on the way to the wall socket — except the "wall socket" is the chip's power delivery network, the dense mesh of metal that carries VDD and ground to every cell. That metal is not a perfect conductor; it has resistance. And whenever current flows through resistance, some voltage gets spent just pushing through the wire, exactly as Ohm's law says: V = I*R. So a cell sitting deep inside a busy region doesn't see the full 0.8 V the package delivers — it sees 0.8 V minus everything the current burned crossing the grid to reach it. The name is literal: I (current) times R (resistance) is the volts that go missing. Picture water pressure at the top-floor tap of a tall building during a morning rush — by the time it climbs all that pipe with everyone showering at once, the pressure sags.

Why care? Transistors switch slower when their supply sags, because a lower rail means less gate overdrive to charge the next node. So IR drop quietly stretches every gate delay in the affected region, and a timing path that passed at the nominal voltage can suddenly miss its setup deadline at the drooped voltage — which is why modern timing signoff is voltage-aware and checks paths at the actual local rail, not the datasheet number. Push the droop far enough and logic doesn't just slow down, it stops resolving correctly and a flop can latch the wrong value. There are two flavors. Static IR drop is the steady-state sag from average current through the grid's resistance — fix it with a beefier PDN: wider power straps, more rows of them, more vias stitching the layers together. Dynamic IR drop is the fast transient when a big block switches all at once and yanks a large current in a few picoseconds; here the di/dt and the inductance of the path matter too, the rail momentarily collapses and then rings back, and the cure is on-die decoupling capacitance plus spreading high-activity cells so they don't all gulp current from the same spot at the same instant.

Also calledIR-dropsupply droopvoltage drooprail drooppower supply noise电源压降电压跌落轨压跌落電源壓降電壓跌落軌壓跌落

Iterative closest point, almost always shortened to ICP, is a recipe for sliding and rotating one cloud of points until it lands as squarely as possible on top of another cloud of the same thing. A point cloud is just a swarm of dots in space — for a robot, the spots where its laser or depth sensor struck nearby surfaces. When two such clouds describe the same room from slightly different positions, ICP finds the move that brings them into close agreement, which is also the move the robot made between them.

It earns the name by repeating two simple steps. First, for every point in the cloud it is moving, it finds the nearest point in the other cloud and tentatively treats those two as the same spot — a quick, rough guess at which dot pairs with which. Second, it computes the single shift-and-rotation that pulls all those guessed pairs closest together, and applies it. The clouds now overlap better, so the nearest-point guesses improve; it repeats, and with each pass the two clouds creep into tighter alignment until they barely move anymore — that settling point is the answer.

ICP is the standard engine behind scan matching and a backbone of LiDAR SLAM, prized for being simple and accurate when it starts from a decent first guess. Its catch is that it only ever pairs each point with its current nearest neighbor, so if the clouds begin far apart or badly twisted, it can lock onto the wrong pairing and confidently settle into a wrong answer — a trap called a local minimum. That is why robots usually feed ICP a rough starting estimate, often from wheel counts or a previous scan, before letting it polish the fit.

Also calledICPICP 算法ICP 演算法
J

JavaScript is the programming language that makes web pages interactive. HTML gives a page its structure and CSS its looks, but JavaScript gives it behavior — it's what makes a button respond to a click, a form check itself, or a feed load more posts without reloading the whole page.

It runs right inside the browser, on the visitor's own computer. When you click 'like' and the heart fills in instantly, that's JavaScript reacting on the spot, quietly fetching and updating just the bit that changed instead of fetching a brand-new page.

Despite the name, it has nothing to do with the Java language — the resemblance is a 1990s marketing accident. These days JavaScript also runs outside the browser (on servers, in tools), but its home turf is, and always was, the page in front of you.

Also calledjsecmascript

Deep inside your brain sits a tiny master clock that runs on a roughly 24-hour cycle, telling your body when to feel sleepy, when to feel alert, when to get hungry, and when to warm up or cool down. Normally this inner clock stays lined up with the outside world: it reads the bright morning light through your eyes and keeps itself synchronized with day and night. Circadian misalignment is what happens when that inner clock and the outside world fall out of step. Your brain still thinks it is the middle of the night while the sun is up, or it tries to keep you wide awake while everyone around you is asleep. Jet lag is the most familiar example: fly across several time zones and your body clock is suddenly hours behind or ahead of the new local clock on the wall.

The same mismatch happens without any travel. People who work night shifts, or who go to bed and wake up at wildly different times on weekdays versus weekends, force themselves to be active and asleep at the wrong points in their internal cycle. Because the inner clock cannot jump instantly to a new schedule and shifts only about an hour per day, you end up sleepy when you need to perform and unable to sleep when you finally get the chance. The result is poor and fragmented sleep, daytime grogginess, dulled attention and reaction time, low mood, and digestive upset. Over the long run, chronic misalignment is linked to higher risks of obesity, diabetes, heart disease, and other health problems, which is why keeping a steady sleep schedule and getting bright light at the right times matters so much.

Also calledcircadian desynchronysocial jet lagshift-work disorder昼夜节律失调晝夜節律失調社会性时差

A clock is supposed to tick at perfectly even intervals, but no real clock does. Jitter is the small, restless wobble in when each edge actually arrives — a few picoseconds early here, a few late there. If voltage noise is the fuzz you see when you zoom in on a signal's vertical axis, jitter is that same noise smeared along the horizontal (time) axis: the time-domain cousin of noise. Picture a drummer who means to play dead-on the beat but drifts a hair ahead or behind each hit — the song still plays, but the timing isn't crisp, and anyone trying to dance in perfect lockstep starts to stumble.

Jitter comes in two flavors. Random jitter is born from physics that never stops — thermal noise and flicker (1/f) noise inside the oscillator and buffers — so it has no upper bound and its spread grows the longer you wait between a reference edge and the one you're measuring. Deterministic jitter is bounded and has a cause you can usually name: power-supply ripple, crosstalk from a neighbor, or data-pattern effects on a link. Engineers slice it further into period jitter (how much one cycle's length varies), cycle-to-cycle jitter (the change from one period to the very next), and long-term or phase jitter (accumulated wander over many cycles). Phase jitter is really just the integral of an oscillator's phase noise — the same imperfection viewed in the time domain instead of the frequency domain.

Why it matters: jitter sets two hard ceilings. On a high-speed serial link, every picosecond of timing uncertainty narrows the horizontal opening of the eye diagram, so the receiver has a smaller window to decide whether a bit is a 1 or a 0 — push the data rate up and jitter is often what caps it before voltage noise does. In a data converter, the moment you sample is set by a clock edge, so a jittery edge samples a fast-moving input at slightly the wrong instant, injecting an error that grows with input frequency. That single effect places a firm upper bound on a converter's achievable SNR, no matter how many bits the architecture promises.

Also calledtiming jitterclock jitteraperture jitter

A joint is the connection between two links that lets them move relative to each other in a controlled way. Without joints a robot would be a single frozen statue; the joints are exactly where the bending, turning, and sliding happen. Think of your knuckles, your knee, or a door hinge: each one ties two stiff parts together while still allowing a specific kind of motion and blocking all the others. Engineers also call this pairing a kinematic pair, because it is two surfaces that touch and constrain one another.

Joints come in two broad families, distinguished by how the two parts touch. A lower pair makes contact over a whole shared surface — like a hinge wrapping around a pin, or a drawer gliding in its rails — and this surface contact gives smooth, well-defined motions such as pure rotation or pure sliding. A higher pair makes contact only along a line or at a single point — like one gear tooth pressing on another, or a ball rolling in a groove — and that thinner contact tends to permit more complicated motion. Most robot joints are deliberately lower pairs, because their clean, single-direction motion is easy to measure, to drive with a motor, and to calculate with.

What truly matters about any joint is how many independent ways it lets one link move against the other — its degrees of freedom. A simple hinge allows just one (it can only rotate one way), while a ball-and-socket like your shoulder allows three. By choosing how many joints to use and what kind each one is, a designer decides the entire range of poses a robot can reach.

Also calledjointkinematic pair运动副

Joint friction is the quiet resistance that fights motion wherever a robot's parts rub or slide against each other — inside bearings, gears, and seals. It is the same drag you feel trying to slide a heavy book across a table: the surfaces grip one another, and some of your effort is wasted as heat instead of going into useful motion. In a robot, this drag steals part of every motor's output and makes joints behave less perfectly than the neat textbook equations predict.

Friction comes in three flavors that engineers treat separately. Static friction is the stubborn grip that must be broken before a still joint will begin to move at all — like the extra shove needed to get that book sliding from a dead stop. Kinetic friction is the steadier drag once the joint is already moving; a common simple model treats it as roughly constant no matter how fast the joint goes. Viscous friction is the speed-dependent drag from lubricants and seals: the faster the joint turns, the harder this kind pushes back, much like how water resists a hand swept quickly through it.

Friction is a mixed blessing. It wastes energy, adds heat, and makes precise control harder — especially the jerky start-stop behavior near zero speed, where a joint can stick and then suddenly break free. Yet it also helps a parked robot hold its pose without burning power, and a little of it can quietly damp out unwanted wobble. Good controllers measure and model joint friction so they can add just enough extra motor effort to cancel it out, letting the arm move as smoothly as the idealized math assumes.

Also calledstatic frictionkinetic frictionviscous frictionstiction黏滞摩擦

Joint space is the robot's description of itself from the inside — a list of numbers, one for each joint, that says exactly how much each joint is currently turned or slid. If an arm has six joints, a single point in joint space is just six numbers (say, six angles); change any one number and the arm visibly moves. Every pose the arm can hold corresponds to one such list, and the whole collection of possible lists is the space.

Think of it as the robot's set of internal dials. The robot's motors and sensors live entirely in this world: a controller tells joint three to turn to 40 degrees, and a sensor reports back that joint five is at 12 degrees. None of these numbers say where the hand is in the room — that takes a separate calculation. They only describe the shape the arm is folded into, dial by dial.

Joint space is one of the two great languages of robot motion. It is the natural one for the machine, because joints are what the motors actually drive. Its counterpart, task space, describes where the hand is and how it is pointed out in the world — the language humans usually think in. Converting between the two, in both directions, is one of the central jobs of kinematics.

Also calledconfiguration space关节坐标空间關節座標空間

Joint torque is the twisting force a robot applies at one of its joints to make that joint turn — the rotational cousin of an ordinary push. Where a plain force shoves something in a straight line, a torque tries to spin it around a pivot. You feel the difference every time you open a door: pushing near the hinge does almost nothing, but pushing at the far edge swings it easily. Torque is that turning effect, and it grows both with how hard you push and how far from the pivot you push. At a robot's joint, the motor supplies exactly this twist.

Torque is what actually drives a robot's motion. To get a joint moving — to overcome the weight of the arm hanging off it, to fight the friction in its gears, to accelerate the links into a swing — the motor must deliver enough torque. Too little and the arm sags or stalls; too much and it whips around and overshoots. A robot's controller spends much of its life deciding, moment by moment, precisely how much torque to send to each joint, and the robot's equation of motion is the very tool that tells it the right amount.

Because torque is so central, robots often measure it as well as command it. By sensing the actual torque at each joint, a robot can feel how hard it is pressing on the world — letting it shake your hand gently, insert a peg without jamming, or stop the instant it bumps a person. This is the heart of force-aware, collaborative robots: torque is both the language they use to move and the sense they use to feel.

Also called关节扭矩joint moment

A Josephson junction is two superconductors with a paper-thin insulating gap between them, so thin that paired electrons can quietly tunnel across without resistance. It is the single most important part of a superconducting quantum chip: it is the one circuit element that stores and releases energy without burning any of it away as heat, and yet behaves in a nonlinear way. That combination is exactly what you need to carve a clean qubit out of an electrical circuit.

Two simple rules describe it. The current through the junction depends on the phase difference phi between the two superconductors, as I = Ic sin(phi), where Ic is the most current it can carry. And whenever a voltage V sits across it, that phase winds up over time as V = (hbar / 2e) dphi/dt. Because the current follows a sine rather than a straight line, the junction acts like an inductor whose value changes with the current it carries. A plain wire loop or capacitor gives you evenly spaced energy levels, like an unhelpful ladder with identical rungs; the junction's nonlinearity squeezes the rungs unevenly so the lowest two are spaced differently from the rest. You can then drive that one transition and ignore the others, and that pair of levels is your qubit.

The catch is that the qubit's frequency depends on Ic, which is set by how thick the oxide barrier is, down to a few atoms. Tiny fabrication differences shift each junction's frequency, and on a chip with many qubits those frequencies start to collide. Getting junctions accurate and repeatable across a whole wafer is one of the hardest open problems in building larger quantum processors today.

Also calledJJ约瑟夫森隧道结約瑟夫森接面

Reading a superconducting qubit means catching a microwave signal so faint it sits near the limit of what physics allows. By the time that signal climbs out of the cold fridge and reaches a normal amplifier, the amplifier's own noise has buried it. A JPA is a tiny amplifier built from Josephson junctions and placed right at the coldest stage, next to the chip, so it can boost the signal first, while it is still clean. That first boost is what makes single-shot readout possible: telling a qubit's 0 from its 1 in one measurement, instead of averaging the same experiment thousands of times.

The trick is in the word parametric. A JPA is basically a microwave resonator whose key 'parameter', its inductance, is set by Josephson junctions, often in a SQUID loop. A strong microwave tone called the pump wiggles that inductance up and down very fast. When a weak signal arrives at half the pump frequency, the pumping feeds energy into it in step, and it comes out larger. Because nothing is forced to dissipate, a JPA can approach the standard quantum limit, the smallest noise any phase-insensitive amplifier is allowed to add, roughly half a photon's worth. Some JPAs run in a 'squeezed' mode that does even better on one quadrature, at the cost of the other.

The honest catch is bandwidth and headroom. Because a JPA is a resonator, it only amplifies a narrow slice of frequency, often just tens of megahertz, so it can read only one or a few qubits at once and must be tuned to them. Pump it too hard and it saturates or goes nonlinear; its pump tone and reflected power also have to be carefully routed and isolated. These limits are exactly why the field is moving toward traveling-wave parametric amplifiers, which trade the resonator for a long nonlinear line and amplify a much wider band, though they are bigger and harder to fabricate cleanly.

Also calledJPA约瑟夫森参数放大器約瑟夫森參數放大器parametric amplifier

JSON is a simple text format for writing down structured data — names paired with values — in a way that both people and programs can read. If you've ever seen { "name": "Ada", "age": 36 }, that's JSON: curly braces holding a list of keys and their values.

It's the lingua franca of APIs. When one program asks another for data over the web, the answer almost always comes back as JSON, because nearly every language can read and write it effortlessly.

The building blocks are tiny: text in "quotes", numbers, true/false, lists in [square brackets], and objects in {curly braces}. That's the whole language — small enough to learn in an afternoon, flexible enough to carry almost anything.

Also calledjsonjavascript object notation.jsonjson payload

Junction frequency targeting is the unglamorous craft of getting each qubit to land on the frequency you designed it for. A superconducting qubit's frequency is set mostly by its Josephson junction, and that frequency depends on how thick the junction's oxide barrier is, down to a few atoms. Build a hundred junctions in one batch and they come out slightly different, so their frequencies are scattered around the target instead of sitting exactly on it. On a small chip that is annoying; on a crowded chip it is the difference between a working processor and a dead one, because two qubits that accidentally share a frequency can no longer be told apart or operated cleanly.

The useful handle is that a junction's room-temperature resistance is a reliable proxy for the frequency it will have once cold. Measure the resistance and you can predict, fairly well, whether a qubit will be too high or too low. So the idea is to nudge that resistance toward the value that maps to the target. Two post-fabrication tricks do this. Aging, or a gentle bake, lets the thin oxide barrier slowly thicken and settle, which raises resistance and shifts frequency in a controlled way. Laser annealing goes one junction at a time: a focused laser pulse warms a single junction just enough to rearrange its barrier and trim its resistance, leaving its neighbors untouched. Done well, this pulls a scattered set of frequencies into a tidy, planned pattern.

It is real and it helps, but it is not magic. You can only ever increase resistance with these methods, not lower it, so the as-fabricated spread still has to be small enough to fit inside the trimming range, and that pushes the hard work back onto making junctions reproducibly in the first place. Trimming adds steps, costs yield, and the trimmed frequency can still drift a little afterward. Today it is one of the more promising levers against frequency crowding, but on a wafer with thousands of qubits, targeting every one of them accurately remains an open, actively worked problem rather than a solved one.

Also calledfrequency targetingjunction trimming结频率调整频率定标接面頻率調整頻率定標

A JWT is a compact, self-contained token that says who you are and is signed so the server can trust it. Think of it like a tamper-proof wristband at a festival: it has your details printed on it, and a seal that proves staff actually issued it. Show the band and you're waved through — nobody has to look you up in a list.

That's the clever part. A traditional login means the server keeps a session in its own memory and checks it on every request. A JWT instead carries the facts inside the token itself, and the server just verifies the signature. No database lookup, which is why JWTs are popular for keeping you logged in across many servers.

A JWT comes in three dot-separated parts — header.payload.signature — and the first two are just Base64, not encryption. So never put secrets in a JWT; anyone holding it can read the payload. The signature stops them from changing it, not from seeing it.

Also calledjson web tokenbearer token
K

The Kalman filter is the workhorse algorithm for tracking something that moves while you can only watch it through noisy sensors. It keeps the robot's belief as a Gaussian — a bell curve with a best-guess center and an honest width — and updates that belief in a tight, endlessly repeating two-step loop. First it predicts where things should be now, using a model of how the system moves; then it corrects that prediction with a fresh sensor reading. Think of it as a disciplined optimist who makes a forecast, peeks at reality, and then quietly splits the difference in exactly the right proportion every single time.

That "right proportion" is the heart of it, and it is decided by trust. At each correction the filter weighs two sources against each other: its own prediction and the new measurement. If the sensor is known to be reliable and the prediction shaky, it leans hard toward the measurement; if the sensor is jittery and the prediction solid, it mostly keeps its forecast. This automatic, evidence-weighted blend is computed by a quantity called the Kalman gain, and it is what lets the filter squeeze a clean, steady estimate out of two sources that are each individually too noisy to trust alone.

What makes the Kalman filter special is that, for systems whose motion and sensing are linear (straight-line, proportional math) and whose noise is Gaussian, it is provably optimal — no other estimator using the same information can do better at minimizing the average squared error. It is also wonderfully cheap: it never stores history, only a running mean and covariance, so it can run thousands of times a second on tiny hardware. That blend of mathematical optimality and practical thrift is why versions of it sit inside spacecraft, phones, GPS units, and nearly every self-driving system on the road.

Also calledKFlinear Kalman filter卡尔曼滤波KF 滤波器

The Kalman gain is a number — really a small set of numbers — that answers one question at every step of a filter: when my prediction and my new measurement disagree, how much should I trust the measurement? Imagine you guessed a friend will arrive at 3:00, then a text says the train is running late. The Kalman gain is the dial that decides how far to slide your guess toward what the text says. Turn it all the way up and you throw out your prediction and believe the measurement completely; turn it all the way down and you ignore the measurement and stick with your prediction.

What sets that dial is the relative uncertainty of the two. If your prediction is shaky but your sensor is sharp and reliable, the gain is high, so the correction leans hard on the measurement. If your sensor is noisy but your prediction is solid, the gain is low, so you barely budge. The filter computes this balance automatically from how much spread (uncertainty) it carries in its prediction versus how much noise it expects from the sensor, and it recomputes the gain every single step as those uncertainties change.

The gain does double duty: it tells the filter how much to nudge its estimate toward the measurement, and it also tells the filter how much that nudge should shrink its uncertainty. A measurement you trust a lot both pulls the estimate strongly and makes the filter much more confident afterward. This is the small piece of arithmetic that lets a robot blend a steady stream of imperfect readings into one estimate that is better than any single source.

Also calledK增益系数增益係數

The kernel is the core of the operating system — the one piece of software that talks directly to the hardware and decides who gets to use it. Every program that wants to read a file, send over the network, or use a slice of memory has to ask the kernel first.

Its biggest job is sharing. There's only one CPU (well, a few cores) and a limited pile of memory, but dozens of programs all want them at once. The kernel hands out tiny turns so fast that everything seems to run at the same time, and keeps each program walled off so a crash in one doesn't take down the rest.

You never run the kernel directly — it sits underneath everything, invisible. Your shell, your browser, your editor all make their requests to it. When people say 'Linux', strictly speaking they mean the kernel; everything else is the software gathered around that quiet, central piece.

Also calledos kernellinux kerneloperating system core
See alsoprocessshell

A kinematic chain is what you get when you string links together with joints — a whole connected run of stiff parts and the movable connections between them. One link, on its own, just sits there; chain several links together with joints and you have a mechanism that can reach, fold, and pose. A robot arm is a kinematic chain: base, then a joint, then a link, then another joint, then another link, and so on out to the hand. The chain is the robot's whole mechanical skeleton, built from the two basic ingredients — rigid links and the joints that let them move.

The order and type of the links and joints set everything the chain can do. Each joint adds a way to move, and each link carries that motion a fixed distance further out, so the chain as a whole decides where the far end can travel and how it can be oriented. Engineers describe an arm just by listing its joints in order, like RRP — revolute, revolute, prismatic — which tells you at a glance how it bends and slides.

Chains come in two shapes. An open chain is a single line of links with a free end, like an arm reaching out into the air — flexible and far-reaching, but a bit floppy. A closed chain loops back on itself so the links form a ring, like a triangle of struts — far stiffer and stronger, but with less freedom to move. Most familiar robot arms are open chains; many high-precision and heavy-lifting machines use closed ones.

Also calledkinematic chain运动链运动学链

A kinematic model is a stripped-down geometric description of a robot's body that captures only its shape and how its parts can move, while ignoring weight, force, and effort. A robot arm, for example, is described as a chain of rigid links connected by joints, and the model records how long each link is, how each link is oriented and offset relative to its neighbour, and what kind of motion each joint allows — a swivel that rotates, or a slider that extends. It is the skeleton of the robot written down as numbers, with no muscles attached.

The reason to build one is that it lets you answer pure geometry questions before worrying about anything else. Given the joint settings, where does the hand end up in space, and which way is it pointing? Or, working backward, what joint settings would put the hand exactly where you want it? Because the model leaves out mass and force entirely, it stays simple and exact: the same joint angles always produce the same hand position, like folding a paper ruler the same way twice and getting the same reach.

A kinematic model is usually written in a tidy, standard form so that any program can read it the same way. One common recipe assigns a small set of numbers to each joint and link, so the whole arm becomes a short table. That shared format is what lets one robot's geometry be plugged into planning software, simulators, and controllers without rewriting the math each time.

Also calledkinematic description运动链模型運動鏈模型

A robot is kinematically redundant when it has more joints to move than the job strictly requires — extra wiggle room left over after the task is satisfied. The clearest example is your own arm. To touch a fixed spot on a table, your hand only needs to land at that point, yet your shoulder, elbow, and wrist together give you far more freedom than that one task demands. The proof: keep your fingertip pinned on the table and you can still swing your elbow up and down. That leftover motion, which changes the arm's shape without moving the goal, is exactly what redundancy buys you.

We measure it as a simple subtraction: the number of joint freedoms minus the number of freedoms the task actually needs. A common arm has six joints, and placing a tool at a point with a chosen orientation also takes six freedoms, so it is just barely sufficient with nothing to spare. Add a seventh joint and you have one degree of redundancy. That spare degree shows up as self-motion: the robot can rearrange its own elbow, shoulder, or middle links while the working tip stays perfectly still on target — like reshuffling the slack in a loose rope without moving either end.

This spare freedom is enormously useful, which is why advanced arms and humanoids are deliberately built redundant. The extra motion lets a robot keep working while dodging an obstacle in its path, steering clear of awkward locked-up poses, staying away from its joint limits, or simply holding a more comfortable and energy-saving stance. The cost is that there is no longer a single right answer for how to bend the joints — infinitely many joint settings reach the same goal — so the control software must add a tie-breaking rule (be smooth, be efficient, avoid that wall) to choose gracefully among them.

Also calledredundant manipulatorextra degrees of freedom冗余度运动学冗余

A kinematic singularity is a special pose where a robot arm suddenly loses the ability to move its hand freely in every direction — as if, in that one position, a door has quietly closed on one of the directions the hand could normally travel. The arm has not broken and nothing is jammed; it is simply folded into a shape where, no matter how you turn the joints, the hand just cannot budge along a certain line. The classic everyday picture is your own arm: stretch it out perfectly straight to reach a shelf, and you cannot push your hand any farther forward by straightening more — you have run out of reach in that direction. That fully-stretched pose is a singularity.

Near such a pose, things get even more troublesome than a plain dead-end. To make the hand inch in the "blocked" direction, the joints would have to whirl impossibly fast — the math demands enormous joint speeds for a tiny bit of hand motion. A controller that naively asks the arm to keep tracing a straight line through a singularity can suddenly command violent, lurching joint speeds. In the language of the Jacobian (the table linking joint speeds to hand motion), a singularity is exactly where that table "loses rank": it can no longer cover all the directions of hand motion, and trying to reverse it blows up.

Because of this, singularities are something robot designers and path planners actively map out and steer around. Routes are chosen to keep the arm comfortably away from these poses; and when one must be approached, the motion is slowed or reshaped so the joints never have to make their impossible sprint.

Also calledsingular configurationsingularity奇异构型奇異構型

A known-good die is a bare chip that has already been tested and proven to work before anyone solders it into a package or bonds it next to other chips. The name says it plainly: you have evidence this particular die is good, not just a hope. Normally a chip gets its real workout only after packaging, but the moment you start gluing several dies together into one product, that order turns dangerous — so you push the testing earlier, onto the loose die itself.

Here is why such a small idea rescues big designs. Defects fall on a wafer roughly at random, so the bigger a die is, the likelier it is to swallow at least one killer flaw — yield drops fast as area grows. A huge monolithic chip is one all-or-nothing lottery ticket: a single bad spot anywhere throws away the whole expensive die. If instead you disaggregate that design into several small chiplets, you can test each tiny die on its own, keep only the known-good ones, and assemble a package entirely from winners. The bad dies get tossed while they are still cheap — before you have spent money bonding them to good neighbours.

That is the quiet engine under the chiplet movement. Splitting a design only pays off if you can trust the pieces, and KGD testing is what makes the pieces trustworthy — it turns 'mix and match small dies' from a yield gamble into a yield strategy. The catch is that testing a bare, unpackaged die is genuinely hard: you must make reliable temporary contact with tiny pads and run meaningful tests without the protection and easy probing a finished package would give you, which is one reason fine-pitch, TSV-stacked memory like HBM leans so heavily on careful die-level test.

Also calledKGDknown good die
L

Labeled-line coding is the brain's trick of figuring out what kind of thing you are sensing simply by paying attention to which nerve is doing the shouting. Picture an old-fashioned switchboard with a separate wire running to each room of a house. The wire from the kitchen always means kitchen, the wire from the bedroom always means bedroom — the operator can tell which room is calling without anyone saying a word, just from which line lit up. In the same way, each sensory nerve is permanently dedicated, or labeled, to one type of message, so the brain reads the identity of a stimulus from the address of the line that fired, not from the shape of the signal traveling down it.

This matters because the actual electrical pulses neurons send are nearly identical no matter what they are reporting — a pain signal and a sweet-taste signal look almost the same as little blips of voltage. What makes them feel utterly different is where they are wired to go. A nerve carrying sweetness connects to brain regions for sweetness and nowhere else; a nerve carrying pain connects only to pain circuits. So sweet always tastes sweet and a pinprick always hurts, because each line keeps its own private label from the sense organ all the way up to the brain. This is why artificially stimulating a single taste line can make you experience a flavor that is not in your mouth at all: the brain trusts the label, not the world.

Labeled lines are one of two broad strategies the nervous system uses to encode information. The other relies on the timing or rate of firing — patterns spread across many neurons — rather than on which specific neuron is active. Real senses usually blend both: separate labeled lines may tell apart the five basic tastes, while finer details, like how strong or how fast something is, ride on the firing patterns within those lines.

Also calledlabeled line theorylabeled lines标记线理论標記線理論

The Lagrangian formulation is a way of working out a robot's equations of motion by bookkeeping its energy, rather than by drawing every force and twist acting on every part. Instead of asking "what is pushing on this link, and that one, and the joint between them?", it asks a far simpler question: how much energy of motion does the whole robot have, and how much stored energy of position? You write down those two quantities, turn a mathematical crank, and the equations of motion fall out — torques, couplings, and all.

The heart of it is one quantity called the Lagrangian: the robot's kinetic energy (the energy it has by moving) minus its potential energy (the energy stored by being lifted up against gravity). The magic is that energy is a single number, not a tangle of directional forces, so you never have to track which way each internal push points or worry about the constraint forces the joints quietly exert on each other. Those drop out automatically. For a multi-joint arm where forces criss-cross in confusing ways, this is a huge relief — you describe the robot once, in terms of its joint angles, and the method handles the rest.

Because it is so systematic and tidy, the Lagrangian approach is a favorite for deriving the dynamics of complex robots on paper or in symbolic-math software, and it makes the structure of the result easy to see and reason about. It gives the very same equation of motion you would get the harder way, force by force — it is just a cleaner road to the same destination. Its trade-off is that, in its basic form, it is less suited to the fast, repetitive number-crunching a robot does live; for that, recursive force-balance methods are often quicker.

Also calledLagrangian dynamics拉格朗日力学能量法

A landmark or feature map is a map that records only a scattering of distinctive points a robot can reliably spot and re-find — the corner of a wall, a table leg, a pole, a bright sign — rather than drawing every surface in the room. Each of these standout points is called a landmark or feature, and the map is essentially a list of them with their positions, like a treasure map marked only with a few crosses instead of a full painting of the island. It is a deliberately sparse, skeletal sketch of the world.

A robot uses such a map by matching the landmarks it currently sees against the ones already stored. If it can spot a few known landmarks and measure how far and in which direction each one lies, it can work backward to pin down exactly where it must be standing for those measurements to make sense — the same way you can fix your spot on a hiking map from the directions to two distant peaks. The map stays small because it remembers only the memorable bits and throws away the blank stretches of wall and floor in between.

This is the opposite design choice from a dense occupancy map, which paints in every patch of free and blocked space. A feature map is light on memory and quick to search, and it shines when the world is full of clear, repeatable markers. Its weakness shows in bare or repetitive places with few distinctive points to anchor to, and in the hard job of being sure that the landmark you see now is truly the same one you logged before, not a look-alike — a puzzle called the data-association problem.

Also calledsparse mapfeature-based map稀疏地图稀疏地圖

A language family is a group of languages that all descend from one common ancestor — they are, quite literally, relatives. Just as cousins share a great-grandparent, English, Hindi, Spanish, Russian, and Persian all trace back to a single language spoken thousands of years ago. We call that family Indo-European, and it is the largest by number of speakers — nearly half the world speaks one of its languages as a mother tongue. (Counted a different way, by sheer number of distinct languages, the Niger-Congo family of Africa is the biggest, with well over a thousand.)

How do we know languages are related if no one wrote the ancestor down? By comparing them carefully. When the words for basic things — "mother," "two," "night" — line up in regular, repeating patterns across many languages, that match is too systematic to be coincidence or borrowing. Those patterns are the family resemblance, and linguists use them to reconstruct the lost parent tongue.

One thing to clear up: languages can sound alike or share words without being family at all. English borrowed thousands of words from French, yet a true family bond shows up in the deep, ordinary vocabulary and the regular sound correspondences — not in fancy loanwords. And living near each other doesn't make languages relatives: Finnish and Swedish are neighbors but belong to entirely different families.

Also calledIndo-European (example)

A large language model is an enormous web of numbers trained on a simple game: read a stretch of text and guess the next word. Play that game over and over across a sizable slice of everything humans have written — books, code, conversations, the open web — and the model slowly learns the patterns of language. It's a bit like the autocomplete on your phone, but grown to staggering size, so that instead of finishing a text it can write an essay, translate a poem, or explain a recipe.

Under the hood sits an architecture called a transformer, whose key trick is attention: when reading, the model weighs which earlier words matter most for guessing what comes next, letting it keep track of meaning across long passages. With billions of adjustable knobs and oceans of training text, it builds a rich internal map of how words relate.

Here's the surprise that makes these models matter: nobody programmed grammar, facts, or reasoning into them by hand. Those abilities simply emerge once the model and its training are large enough — a jump in scale brings a jump in skill. A common misconception is that the model looks things up or truly understands; really it predicts plausible words. That's why it can sound confident yet be wrong — a slip people call hallucination.

Also calledLLM大语言模型大型語言模型foundation model基础模型基礎模型

Lateral inhibition is a trick your senses use to make edges and differences stand out: when one sensing cell fires strongly, it quietly tells its neighbors to pipe down. Picture a row of people each holding a flashlight. Whoever shines brightest reaches over and dims the lights on either side of them. The result is that a bright spot looks even brighter next to its now-darker neighbors, and a boundary between light and dark gets crisper. The signals that reach your brain are not a flat copy of the world — they have been sharpened so that contrast, the change from one thing to the next, is exaggerated.

It works because neighboring neurons are wired to push against each other through inhibitory connections, often by way of small in-between cells called interneurons that release a calming chemical signal. A strongly active cell sends this hush sideways to the cells around it, so their output is dialed down in proportion to how excited their neighbor is. Where everything is uniform — an even patch of gray, a steady tone — every cell quiets every other cell about equally, and the response stays low. But right at a border, a cell sitting in the bright region gets less hushing from its dim-side neighbors than from its bright-side neighbors, so its signal pops. This is why our eyes notice outlines so easily, why we can pick a single pitch out of a noisy chord, and why a fingertip can feel the exact edge of a coin — the nervous system spends its attention on where things change, not on the boring sameness in between.

Also calledsurround inhibitionlateral antagonism侧向抑制側向抑制

A layer 2 is a separate system built on top of a main blockchain (the layer 1, such as Bitcoin or Ethereum) that handles transactions away from the crowded base chain, then settles the results back to it. The goal is to keep the strong security guarantees of the main chain while doing the bulk of the work somewhere cheaper and faster. Layer 2 has become the leading answer to the scalability trilemma: rather than make the base layer do more, you let it do less but verify carefully.

The pattern works because the base chain does not need to watch every individual transaction; it only needs enough information to guarantee the final outcome is honest. A layer 2 batches up thousands of transactions off-chain, then posts a compact summary, plus a proof or a challenge window, to layer 1. The main chain acts as a supreme court and final ledger: it does not referee every dispute in real time, but it holds the authoritative record and can be appealed to if anyone cheats.

Imagine a busy cafe where, instead of running your card for every coffee, the staff keep a tab and charge you once at the end of the day. The bank (the slow, secure base chain) processes a single settlement instead of a hundred tiny ones, while you still get the bank's full protection. Rollups are the dominant kind of layer 2 today; other designs include state channels and sidechains, each making its own trade-off about how it borrows the base chain's security.

Also calledL2layer-2 scaling二层二層

Once the layout is drawn, you have two pictures of the same circuit that have to agree. One is the schematic, or netlist — the intended wiring diagram that says which transistors exist and exactly which terminals connect to which nets. The other is the physical layout: a stack of colored polygons on different layers that, if you built it, would become the real silicon. LVS is the as-built-versus-blueprint check that asks one blunt question: does the thing you actually drew connect up the same as the thing you meant to draw?

A tool can't just eyeball polygons, so LVS first does device and connectivity extraction. It reads the layout layer by layer — where a poly stripe crosses a diffusion region it recognizes a transistor; where metal, contacts and vias touch, it stitches the pieces into one electrical net, threading up and down through the metal stack the same way current would. That gives a second netlist pulled straight from the geometry. LVS then compares the two netlists as graphs, matching devices and nets on both sides, and flags every place they disagree: a short (two nets that should be separate but got merged by a stray overlap), an open (one net that the layout accidentally split into two unconnected pieces), a swapped or mis-tapped connection, or a missing, extra, or wrong-type device. Many flows also do a parameter check, comparing each transistor's drawn width and length against what the schematic asked for.

LVS lives in the physical-verification stage, run alongside DRC after routing and before tapeout — DRC asks whether the geometry is manufacturable, while LVS asks whether it is the right circuit. A layout can be perfectly DRC-clean and still be wrong, because obeying spacing rules says nothing about whether net A actually reached the gate it was supposed to reach. Only when LVS reports a clean match do you trust that the silicon you ship will behave like the netlist you simulated and signed off on.

Also calledLVSnetlist comparison网表比对網表比對

A leak channel is a tiny pore in a neuron's outer skin (its membrane) that stays open all the time, quietly letting certain charged atoms, called ions, slip through. Most other channels in the membrane behave like doors with a lock: they snap open only when the cell flips a switch, such as a change in voltage or the arrival of a chemical messenger. A leak channel has no lock and no switch. It simply sits there, propped open, day and night. Because of that constant openness, it sets the membrane's resting leakiness, the steady background trickle of ions that never stops.

The vast majority of leak channels are picky in one important way: they let potassium ions through far more easily than any other kind. Potassium is more crowded inside the cell than outside, so given an always-open door, it tends to dribble outward. Each potassium ion carries a tiny positive charge, so this slow outward leak pulls positive charge out of the cell and leaves the inside slightly negative compared with the outside. That gentle, steady negativity is the resting membrane potential, the cell's electrical idling point. It is the baseline the neuron springs away from when it finally fires an action potential, the brief electrical pulse it uses to signal.

So although a leak channel does nothing dramatic on its own, it is the quiet anchor of a neuron's electrical life. By holding the resting voltage steady, it keeps the cell poised and ready, neither asleep nor firing, so that when a real signal arrives the neuron can respond crisply and then settle right back to where it started.

Also calledleakage channelbackground channelpotassium leak channel渗漏通道背景通道滲漏通道鉀漏通道

Learning from demonstration is teaching a robot a new skill by showing it, rather than writing out the skill as code. In the old way, an engineer painstakingly programs every motion — go to these exact coordinates, rotate this many degrees, close the gripper now — which is slow, brittle, and out of reach for anyone who is not a programmer. Learning from demonstration flips that around: a person simply performs the task a few times, and the robot watches and works out a policy that can do it too. It is the difference between writing an instruction manual and just saying 'here, watch me, now you try.'

There are several friendly ways to give a demonstration. You can grab the robot's arm and physically guide it through the motion, a hands-on style called kinesthetic teaching. You can steer it with a joystick or controller — teleoperation — while it records what you do. Or you can simply perform the task yourself and let the robot watch through its camera. Either way the robot collects example after example and turns them into a skill, so a nurse or a factory worker can teach a robot a new job in an afternoon without touching a line of code. That ease is exactly why it has become a backbone of modern robot learning.

Also calledLfDprogramming by demonstration示教学习

Legged locomotion is getting a robot around by using jointed legs that lift, swing, and plant feet — the way you, a dog, or a spider moves — instead of rolling on wheels or tracks. Each leg is a little arm with several joints, so the robot can pick up a foot, reach it forward through the air, and set it down on a spot it chooses. Because the foot only touches the ground at separate, chosen points, the machine can step over a gap, onto a rock, or up a stair without needing a smooth, continuous surface beneath it.

That ability to choose footholds is the whole point: a wheel needs an unbroken path, but a leg only needs scattered safe spots, so legged robots shine on rubble, forest floors, staircases, and broken terrain where wheels get stuck. The price for this freedom is difficulty. The robot must constantly work out where to place each foot, how to shift its weight, and how to stay balanced while one or more legs are off the ground, all while coordinating many motors at once. This makes legged machines far harder to build and control than wheeled ones, which is why they took much longer to become practical.

Engineers usually count the legs to describe the design: two legs (bipedal, like a human), four (quadrupedal, like a dog), six (hexapods, like an insect), and more. Fewer legs means a lighter, more agile machine that is harder to balance; more legs means easier balance but more weight and more motors to coordinate. The pattern in which the legs take turns moving is called the gait.

Also calledwalking robots腿式行走足式移动

Leptin and ghrelin are two hormones that act like a tug-of-war over your appetite, each pulling in the opposite direction. Ghrelin is the hunger signal: it is released mainly by an empty stomach, travels through the blood to the brain, and says "time to eat." Leptin is the fullness signal: it is made by your fat cells, and the more fat you store, the more leptin they release, telling the brain "we have enough energy stored, you can stop eating." Together they help your body keep its fuel tank from running too low or overflowing.

Both hormones report to the same control center deep in the brain — a small region called the hypothalamus that manages hunger, body temperature, and other automatic needs. There, ghrelin switches on the nerve cells that make you feel hungry, while leptin quiets them and switches on the cells that make you feel satisfied. This is why a hot meal can melt away hunger within minutes, and why going a long time without food makes the urge to eat grow stronger. When this signaling drifts out of balance — for example, when the brain stops responding well to leptin, a state called leptin resistance — the body can keep feeling hungry even with plenty of energy in reserve, which is one piece of the puzzle in obesity and weight regulation.

Also calledsatiety and hunger hormones饱腹激素与饥饿激素飽腹激素與飢餓激素

A lesion study is a way of figuring out what a part of the brain does by watching what stops working when that part is damaged. The logic is simple and a little detective-like: if a small region is hurt and a person suddenly cannot do one specific thing — say, recognize faces, or speak in smooth sentences — while everything else stays fine, then that region was probably doing an important job for the lost ability. In other words, you learn the function of a piece by seeing the hole it leaves behind, much like guessing what a missing gear did by noticing which part of a machine grinds to a halt.

The damage can come from nature or from the lab. In people, researchers study patients who suffered strokes, tumors, head injuries, or surgery that happened to harm one area, then carefully test which abilities are spared and which are gone — this is called the lesion-deficit method. In animals, a researcher may deliberately and precisely remove or disable a small region and compare behavior before and after. Either way, the prized cases are clean ones: a small, well-mapped area of damage paired with a single, clear-cut loss, because that tightest pairing gives the strongest clue about what that spot contributes.

Lesion studies are powerful because they show that a region is genuinely necessary for a behavior, not just active during it — something brain scans alone cannot prove. But they have real limits. Natural injuries are messy and rarely confined to one neat area; the brain often rewires and recovers, hiding a region's true role; and losing a function does not mean the lost spot worked alone, since it may have been one link in a longer chain. For these reasons, lesion findings are strongest when combined with other tools, such as brain imaging and direct stimulation.

Also calledlesion methodlesion-deficit analysis损伤法損傷法损伤—缺陷分析損傷—缺陷分析
See alsoaphasia

A lethal autonomous weapon is a weapon that can search for, choose, and strike a human target on its own, without a person deciding at the moment it fires. The dividing line is who makes the final kill decision. A guided missile a soldier launches at a target they picked is not autonomous in this sense, because a human chose. A drone that patrols an area, decides by itself which figure below is an enemy, and fires — with no person in that loop — is. The fear behind the debate is exactly this last step: a machine ending a life with no human saying yes.

The heart of the argument is a phrase: meaningful human control. Many governments, scientists, and rights groups insist a person must stay genuinely in charge of any decision to use deadly force — not merely watching a screen, but able to understand the situation and actually choose. Defenders of the technology answer that machines could in theory be faster and even more precise than panicking humans, and might spare friendly troops. Critics reply that machines cannot weigh proportionality or mercy, cannot be held morally responsible, and could make wars start more easily and spread faster than anyone can rein in.

Because of this, lethal autonomous weapons are mainly a question of governance — of rules agreed between nations. There is no global treaty banning them yet, and discussions at the United Nations have moved slowly while the underlying robotics and AI keep advancing. The deeper worry is an accountability gap: if an autonomous weapon kills the wrong people, it is genuinely unclear who answers for it — the commander, the programmer, the manufacturer, or no one — and a wrong with no one to answer for it is a dangerous thing to build.

Also calledLAWSautonomous weapons致命性自主武器系统killer robots

Levels of analysis is the idea that the brain can be studied at many different sizes, or zoom settings, and that no single zoom tells the whole story. Imagine looking at a city: you could study one brick, then a single house, then a whole neighborhood, then the traffic flowing through it, and finally the daily life of the people living there. The brain is the same. You can zoom all the way in to molecules, then to single cells, then to small circuits of cells wired together, then to large systems that span the whole brain, and finally out to behavior, the things a person or animal actually does. Each level is real, and each answers different questions.

Roughly from small to large, the common levels are molecules (the chemicals and proteins inside and around cells), cells (individual neurons and their support cells), circuits (small groups of neurons connected so they pass signals in useful patterns), systems (large networks of circuits that handle a whole job, like vision or memory), and behavior (movement, perception, mood, and thought). What looks like a clean answer at one level can be a deep mystery at another: knowing exactly how a single ion crosses a cell membrane does not, by itself, tell you why someone feels afraid or recognizes a friend's face.

Neuroscientists deliberately move between these levels and try to connect them, because real understanding usually means linking the small to the large. A useful explanation often asks three things at once: what is the brain trying to do (the behavior or goal), what steps or rules does it follow, and what physical parts carry those steps out. Keeping the levels straight prevents a common mistake, treating a finding at one scale as if it explained everything, and it reminds us that the same behavior can be described truthfully in molecules, in cells, in circuits, and in everyday human terms all at once.

Also calledlevels of organizationscales of the brain组织层级組織層級

Levels of autonomy are a way of putting a number on how much a robot does for itself versus how much a person does for it. They turn the fuzzy question are you sure it is autonomous? into a clear ladder: at the bottom a human controls every move directly, at the top the robot handles the entire job alone, and in the middle they share the work in various ways. The point is to talk precisely, so that robot A and robot B can be compared instead of both being vaguely called automatic.

A typical ladder runs roughly like this. At the lowest rung the person drives everything in real time, like flying a drone by hand. One step up, the robot helps — it holds a steady hover or keeps a lane while the human still decides where to go. Higher still is shared or supervised control: the robot does most of the work and the person watches, ready to take over or approve key choices. At the top the robot plans and acts entirely on its own, asking nothing of anyone for the whole task.

These scales matter most where safety and law are involved. The best-known example is self-driving cars, often described in six levels from no automation up to full self-driving, with several in-between stages where the human must stay ready to grab the wheel. Naming the level honestly is crucial, because a robot sold as more autonomous than it really is can lull a person into trusting it at exactly the wrong moment.

Also calledautonomy levels自主性等级自主性等級

LiDAR is a sensor that measures distance by firing out brief pulses of laser light and timing how long each pulse takes to bounce off something and come back. Because light travels at a known, fixed speed, that tiny travel time tells the sensor exactly how far away the object is — the same idea as shouting in a canyon and counting the seconds until the echo, but with light instead of sound and millions of measurements per second.

By sweeping the laser beam rapidly across a scene — spinning it around or steering it in a grid — LiDAR collects a dense spray of distance readings in every direction. Stitched together, these become a point cloud: a three-dimensional cloud of dots that traces out the real shape of walls, furniture, trees, and people, like a sculpture made of glowing pinpricks. Unlike a flat photo, a point cloud carries true depth.

Robots and self-driving cars lean on LiDAR to know where solid things are and how far off, in order to map a space and avoid hitting anything. Its great strength is precise, direct distance that works even in darkness, because it brings its own light; its limits are cost, and that heavy rain, fog, or dust can scatter the laser and blur the readings.

Also calledlight detection and ranginglaser scanner激光雷达雷射雷達

LiDAR SLAM is a way for a robot to build a map of a place and figure out where it sits inside that map, using a laser sensor called a LiDAR. The LiDAR fires thousands of laser pulses every second in many directions and times how long each pulse takes to bounce back, which tells it the distance to whatever it hit. Out of all those distances comes a sharp snapshot of the surrounding walls, furniture, and obstacles — a kind of laser sketch of the room. SLAM stands for simultaneous localization and mapping, the trick of drawing the map and tracking your own position at the same time, even though doing one well seems to require already knowing the other.

The robot works frame by frame. Each instant it takes a fresh laser sketch, then slides and rotates it until it lines up with the sketches it took just before. How far it had to slide and turn to make them match is exactly how far the robot moved — so it recovers its motion from the scans alone, without needing a finished map up front. As it travels, it stitches these aligned sketches together into one growing map, and its tracked path is the chain of all those small movements added up.

LiDAR is prized here because it measures distance directly and precisely, and it works in the dark or in plain rooms where a camera would struggle to find features. The catch is that long featureless corridors, mirrors, and glass can fool it, and small errors in each step slowly pile up into drift — the map gently bends away from reality. To fight this, LiDAR SLAM systems watch for places they have visited before and snap the map back into shape when they recognize one, a correction called loop closure.

Also calledlaser SLAM激光 SLAM雷射 SLAM

Lifespan brain plasticity is the simple idea that the brain's power to rewire itself does not stay the same — it is strongest when we are very young and grows more limited, though never gone, as we age. Plasticity means the brain's ability to change its own wiring with experience: strengthening connections you use, pruning ones you don't, and even reshaping which regions handle which jobs. Picture wet cement that is poured fresh in childhood and slowly hardens over the decades. Early on you can press almost any shape into it; later it sets, so changes still happen but take more effort and time.

In the first years of life the brain runs through special windows called critical periods, when whole systems like vision, hearing, and language wire themselves at breathtaking speed — which is why a baby soaks up a mother tongue almost effortlessly while an adult must labor over a new one. As these windows close, the brain trades flexibility for stability: the circuits you have built become reliable and efficient, but harder to overhaul. This is not a sudden switch but a gradual tilt, and it is partly held in place by molecular brakes, such as nets of proteins that wrap around mature neurons and lock their connections in place.

Crucially, an older brain is not a frozen one. Adults keep forming new memories, mastering new skills, and recovering function after injury, because meaningful plasticity persists for life — it simply works more slowly and needs more repetition and effort to take hold. Sleep, exercise, learning, and rich experience can all keep it humming, while chronic stress and disease can blunt it. Understanding how plasticity shifts with age helps explain everything from why children recover from some brain injuries better than adults, to why lifelong learning is one of the best ways to keep an aging brain sharp.

Also calleddevelopmental plasticity across ageage-related changes in plasticity可塑性的年龄变化可塑性的年齡變化

A ligand-gated ion channel is a tiny gateway built into the outer skin of a nerve cell that pops open only when a particular chemical messenger latches onto it. The messenger is the ligand — usually a neurotransmitter, the chemical one neuron squirts out to talk to the next. Think of the channel as a door with a lock shaped to fit exactly one key. When that key drifts up and clicks into place, the door swings open; when the key floats away, the door shuts again. Through the open door rush ions — atoms carrying a tiny electrical charge, such as sodium, potassium, calcium, or chloride.

This is how a chemical signal gets turned back into an electrical one in a fraction of a millisecond. When neuron A fires, it releases neurotransmitter into the narrow gap (the synapse) it shares with neuron B. The neurotransmitter binds the channels on neuron B, they flick open, charged ions pour across the membrane, and neuron B's voltage shifts — nudging it closer to firing its own signal, or further away. Because the channel does two jobs at once, recognizing the messenger and letting ions flow, it is both a receptor and a pore. That speed and directness is why ligand-gated channels carry the brain's fastest point-to-point conversations, and why many drugs and poisons work by jamming these locks open or shut.

Also calledionotropic receptorchemically gated channel离子型受体化学门控通道離子型受體化學門控通道

A light-year sounds like a stretch of time, but it's really a measure of distance — the distance a beam of light travels in one whole year. Light is the fastest thing there is, racing about 300,000 kilometres every second, so in a year it covers a staggering 9.46 trillion kilometres. Think of it as a giant cosmic ruler: instead of measuring the gulfs between stars in kilometres (which would need dizzying strings of zeros), astronomers just count how long light takes to cross them.

Why bother? Because space is almost unimaginably empty. The nearest star beyond our Sun, Proxima Centauri, sits about 4.2 light-years away — so far that even at light-speed the trip takes over four years. Written in kilometres that distance is a 40 followed by twelve zeros; written in light-years it's a tidy single number you can actually picture.

Here's the beautiful twist: because light takes time to reach us, looking far away means looking into the past. The Sun you see is the Sun as it was eight minutes ago; a star 100 light-years off shows you light that left it a century back. Point a telescope at a galaxy millions of light-years away and you are, quite literally, seeing it as it was before humans existed. The deeper we peer into space, the further back in time we look.

Also calledly光年光年距离

The limbic system is a loosely defined network of brain structures, sitting deep in the middle of the brain, that work together to handle emotion, motivation, and memory. Think of it as the brain's emotional control room: it tags your experiences with feelings, decides what you want or fear, and helps stitch moments into lasting memories. When your heart races at a scary sound, when a song suddenly brings back a childhood afternoon, or when hunger pushes you toward the kitchen, the limbic system is doing much of that work.

It is not a single organ but a team of cooperating parts. The amygdala flags danger and triggers fear; the hippocampus, curled like a seahorse, builds new memories; the hypothalamus runs basic drives like hunger, thirst, and body temperature; and the cingulate cortex helps blend emotion with attention and decision-making. These pieces are wired in loops that link them to each other and to the rest of the brain, so a feeling can shape a thought, and a thought can stir a feeling.

The phrase "limbic system" is more of a useful label than a precise boundary, and scientists still debate exactly which structures belong inside it. What matters is the idea it captures: that emotion, drive, and memory are deeply tangled together, handled by ancient brain regions we share with many other animals. Because these circuits are so central to how we feel and what we remember, they are closely studied in conditions such as anxiety, depression, addiction, and memory loss.

Also calledemotional brainlimbic lobe情绪脑情緒腦

Momentum is the amount of motion a body is carrying, bundled into a number that tells you how hard it will be to stop. It comes in two kinds. Linear momentum is the oomph of moving in a straight line — it depends on how heavy something is and how fast it travels, so a heavy mobile robot rolling slowly can be just as hard to halt as a light one zipping along. Angular momentum is the same idea for spinning — it depends on how the mass is spread out and how fast it whirls, which is why a fast-spinning robot wheel or a flywheel keeps turning and resists being twisted to a stop.

The reason engineers care so much is a deep rule of nature: momentum is conserved. Left to itself, with nothing pushing or twisting it from outside, a system keeps the same total momentum — it can only be passed around inside, never created or destroyed. This is exactly why an ice skater pulling in their arms suddenly spins faster: their angular momentum is fixed, so drawing the mass inward forces the spin to speed up. A robot can play the same trick, swinging a limb or spinning an internal wheel to steer its own body without touching anything.

For robots this shows up everywhere balance and impact matter. A walking or jumping robot manages its angular momentum to avoid toppling, much as you swing your arms to stay upright on a curb. A robot catching or being bumped by a heavy object must absorb that incoming momentum without falling or breaking. And spacecraft and drones lean on conservation directly: with no ground to push against, a satellite reorients itself purely by spinning internal reaction wheels, trading spin with its own body so its total angular momentum stays unchanged.

Also calledmomentumspin momentum动量角动量守恒角動量

The linear-quadratic regulator, almost always shortened to LQR, is a recipe for working out the single best way to nudge a system back to where you want it, given that you care about two competing things: keeping the system close to its target, and not spending too much effort doing it. Picture balancing a broomstick on your palm. You want the stick upright (small error), but you also do not want to whip your hand around wildly (small effort). LQR finds the exact balance between those two wishes — the smoothest correction that does not over-react.

It earns its name from two words. 'Linear' means it assumes the system behaves in a simple, proportional way near its target — push twice as hard and you get twice the response — which is described by a state-space model, a compact set of equations listing the system's important numbers and how they change. 'Quadratic' means the cost you want to keep small is written as squared terms: the error squared plus the effort squared, each scaled by weights you choose. Crank up the weight on error and LQR becomes aggressive; crank up the weight on effort and it becomes gentle and lazy.

What makes LQR beautiful is that, for a linear system with a quadratic cost, you do not have to search or guess. The math hands you a fixed table of numbers, called the gain, that maps the current error straight to the right correction. The robot just multiplies its current state by this gain, every cycle, and the result is provably the best trade-off. That is why LQR is a favorite first tool for balancing legged robots, steadying drones, and aiming camera platforms.

Also calledLQRLQR 控制器LQR 控制器

Linguistic relativity is the idea that the language you speak quietly shapes how you think and notice the world. The words and grammar your tongue hands you act a little like a pair of tinted glasses: they don't decide what's out there, but they nudge what you pay attention to. A language that has separate everyday words for light blue and dark blue, for instance, can make those two shades pop apart a hair faster for its speakers than for someone who files them both under one word, "blue."

It matters because it touches a deep question: are all human minds working in the same basic way, just translated into different sounds — or do our languages carve up reality differently? Researchers test it in clever ways. Speakers of languages that use compass directions ("the cup is to your north") instead of "left" and "right" turn out to keep an astonishingly sharp sense of where north is, even in unfamiliar buildings.

Here's the trap to avoid. This is usually called the Sapir–Whorf hypothesis, and it comes in two strengths. The strong form — that language is a prison that flat-out determines thought, so you literally can't think what your language lacks a word for — has been largely abandoned; people invent new words and learn new distinctions all the time. The weak form — that language gently tilts habits of attention and memory — has real experimental support. When people say "Whorf," they almost always mean this gentler claim.

Also calledSapir–Whorf hypothesisWhorfianismlinguistic determinism (strong form)萨丕尔—沃尔夫假说薩丕爾—沃爾夫假說沃尔夫假说

A link is one solid, unbending piece of a robot's body — the stiff bone between two joints. Hold up your own arm: your upper arm is one link, your forearm is another, and your hand is a third. In a robot, a link is usually a bar, plate, or shaped piece of metal or plastic that keeps its exact shape no matter how hard the robot pushes or carries. We call it a rigid body because we treat it as something that does not bend, stretch, or squash; every point on it stays the same distance from every other point.

Links are the structural building blocks of a robot arm or leg. They do not move on their own; they simply hold things at fixed distances and angles so that the joints connecting them can do the moving. Because a link's length and shape are fixed and known, engineers can do clean geometry: if you know which way each joint is turned and how long each link is, you can work out exactly where the robot's hand ends up in space. That tidy, predictable geometry is the whole reason we pretend links are perfectly rigid, even though real metal flexes a tiny bit under load.

Also calledlinkrigid body segment杆件刚性连杆

A linter is a tool that reads your code and quietly flags likely mistakes and messy style — before you ever run the program. It's the friendly proofreader looking over your shoulder, underlining the bug you were about to ship.

It catches things like an unused variable, a forgotten semicolon, a typo'd name, or inconsistent indentation. Some you must fix; many are just nudges toward tidier, more consistent code your teammates will thank you for.

The name comes from 'lint' — the fuzz a clothes dryer traps. A linter picks the little fluff out of your code. Most editors run one as you type, so problems glow red the moment you make them.

Also calledeslintpylintruffstatic analysislint
See alsobundler

A liquidity pool is a shared pot of two (or more) tokens, locked inside a smart contract, that traders swap against. "Liquidity" just means having enough on hand for people to trade smoothly; a pool gathers that supply in one place. Instead of one big professional firm standing ready to buy and sell, a crowd of ordinary contributors pool their tokens together, and the contract uses that combined stock to fill everyone's trades automatically.

The people who supply the tokens are called liquidity providers, and they are paid for it. Every time someone swaps through the pool, a small fee is skimmed off and shared among the providers in proportion to how much of the pool they own — like part-owners of a tollbooth collecting a sliver from each car that passes. When you add funds, the contract gives you a token that records your share, and you redeem it later to withdraw your portion of the pool plus the fees it earned.

Liquidity pools matter because they are the raw fuel that makes decentralized trading work: an automated market maker is only as useful as the pool behind it, and a deep, well-funded pool means smoother prices and smaller swings on each trade. By letting anyone contribute and earn, pools turn the once-exclusive business of providing market liquidity into something open to anybody with a wallet.

Also calledliquidity pool流动性池流動性池

A local field potential, or LFP, is the blended electrical field that an electrode picks up from many neurons working near it, rather than the sharp spike of any single cell. Imagine standing in a crowd and hearing the overall murmur instead of one person's words: the LFP is that pooled hum, the summed electrical activity of a whole neighborhood of brain cells.

Because it averages over many cells, the LFP is coarser than single-neuron spikes — you lose the crisp detail of who fired exactly when. But that same blending makes it more robust and steadier over time: it does not depend on holding a clear lock on one fragile cell, so it can keep delivering useful information even after individual spikes fade.

The LFP is also where the brain's rhythms live. The rises and falls of neural oscillations — the brain's repeating waves — show up clearly in it, which makes the LFP a valuable signal for decoding states and intentions in long-lived implants.

Also calledLFP场电位場電位

Localization of function is the idea that the brain is not one undivided lump of thinking-stuff, but a patchwork of regions, each leaning toward a particular job. One patch is busy with seeing, another with moving your right hand, another with understanding speech, another with forming new memories. Damage a region and you tend to lose the matching ability while the rest of the mind carries on. So the brain works a bit like a large office building where different departments sit in different rooms.

The idea grew out of careful detective work on people and animals. In the 1860s the physician Paul Broca noticed that patients who could no longer speak fluently often had damage to the same small spot on the left front of the brain, now called Broca's area. Later, researchers found they could touch tiny points on the surface of an animal's brain with a weak electric current and make a specific paw or whisker twitch, mapping movement onto a strip of cortex. Modern brain scanners, which light up the regions that grow busier during a task, have confirmed and refined these maps without ever needing to harm anyone.

The catch is that real brains are not as tidy as a wall map suggests. Most everyday acts, like reading a sentence or recognizing a friend, draw on whole teams of regions wired together, so localization works alongside the opposite truth that the brain is also deeply networked. And the map can be redrawn: after injury, neighbouring areas sometimes take over a lost job, a flexibility called plasticity.

Also calledfunctional localizationcortical localization脑功能定位腦功能定位功能定位學說

A lockfile is an auto-generated record that pins down the exact version of every single piece of code your project installs — not just the libraries you asked for, but the libraries those libraries needed too. Its whole job is to make 'install' give the same result every time, on every machine.

Here's the gap it fills. In your manifest you usually say something loose like 'give me version 4-point-anything of lodash'. That's convenient, but it means two people installing on different days could quietly end up with slightly different code. The lockfile freezes the answer: it writes down that you actually got 4.17.21, this exact one, from this exact source.

You don't write a lockfile by hand — your package manager generates and updates it. You just need to commit it alongside your code. Then a teammate, or a build server, or future-you runs one install command and gets a byte-for-byte identical setup, instead of a vague 'should be close enough'.

Also calledlock filepackage-lock.jsonyarn.lockpnpm-lock.yamlcargo.lockpoetry.lock

Logic is the study of good reasoning — of how a conclusion is supposed to follow from the things you already accept. Think of an argument as a small machine: you feed in some statements (the premises), and out the other end comes a conclusion. Logic asks one sharp question about that machine: if the inputs were true, would the output have to be true as well?

When the answer is yes, we call the argument valid — the conclusion is locked in by the shape of the reasoning, not by luck. "All cats can fly; Whiskers is a cat; so Whiskers can fly" is a perfectly valid argument. The reasoning is airtight even though the first premise is nonsense. That is the crucial twist most people miss: validity is about the form of the argument, not the truth of what goes in.

So an argument can be valid yet still lead you astray, because one of its premises is false. To actually trust a conclusion you need both: reasoning that holds together and premises that are really true. Logic guards the first half — it keeps the machine honest — while it falls to evidence and observation to supply the second.

Also calledformal logicdeductive logic形式逻辑演绎逻辑形式邏輯

A logic gate is a tiny circuit, built from just a handful of transistors, that takes in one or more signals and produces a single yes-or-no answer. It treats a high voltage as 'true' and a low voltage as 'false,' then computes one simple rule of logic — what mathematicians call a Boolean function. Think of a bouncer at a door: an AND gate lets you through only if both conditions are met, an OR gate if at least one is, and a NOT gate simply flips the answer it's given.

Each gate does almost nothing on its own, but that's the magic. Wire the output of one into the input of the next, stack thousands and then billions of them, and you can add numbers, compare them, store them, and follow instructions. A modern chip is just an enormous city of these gates switching on and off. Everything your computer does — every game, message, and photo — is built from this one humble idea, repeated at staggering scale.

Also calledANDORNOTNANDgate逻辑门邏輯閘

Before a chip exists as silicon, you can still "run" it — as a program. Logic simulation takes your HDL description of a design, plus a testbench that pokes its inputs, and computes what every wire and register does, moment by moment, as a fake clock ticks forward. You're not running the design on hardware; you're running a model of it on your laptop, and watching the results.

Concretely, the simulator advances a notion of simulated time and re-evaluates the design only where something changes. Drive an input high, and it propagates that edge through the logic, schedules the downstream gates and flip-flops to update at their proper delays, settles everything for that instant, then moves on to the next event. This event-driven loop is why even a short span of real chip behaviour can take far longer to simulate — every signal transition is bookkeeping the tool must track explicitly. The payoff is total visibility: you can dump every node to a waveform and scrub through time to see exactly when and why a signal went wrong.

The same flow runs at different levels of fidelity. Early on you simulate RTL — fast, and focused purely on whether the logic is functionally right. Later, after synthesis, you can simulate the gate-level netlist with back-annotated cell delays to confirm the netlist still behaves correctly — catching things like reset and unknown-value (X) problems that RTL can hide. But simulation isn't how you prove timing is met; that's the job of static timing analysis. What simulation answers is one question — does it do the right thing? — which is why it's the backbone of design verification long before tape-out.

Also calledlogic simHDL simulationRTL simulationgate-level simulation逻辑仿真邏輯模擬

Think about translating a recipe written in plain English ("whisk the eggs until fluffy, fold in the flour") into precise robot-arm instructions a factory machine can actually execute. You wrote the intent at a high level; something has to turn it into concrete physical steps. Logic synthesis is that translator for chips. You describe what your circuit should do in RTL — Verilog, SystemVerilog, or VHDL that talks about registers, arithmetic, and "if this, then that" — and the synthesis tool works out how to build it out of real hardware.

More precisely, logic synthesis takes your register-transfer-level description and compiles it into a gate-level netlist: a wiring diagram listing specific logic cells (AND gates, multiplexers, flip-flops, and so on) and how they connect. But it can't pick just any cells — it draws only from a standard-cell library, a fixed menu of pre-designed, pre-characterized gates that the foundry guarantees it can manufacture on a given process node. The tool maps your logic onto that menu, then optimizes hard: it factors out shared terms, merges redundant logic, and resizes gates to trade off speed, area, and power against your goals.

The catch is that the tool can't optimize blindly — it has to honor your timing constraints, chiefly the clock period every path must beat. Using delay numbers from the characterized library (plus estimated wiring delay), synthesis reshapes the combinational logic — and sometimes restructures it across register boundaries, a step called retiming — so the slowest path still settles within one clock period. Get this right and you hand off a netlist that's meant to be functionally equivalent to your RTL but ready for the next stage, place and route, where those cells get physical locations on the die. Synthesis is where an abstract design first becomes a real, buildable circuit.

Also calledsynthesisRTL synthesisgate-level synthesis逻辑综合邏輯合成

A logical qubit is one qubit you can actually trust. Today's physical qubits are fragile: a stray bit of heat, a passing cosmic ray, or just the slow drift of time nudges them off course, and the quantum information leaks away in microseconds. The fix is the same idea you use when you read an important phone number back to someone twice: spread the information across many copies so that if a few get garbled, the rest still tell you the true answer. A logical qubit takes that idea and builds one reliable qubit out of many noisy physical ones, with extra qubits constantly watching for errors and correcting them on the fly.

Here is the catch, and it is why people keep quoting eye-watering qubit counts. The protection is not cheap. With a leading approach called the surface code, a single logical qubit can take hundreds to thousands of physical qubits, and that only works if each physical qubit's error rate is already below a threshold of roughly one percent. So a machine that needs, say, a hundred logical qubits to run a useful algorithm might need tens or hundreds of thousands of physical qubits underneath. A logical qubit is the unit a fault-tolerant algorithm is written for, but it is an expensive abstraction sitting on top of a lot of hardware.

This is also the honest dividing line between today and tomorrow. We are in the NISQ era: real machines have at most a handful of shaky logical qubits, or often none that are fully fault-tolerant. The famous algorithms that genuinely beat classical computers, like Shor's factoring, assume many clean logical qubits running long sequences of gates without drifting. Building enough logical qubits, cheaply enough, is the central engineering problem standing between the quantum computers we have and the ones the headlines describe.

Also callederror-corrected qubitprotected qubit

Long-term depression, or LTD, is a lasting weakening of the connection between two neurons. Neurons talk to each other across tiny gaps called synapses; the strength of a synapse is how much one neuron stirs up the next. When a synapse is used in a particular way over time, that strength can change and stay changed. LTD is the change that makes the connection quieter, so the same message from the sending cell now nudges the receiving cell less than before. Think of it like turning down the volume on one specific channel and leaving it turned down.

What flips this switch is the pattern of activity. A slow, weak trickle of signals — low-frequency stimulation, like a steady drip rather than a burst — tends to trigger LTD, whereas fast, strong bursts tend to do the opposite and strengthen the synapse. Inside the receiving neuron, a modest, prolonged rise in calcium acts as the chemical cue, and the cell responds by removing some of its signal-receiving proteins (receptors) from the synapse so it catches fewer messages. This matters because a brain that could only strengthen connections would eventually saturate, like a notebook with no eraser. LTD lets the brain weaken what is no longer useful, sharpen which connections carry real information, and clear room to learn something new.

Also calledLTDsynaptic weakening长时程抑制長期抑制

Long-term potentiation, or LTP, is a long-lasting strengthening of the connection between two neurons after they have fired together rapidly and repeatedly. A synapse is the tiny junction where one neuron passes a signal to the next; LTP means that, once two neurons have been busy at the same time, the sending neuron's later messages land with a bigger punch on the receiving neuron. Think of a footpath worn across a lawn: walk it once and nothing changes, but walk it together over and over in a short burst, and a clear, easy-to-follow trail appears that stays there for hours, days, or longer. That lasting boost in signal strength is widely seen as one of the brain's basic tricks for storing memory and learning.

The classic recipe is high-frequency stimulation: deliver a fast train of pulses to the sending neuron, and the synapse afterward responds more strongly to the same input than it did before. At many synapses this works through a special doorway called the NMDA receptor, which only opens when two things happen at once — the sending neuron releases the messenger chemical glutamate, and the receiving neuron is already excited. When both conditions are met together, calcium rushes into the receiving cell and triggers changes that make the synapse permanently more sensitive, such as adding more receptors to catch incoming glutamate. This 'fire together, wire together' rule explains how the brain links events that happen at the same time, and why repetition and active practice make learning stick.

LTP was first observed in the hippocampus, a seahorse-shaped structure central to forming new memories, and it has become the most studied cellular model of how experience reshapes the brain. It is not the whole story of memory, but it shows in concrete, physical terms that connections in the brain are not fixed — they can be turned up by use, which is exactly what learning seems to require.

Also calledLTPsynaptic potentiation突触长时程增强突觸長期增強

A loop is code that repeats an action instead of making you write it out over and over. If you need to greet 100 people, you don't type 100 greetings — you write the greeting once and wrap it in a loop that runs it 100 times. It's the programmer's answer to 'do this again, and again, and again.'

Loops come in two everyday flavors. One walks through a collection, doing the same thing once for each item in a list — handy when you have an array and want to touch every element. The other keeps going while some condition stays true, and stops the instant it turns false; the condition is the loop's brake pedal.

The thing to watch for is forgetting to stop. If the condition never becomes false — or you never reach the end of the list — the loop runs forever, freezing your program. An 'infinite loop' is the classic beginner stumble, and the fix is always the same: make sure something inside the loop pushes it toward the exit.

Also calledfor loopwhile loopiteration

Loop closure is the moment a robot realizes 'I've been here before,' and uses that recognition to snap its map back into shape. As a robot drives around, it tracks its own motion step by step — a little forward, a slight turn — and tiny errors in each step quietly pile up, so its guess of where it is slowly slides away from the truth. This creeping error is called drift. Walk a big loop around a building with your eyes half-closed, counting steps, and by the time you return to the front door your tally will say you're somewhere else entirely. Loop closure is the robot opening its eyes at the door, recognizing it, and saying 'wait — this is exactly where I started.'

That single recognition is enormously powerful. The robot now knows two things it thought were far apart are in fact the same place, which gives it a hard constraint: the start and end of the loop must line up. It can then spread the accumulated error backward across the whole path it traveled, gently bending the route so the loop actually closes instead of leaving a gap or an overlap. A map that was drifting into a smeared, mismatched mess gets pulled into a clean, consistent shape — corridors meet up, walls stop doubling, rooms land where they belong.

The catch is that recognizing a revisited place is itself hard and risky, because it leans on the data-association problem: two places can look alike without being the same. A false loop closure — declaring you're back at the start when you're really in a different but similar-looking spot — yanks the map into a confidently wrong shape that is very hard to undo. So good systems demand strong, well-checked evidence before they trust a loop closure, treating a wrongly accepted one as far worse than a missed one.

Also calledloop-closure detectionplace revisiting闭环检测回环閉環偵測
M

Machine learning is how a computer gets better at a job by studying examples, instead of being handed a rulebook. Imagine teaching a child to recognize a cat: you don't recite a definition of "cat," you just point at hundreds of them until the pattern clicks. A machine learning program works the same way — show it thousands of photos labeled "cat" or "not cat," and it gradually tunes itself until it can spot a cat it has never seen before.

The shift is profound. In old-style programming, a human writes out every rule by hand: if the email contains "free money," mark it as spam. But spammers are clever, and the rules never end. Machine learning flips this around — you feed the program a pile of emails already sorted into spam and not-spam, and it discovers the telltale patterns on its own. That is why it now powers everything from your photo app to the suggestions that finish your sentences.

One common myth is that the machine "understands" what it learns. It doesn't — it has simply found statistical patterns that work. Feed it biased or sloppy examples and it will faithfully learn the bias too. The model is only ever as good as the data it learned from, which is why the examples matter far more than most people expect.

Also calledMLstatistical learning机器学习機器學習统计学习

Magnetoencephalography, or MEG, measures the brain at work in a completely different way from EEG: instead of voltages, it senses the faint magnetic fields that electric currents inside neurons naturally create. Any flowing electric current makes a small magnetic field around it, and MEG picks up that magnetic whisper from outside the head.

Like EEG, MEG is non-invasive and has superb timing, tracking activity millisecond by millisecond. Its advantage is that magnetic fields pass through the skull with much less smearing than electrical signals, so MEG can often pinpoint where activity comes from more precisely than scalp EEG can.

The price is the machine. The brain's magnetic fields are mind-bogglingly tiny — far weaker than ordinary magnetic noise around us — so MEG needs ultra-sensitive sensors inside a large, heavily shielded room. That makes it expensive and fixed in place, more a research and clinical tool than a wearable one.

Major depressive disorder is a medical condition in which low mood and a loss of interest or pleasure settle in and stay — not for an afternoon or a hard week, but most of the day, nearly every day, for at least two weeks. It is very different from ordinary sadness or grief, which come in waves and ease as life moves on. In depression the heaviness lingers and starts to color everything: things a person normally enjoys feel flat or pointless, and even getting through the basics of a day can take enormous effort. Think of it less like a passing storm and more like a fog that refuses to lift, dimming the whole landscape until it is hard to remember the view was ever clear.

Depression is more than just a feeling — it reaches into the body and the way the mind works. Along with sadness or emptiness, it often brings disrupted sleep (too little or too much), changes in appetite and weight, deep fatigue, trouble concentrating or making decisions, restlessness or a sense of being slowed down, and harsh feelings of worthlessness or guilt; in its more serious forms it can bring thoughts of death or suicide. Because these symptoms interfere with work, relationships, and self-care, doctors classify it as a true disorder rather than a personal weakness. It is thought to arise from a tangle of causes working together — genetics, brain chemistry and the circuits that regulate mood, long-term stress, illness, and difficult life events — which is also why it is treatable: talking therapies, medication, lifestyle support, and other approaches can each help lift the fog.

Crucially, depression is common and not a sign of failing at life. It affects people of every age, background, and outward level of success, and many who live with it describe being unable to simply think or will their way out of it — which is exactly what marks it as an illness rather than a mood. With the right support most people improve, and recognizing the pattern early, in oneself or in someone else, is often the first step toward getting better.

Also calledclinical depressionmajor depressionunipolar depressionMDD抑郁症临床抑郁症臨床憂鬱症重鬱症

Mammalian cortical expansion is the way the cerebral cortex — the thin, wrinkled outer sheet of the brain where seeing, planning, and complex thinking happen — has grown much larger over evolutionary time in many mammals, especially compared with the deeper, older brain parts beneath it. Picture the brain as a fruit: in a lizard the outer rind is thin and smooth, but across mammal evolution that rind ballooned outward, folding in on itself to cram more surface into the same skull. In humans this sheet, if peeled off and flattened, would cover roughly the area of a large dinner napkin, while the structures it sits on top of stayed comparatively modest.

This matters because the cortex is where much of an animal's flexible behavior lives — recognizing faces, learning new tricks, using tools, holding a plan in mind. As the cortex expanded, it did not just get bigger; it gained more of the repeating little processing columns of nerve cells that do its computing, and in primates and humans it added extra processing areas not tightly tied to immediate movement or sensation, leaving room for abstraction, language, and foresight. The folds and grooves you see on a human or dolphin brain are the visible signature of this expansion: wrinkling is nature's trick for fitting a big sheet into a small box.

Also calledcortical enlargementneocortical expansion皮层扩大新皮层扩张皮層擴大新皮層擴張

A manipulability ellipsoid is a little squashed balloon, drawn at the robot arm's hand, that shows how easily the hand can move in each direction from where it is right now. The directions where the balloon is long and stretched are the directions the hand can move fast and freely; the directions where the balloon is thin and pinched are the directions where moving is sluggish and hard, because the joints would have to spin furiously just to nudge the hand a little.

It comes from a simple idea: imagine spinning the robot's joints in every possible combination, but always keeping the total joint speed the same modest amount, and ask where the hand ends up able to go. Collect all those reachable hand-velocities and they trace out an ellipsoid — an egg or pancake shape. A fat, round, ball-like shape means the arm is in a comfortable, agile pose that handles motion in any direction about equally well. A flat, cigar-like shape that is collapsing toward a flat disc or a line is a warning: the arm is getting awkward, and in the pinched direction it has almost lost the ability to move at all.

Engineers use this shape as a quick health check on a pose. When planning how an arm should reach for something, they often steer it toward poses with rounder ellipsoids, so the hand stays nimble in every direction and avoids the cramped, near-frozen configurations where fine control falls apart.

Also calledvelocity ellipsoid可操作性椭球可操作性橢球

Manipulation under uncertainty is grasping and handling objects when the robot does not know things exactly. In the real world, the camera's guess of where an object sits is a little off, its shape is only roughly known, how slippery its surface is can only be estimated, and the sensors themselves are noisy. Manipulation under uncertainty is the art of succeeding anyway — picking the cup up cleanly even though every number the robot has about it is a bit wrong.

It helps to see where the fog comes from. The object's pose (its position and how it is turned) is fuzzy because vision is imperfect. Its shape may be unknown if the robot has never seen this exact item. Friction — how much grip the surface offers — is hard to measure and changes with dust or moisture. And the robot's own touch and position sensors drift and jitter. Any one of these alone might be survivable, but they stack up, and a plan that assumed perfect numbers can miss the object entirely or let it slip.

The cure is not to pretend the numbers are perfect but to plan for being wrong. A robot might choose a grasp that still works even if the object is a centimeter off from where it looked, squeeze a little extra to fight unknown slipperiness, approach slowly and use touch to confirm contact before committing, or grab and then check whether it actually has the object. Designing actions that tolerate error like this — rather than demanding precision the world will never give — is the core skill, and it is what separates a lab demo from a robot that works in a messy kitchen or warehouse.

Also calledrobust grasping鲁棒抓取穩健抓取

The manipulator Jacobian is a table of numbers that translates how fast you turn a robot arm's joints into how fast — and in which direction — its hand actually moves through space. Picture an arm with several motors, each spinning its joint at some speed. The hand at the tip ends up gliding, lifting, and twisting all at once. The Jacobian is the bookkeeping device that adds up every joint's individual contribution and tells you the total result: the tip's straight-line speed (how fast it travels left-right, up-down, forward-back) together with its turning speed (how fast it rolls and tilts).

Why a table and not a single number? Because each joint affects the hand differently depending on the arm's current pose, and there are many joints feeding into many directions of motion at once. So the Jacobian is a grid: read down a column to see what one joint does to the hand right now; read across a row to see how all the joints together contribute to one particular direction of hand motion. Crucially, this grid is not fixed — it changes as the arm folds and unfolds, because the same joint that mostly lifts the hand when the arm is stretched out may mostly swing it sideways when the arm is curled up. The Jacobian is the single tool that turns joint speeds into hand motion, and (run in reverse) hand motion back into the joint speeds needed to produce it.

Also calledJacobian matrixgeometric Jacobian雅可比雅可比矩陣

Marginal utility is the extra satisfaction you get from one more unit of something — the joy of just one more. Picture a hot afternoon: the first glass of cold lemonade is heaven. The second is still nice. By the fourth, you're shrugging; by the sixth, you'd rather not. The pleasure of each glass is its marginal utility, and notice how it shrinks with every refill.

That shrinking is so common economists gave it a name: diminishing marginal utility. The more of something you already have, the less a further helping adds. It's not that lemonade got worse — it's that your thirst, the need it was meeting, is mostly already satisfied.

This quietly explains why you buy what you buy. You keep spending on a thing only as long as the next unit is worth its price; once the extra satisfaction drops below the cost, you stop. Multiply that across millions of shoppers and it shapes how much people demand at each price — which is why a seller usually has to drop the price to coax you into buying more. One caution: "marginal" means the *next* unit, not the total. Your tenth slice of pizza can leave you miserable even while the whole day of eating was, on balance, a delight.

The mass matrix, also called the inertia matrix, is the grid of numbers that links how fast a robot's joints are speeding up to how much actuation force each joint needs to make that happen. For a single object on a frictionless floor, one number — its mass — turns a desired acceleration into the required push. A multi-joint robot is far busier, so it needs a whole grid: the mass matrix is the multi-joint generalization of that single mass number, telling the controller the price in force for any pattern of joint accelerations.

What makes it interesting is two things. First, the matrix is configuration-dependent: it changes as the robot folds and unfolds. An arm stretched straight out is much harder to swing than the same arm tucked in close, because reaching out flings its mass far from the joint — the same skater-arms effect that governs rotational inertia. Second, the off-diagonal entries capture coupling: shoving one joint also tends to disturb its neighbors, the way wiggling one end of a loosely held chain tugs the rest. The mass matrix bookkeeps every one of these cross-influences at once.

This matrix sits at the very heart of a robot's equation of motion. To compute inverse dynamics — figuring out the forces needed to produce a desired motion — you multiply the mass matrix by the wanted accelerations. To compute forward dynamics — predicting the motion that given forces will produce — you effectively invert it. Either way, an accurate mass matrix is what lets a robot move crisply and confidently instead of guessing at how its own weight will fight back.

Also calledmass matrixjoint-space inertia matrixM(q)质量矩阵广义惯性矩阵

Mass–energy equivalence is Einstein's discovery that mass and energy are really two faces of the same thing — you can turn one into the other. A tiny bit of mass holds an astonishing amount of energy, because the formula multiplies it by the speed of light squared (c²), and that number is colossal.

How colossal? The mass of a single paperclip, fully converted, could power a home for centuries. This is why the Sun shines: deep in its core it fuses hydrogen, and a sliver of the mass goes missing — released as the light and warmth that reach your skin. The same trick powers nuclear reactors and, less happily, nuclear weapons.

One honest caveat: in everyday life mass and energy still feel like separate, well-behaved things, and they are — the conversion only becomes dramatic at the heart of stars or inside a reactor. But the books always balance: nothing is truly lost, only changed from one form into the other.

Also calledE=mc2E = mc^2mass-energy equivalenceEinstein's equationrest energy质能方程質能方程

Maximal extractable value, or MEV, is the extra profit that whoever builds a block can capture purely by choosing which transactions go in and in what order, beyond the normal block reward and fees. Because a miner or validator decides the exact sequence of pending transactions, they hold a quiet but powerful lever: the order of trades and operations can itself be worth money, and that value can be extracted by arranging the block cleverly.

It arises because pending transactions sit in public view in the mempool before they are confirmed, and on a blockchain order is everything: which trade executes first can change prices and outcomes. A classic example is a front-run, where someone sees a large pending swap that will move a price, inserts their own trade just ahead of it, and profits from the move the victim's trade was about to cause. Related tactics include back-running and "sandwiching" a victim's trade between two of one's own.

Imagine a ticket clerk who can see every order in the queue and is free to rearrange them: they could slip their friend's purchase ahead of yours to grab the last good seat before the price jumps. MEV is the blockchain version of that ordering power, and it is an active research frontier: because it can quietly tax ordinary users and even threaten a chain's stability, much current work aims to make transaction ordering fairer, more private, or more transparent rather than a hidden source of profit.

Also calledMEVminer extractable value最大可提取价值最大可提取價值

Mechanical compliance is how much a part of a robot gives, bends, or springs back when you push on it, instead of staying perfectly rigid. Think of the difference between poking a steel beam and poking a foam mattress: the beam barely moves, while the mattress squishes and then pushes gently back. A compliant joint or limb behaves a little like the mattress — it has some built-in give. Engineers measure compliance as the amount of movement you get for a given amount of force, so a very compliant part moves a lot under a small push, while a very stiff part hardly moves at all.

This give matters because it makes a robot safer and gentler when it touches the world. A perfectly stiff arm that bumps into a person or a table delivers a sharp, hard knock, while a compliant arm absorbs the impact like a knee bending as you land from a jump. Compliance also helps with tasks that need a delicate touch — pressing two parts together, shaking a hand, or holding an egg — because the springiness lets the robot soak up small misalignments and uneven forces instead of crushing or snapping things. Some robots get compliance from soft springs and rubbery materials built right into the body, and others create it with their motors and software, sensing force and deliberately easing off so they yield and feel soft to the touch.

Also calledcompliancemechanical springiness柔顺顺应性

Work, in the careful physics sense, is what happens when a force pushes something along while it actually moves: push a box one meter and you have done work on it; lean on a wall that does not budge and, oddly, you have done zero work no matter how tired you get. Energy is simply the stored-up ability to do that work later — a kind of currency that motion and position carry around. For a robot, every joint that turns, every arm that lifts, and every gripper that squeezes is spending or storing this currency, and keeping the books balanced is what the whole field of dynamics is about.

Mechanical energy comes in two everyday flavors. Kinetic energy is the energy of motion — a spinning motor or a fast-swinging arm has it, and it grows with the square of speed, so a link moving twice as fast carries four times the energy (which is exactly why a heavy robot arm whipping around is so dangerous). Potential energy is the energy of position — lift a payload high and you have banked energy in it, ready to come rushing back as motion if it falls. A robot constantly trades between the two: it spends electrical energy to do work that lifts a part (storing potential energy), and that stored energy can later turn back into motion on the way down.

This bookkeeping is not just tidy physics — it is practical engineering. Knowing the work a task demands tells you how big a motor and battery you need; tracking kinetic energy tells you how hard it will be to stop a moving arm safely; and clever designs deliberately store and reuse energy — springs in a walking robot's legs, for instance, catch the energy of each footfall and spring it back into the next step, much like a kangaroo's tendons, so the motors do far less work.

Also calledkinetic energypotential energy动能势能機械功

A mechanical transmission is the set of parts that carries motion and turning force from a motor to the joint it is supposed to move. A motor on its own usually spins very fast but pushes very gently — handy for a fan, useless for lifting a load. The transmission is the go-between that reshapes that raw spin into something useful: slowing it down, multiplying its pulling strength, routing it around a corner, or relocating it to where it is actually needed. Belts, chains, gears, cables, screws, and specialty gadgets like harmonic drives are all members of this family.

Picture the chain on a bicycle. The pedals are the motor, the rear wheel is the joint, and the chain plus the sprockets are the transmission — they carry your leg power to the wheel and, by choosing gears, trade easy fast spinning for slow strong climbing. Robots use the same trick. A belt can place a bulky motor down near the base so the arm stays light at the tip; a screw can convert a motor's spinning into a clean straight push; a harmonic drive (a clever flexible-gear unit) can deliver a huge slow-down in a single compact, almost backlash-free package, which is why it shows up in the joints of so many precise robot arms.

The transmission you pick quietly shapes how the whole robot behaves. A good one passes power smoothly and efficiently, holds its position firmly, and wastes little energy as heat. A poor or worn one introduces backlash — a tiny dead zone of slop where the motor turns but the joint does not respond yet — along with friction, flex, and lost motion, all of which blunt precision. Designers also weigh whether the link can push the motor backward (called being backdrivable, which matters for safety and for feeling external forces), since some transmissions are easy to drive in reverse and others lock up tight.

Also calleddrivetrainpower transmission传动系统传动机构

A mechanoreceptor is a tiny sensor in your body that reacts to being physically squeezed, stretched, or buzzed — in other words, to mechanical force. It is the part of a nerve cell that turns a push, a poke, a pull, or a vibration into an electrical message the brain can read. When you feel the weight of your phone in your hand, notice your shirt resting on your shoulders, or sense that you are gripping a cup just tightly enough not to drop it, mechanoreceptors are the things doing the feeling. They sit not only in your skin but also inside muscles, joints, blood vessels, the gut, and the inner ear.

How does pressure become a signal? Each mechanoreceptor contains special doorways in its cell wall called ion channels — gates that normally stay shut. When the surrounding tissue is deformed, the stretching physically tugs these gates open, letting charged particles flood in and tipping the cell's electrical balance. If the push is strong enough, the cell fires off a nerve impulse that races toward the brain. Different mechanoreceptors are tuned to different jobs: some respond only at the instant a touch begins or ends (great for catching a flutter or a buzz), while others keep signaling steadily for as long as the pressure lasts (great for sensing a constant grip or the steady stretch of a full bladder). This division of labor is why you can feel both a fleeting tickle and the lasting firmness of a handshake.

Also calledmechanosensory receptortouch receptor机械刺激感受器機械刺激感受器

Melatonin is a hormone your brain makes at night that acts like an internal announcement: "it's dark out — time to wind down for sleep." It is produced by a tiny structure deep in the brain called the pineal gland, which is about the size of a grain of rice. As evening falls and light fades, the pineal gland starts releasing melatonin into the blood; levels climb through the night, peak in the small hours, and fade away by morning. Think of it less as a knockout drug and more as a gentle dusk signal that tells the rest of the body the night has begun.

What makes melatonin special is that it is a chemical clock-hand: its timing is set by light, not by how tired you are. A pacemaker in the brain (the master body clock) watches the light coming through your eyes, and only when that light drops does it allow the pineal gland to switch melatonin on. This is why bright screens or lamps at night can blunt the signal and make sleep harder to start, and why melatonin pills are often used to nudge a jet-lagged or shifted body clock back toward a normal schedule. Melatonin does not so much force sleep as it opens the gate for it — lowering alertness, cooling the body slightly, and telling your daily rhythms that the dark phase has arrived.

Also calledhormone of darknessN-acetyl-5-methoxytryptamine黑暗激素暗夜荷尔蒙黑暗荷爾蒙

Memory consolidation is the slow process by which a brand-new, fragile memory hardens into a sturdy, long-lasting one. When you first learn something — a name, a route home, a song — that memory starts out wobbly, like fresh concrete that a fingertip can still smudge. Over the following hours, days, and sometimes years, the brain quietly works the memory over and sets it firm, so that later it can survive distractions, the passage of time, and the bumps of everyday life. Think of it as the difference between scribbling a note on a sticky pad and slowly carving the same words into stone.

Two things happen during this setting process. First, at the level of single connections, the brain strengthens and stabilizes the links between the neurons that hold the memory — building new proteins and reshaping the contact points so the pattern is locked in; this short-range tidying takes minutes to hours. Second, over a much longer span, the memory is gradually handed off: the hippocampus, a seahorse-shaped hub that captures fresh experiences, slowly transfers the lasting record out to the wider cortex, the brain's broad outer sheet, where well-worn memories live for the long haul. A great deal of this work happens during sleep, when the brain replays the day's events and files them away, which is one reason a good night's rest helps learning stick.

Also calledmemory stabilizationconsolidation记忆固化記憶固化

Memory reconsolidation is what happens when an old, settled memory is pulled back up and briefly becomes soft and editable again — like taking a dried clay tablet, dipping it in water until it is workable, changing a few marks, and letting it harden once more. For a while, scientists thought that once a memory was fully stored, or consolidated, it was locked in for good. Reconsolidation overturned that idea: every time you actively recall a memory, it can re-enter an unstable state and must be saved all over again before it sticks. In that brief window the memory is open to being strengthened, weakened, or quietly updated with new information.

Here is roughly how it works. Recalling a memory does not just play it back; it reactivates the same web of brain cells that hold it and triggers them to rebuild the proteins that keep the connection strong. While those proteins are being remade, the memory is fragile — block that protein-building with a drug, or feed in conflicting information, and the memory can come back altered or fainter than before. This is one reason a story changes a little each time you tell it, and why a frightening memory revisited in a calm, safe setting can gradually lose its sting. Researchers are exploring reconsolidation as a route to easing traumatic memories, phobias, and cravings — deliberately reopening a painful memory and then reshaping it before it locks back down.

Also calledreconsolidationmemory updating记忆再固化記憶再固化

Memory retrieval is the act of reaching back into your brain and pulling a stored memory into your conscious mind, the moment a name, a face, or last summer's trip suddenly comes to you. Forgetting is the flip side: when that reaching comes up empty, or brings back something faded or wrong. A useful picture is a vast library where the books are your memories. Retrieval is finding the right book and opening it; forgetting is when the book is misshelved, the label has rubbed off, or two books got bound together and you grab the wrong one.

A memory is not stored as a single thing in one spot. It is a pattern spread across many brain cells that once fired together, and retrieval works by re-igniting enough of that pattern to bring the whole thing back. This is why a cue helps so much: a smell, a song, or being in the same place can switch on part of the pattern, and the rest follows, like humming the first two notes and the whole tune returns. It also means retrieval is reconstruction, not playback. Each time you recall a memory you rebuild it, and you can quietly edit it in the process, which is why honest memories can still be wrong.

Forgetting has several causes, and most are not a clean erasing. A trace can simply fade from disuse over time; a memory can be there but inaccessible because the right cue is missing, the familiar tip-of-the-tongue feeling; or newer and older memories can interfere with each other, so similar items crowd out the one you want. Some forgetting is even useful, clearing away clutter so the memories that matter stand out, which is why a brain that remembered absolutely everything would be overwhelmed rather than gifted.

Also calledrecallremembering and forgetting记忆回想与遗忘回憶與遺忘

Imagine a brilliant chef who can chop and cook a hundred dishes a minute, but the only way ingredients reach the kitchen is one waiter walking back and forth to a pantry down the hall. Soon the chef spends most of the shift standing idle, waiting for the next basket of vegetables. That is the memory wall: over the decades, the speed at which a processor can do arithmetic has grown far faster than the speed at which memory can deliver the data to work on. The compute got cheap; moving the data did not. So for many real workloads, the true bottleneck is not the math, it is feeding the math.

This gap traces straight back to a limit you met lower down the ladder. When Dennard scaling ended around 2006 and clocks stopped rising, chipmakers answered by adding more cores and wider vector and tensor units, so a modern GPU or TPU can demand staggering amounts of data per cycle. Main memory (DRAM) improved too, but mostly in capacity, not in how fast bytes can stream across the narrow wires and connectors between a separate memory chip and the processor. Every trip off-chip costs time and a lot of energy, often far more energy than the calculation itself. The result is that an expensive accelerator can sit largely starved, its arithmetic units waiting on operands.

Two families of ideas attack the wall, and both are about geometry, not faster transistors. The first is bringing memory physically closer and making the path far wider: High-Bandwidth Memory (HBM) is a stack of DRAM dies joined by through-silicon vias (TSVs) and parked right beside the processor on a silicon interposer, replacing a few skinny off-board traces with thousands of short, parallel ones. The second is moving the compute to the data, or near-memory and in-memory compute, where simple operations happen inside or beside the memory so the bytes barely have to travel. Neither makes a transistor faster; both shorten the distance data must move.

Also calledbandwidth wallmemory bottleneck带宽墙頻寬牆内存瓶颈記憶體瓶頸

The mempool — short for memory pool — is the waiting room for transactions. When you broadcast a payment, it does not land in a block instantly; first it sits in the mempool, a holding area of valid-but-not-yet-confirmed transactions that each node keeps in its own memory. It is like the queue at a post office counter: your envelope is genuine and ready to go, but it has to wait its turn before anyone actually processes it.

Every full node maintains its own copy of this waiting area and gossips new transactions to its neighbors, so a freshly broadcast payment spreads across the network within seconds. Nodes first check that each incoming transaction is well-formed, properly signed, and not trying to spend money that is already gone; only then does it earn a place in the pool. The mempool is therefore both a buffer that smooths out bursts of activity and a filter that screens out invalid transactions before they could ever reach a block.

When it is time to build the next block, the participant doing so reaches into the mempool and selects which waiting transactions to include — and because block space is limited, they typically prioritize those offering higher fees. Once a transaction is confirmed in a block, it leaves the mempool. This is why a payment can feel pending for a while during busy periods: it is simply still in the queue, waiting to be picked up into a block.

Also calledmemory pool交易池记忆池

The meninges are three thin, protective layers of tissue that wrap snugly around your brain and spinal cord, like the sleeves of a sock cushioning a delicate object. They sit just inside the skull and the bony spine, forming a barrier between hard bone and soft, easily bruised nervous tissue. Because the brain has the texture of soft tofu, it cannot survive bumping directly against bone, so these wrappings hold it gently in place and protect it.

From outside in, the three layers are the dura mater (a tough, leathery outer sheet pressed against the bone), the arachnoid mater (a spongy, cobweb-like middle layer), and the pia mater (a delicate film glued right onto the brain's surface, dipping into every fold). Between the arachnoid and the pia flows cerebrospinal fluid, a clear watery cushion that lets the brain float and absorbs shocks. Together these layers also carry blood vessels and help seal off the nervous system from the rest of the body.

When the meninges become inflamed, usually from an infection by bacteria or viruses, the result is meningitis, which can cause a stiff neck, severe headache, and fever and can be life-threatening. This is why doctors take meningeal symptoms seriously, and why the meninges are central to understanding how the brain stays both protected and supplied.

Also calledmeningeal membranes脑脊膜腦脊膜meninx

Mental imagery is the experience of perceiving something when it is not actually in front of you — seeing, hearing, smelling, or feeling it inside your mind alone. Picture a red apple right now: you do not have an apple in your hand, yet a kind of inner picture appears. That inner picture is mental imagery. It is your brain creating a perception-like experience from memory and imagination, rather than from your eyes, ears, or skin taking in the world at this moment.

The striking discovery from brain research is that imagining something reuses much of the same machinery as actually sensing it. When you visualize a scene, parts of your visual brain — the same regions that light up when you really look at things — switch on again, as if replaying a softer version of real seeing. This is why imagery feels a little like perception, and why athletes who rehearse a movement in their heads, or people who picture a calm place to relax, can get real effects: the brain is partly running the same programs it would use for the real thing, just without the outside signal triggering it.

Mental imagery is not limited to pictures. People can hear a tune in their head, imagine a smell or a taste, or feel an imagined movement in their muscles. It also varies enormously between people: some report vivid, almost photograph-like inner images, while others — a condition called aphantasia — report no visual images at all and still think and remember perfectly well. This shows that the inner experience is one tool the mind uses, not the only way thinking happens.

Also calledvisualizationthe mind's eye心象脑海中的画面腦海中的畫面

Mental privacy is the right to keep your inner life to yourself — your thoughts, intentions, attention, and feelings — unless you choose to share them. For most of history this right protected itself: no one could see inside your head. You decided what to say and what to keep.

Brain–computer interfaces change the setting. A device that records neural signals cannot read sentences like a mind-reader in a film, but it can pick up hints — that you are paying attention, getting ready to move, recognizing a face, or feeling stressed. Those hints are coarse and easy to misread, yet they touch territory that used to be fully your own.

So mental privacy becomes a practical question, not just a philosophical one: what may be measured, who may see it, and whether you can say no. It is one reason brain data is often treated as needing special protection.

To merge is to take the changes from one branch and weave them into another, so two separate lines of work become one. You did some work off on your own branch; merging is the moment you bring it home into main, and the project's history now includes both stories.

Most of the time git does this for you, quietly and correctly. It looks at what changed on each side and stitches the two sets of edits together — even when both branches touched the same file, as long as they touched different parts of it. You run one command and the two histories are joined.

When git can't be sure how to combine two edits — because both branches changed the very same lines — it stops and asks you to decide. That's a merge conflict, and it's not an error so much as git politely refusing to guess. You pick what's right, and the merge completes.

Also calledgit mergemerge branchfast-forward

A merge conflict happens when two branches changed the very same lines of a file in different ways, and git can't tell which version you want. Rather than guess and risk picking wrong, it stops and hands the decision to you. It's not a failure — it's git being honest about a choice only a human can make.

Git marks the clash right inside the file with three lines you'll learn to recognise: <<<<<<< opens your side, ======= divides the two versions, and >>>>>>> closes the incoming side. Everything between the first marker and ======= is your branch's version; everything between ======= and the last marker is theirs.

Resolving it is calm work: open the file, decide what the final lines should actually say — keep yours, keep theirs, or blend the two — then delete all three marker lines so what's left reads like normal code. Save, stage the file, and finish the merge. The markers must be gone; if any remain, you haven't resolved it yet.

Also calledconflictmerge conflict markersconflict markers
See alsomergerebase

A Merkle tree is a way of fingerprinting a whole pile of items so that you can prove any single item belongs in the pile without showing the whole pile. You start by hashing each item; then you hash those hashes together in pairs, then hash those results in pairs, and so on, climbing upward until a single hash remains at the top. That top value is called the Merkle root, and it is a compact summary of every item below it.

The clever part is the proof of membership. To convince someone that one particular transaction is in a block, you do not hand over every transaction — you hand over just the handful of partner hashes needed to walk from your item up to the root. The verifier re-does those few combinations, and if the result matches the known root, the item must be genuine and unaltered. It is like proving your name is in a giant ledger by showing only the short trail of receipts leading to a single seal on the cover, instead of opening every page.

This is what lets lightweight devices trust a blockchain without storing all of it. A phone wallet can confirm that its payment was included in a block by checking a tiny Merkle proof against the block's root, rather than downloading gigabytes of data. The same structure also makes tampering obvious: change any single item and its fingerprint changes, which ripples upward and changes the root.

Also calledhash tree默克尔树哈希树默克爾樹

Mesenchymal stem cells, or MSCs, are a kind of adult stem cell found in the body's connective and supporting tissues, most famously in bone marrow and in fat. They are multipotent, with a classic talent for becoming the cells of the skeleton's structural tissues: bone, cartilage, and fat. Picture them as a maintenance crew for the body's framework, the cells that help lay down and renew the hard and cushioning materials that hold everything together.

Beyond turning into those few tissue types, MSCs are valued for the chemical signals they release. Rather than rebuilding tissue mainly by becoming it, they appear to work largely by secreting molecules that calm inflammation and nudge nearby cells to repair themselves. They are also relatively easy to collect and grow compared with many other stem cells, which is a large part of why they have been so widely tested. Because many researchers argue they are more supportive stroma than true stem cell, the more careful name mesenchymal stromal cell is often preferred.

This combination of accessibility and broad biological activity has made MSCs the subject of an enormous number of clinical trials. It has also, unfortunately, made them a favorite of unregulated clinics that market unproven MSC injections for almost any ailment. The honest picture is mixed: MSCs are genuinely interesting and useful in research, a few specific uses are supported by evidence, but the sweeping cure-all claims sold to patients run far ahead of what has actually been demonstrated.

Also calledMSCmesenchymal stromal cell间充质干细胞間質幹細胞

The mesolimbic dopamine pathway is a chain of brain cells that carries a chemical messenger called dopamine from one small region deep in the brain to another, and it is the part of the brain most tightly tied to feelings of motivation and reward. The journey starts in a cluster of cells near the brain's core called the ventral tegmental area, often shortened to VTA. From there, long thread-like wires reach forward to a region called the nucleus accumbens, which sits lower in the front of the brain. Picture a single highway running from a power station, the VTA, to a busy town square, the nucleus accumbens, with dopamine as the cargo trucked along it.

When something good or surprisingly better than expected happens, such as a sip of water when you are thirsty or a kind word you did not see coming, the VTA fires and releases a pulse of dopamine into the nucleus accumbens. That pulse does not so much create the feeling of pleasure itself as it stamps the moment as worth wanting and worth repeating, nudging you to seek that reward again. This is the brain's basic engine for learning what is valuable and for turning desire into action. Because it is so good at flagging things as worth pursuing, this same pathway is also hijacked by addictive drugs, which flood the nucleus accumbens with far more dopamine than any natural reward, and by gambling and other compulsive habits.

The pathway does not work alone. It exchanges signals with the amygdala, which adds emotional weight, with the hippocampus, which supplies memory and context, and with the prefrontal cortex at the front of the brain, which weighs long-term consequences and can put the brakes on impulsive wanting. When this balance tips too far in one direction, it is linked to conditions ranging from the loss of motivation seen in depression to the relentless craving seen in addiction.

Also calledreward pathwaymesolimbic reward circuitVTA-to-nucleus-accumbens pathway奖赏通路獎賞通路

A metabotropic receptor is a protein that sits in the outer wall of a brain cell and listens for a chemical message from a neighboring neuron — but instead of doing anything itself, it passes the message inward to a chain of helpers inside the cell. Picture a doorbell that does not open the door; it just rings a bell that wakes up the household, who then decide what to do. When the chemical messenger (a neurotransmitter) lands on the receptor, the receptor changes shape and nudges a partner molecule waiting on the inside called a G protein, which is why these receptors are also called G-protein-coupled receptors.

Because the signal has to travel through this relay of inside helpers — the G protein switches on enzymes, the enzymes make small 'second messenger' molecules, and those messengers fan out to do the actual work — a metabotropic receptor is slow and long-lasting compared with the fast, direct kind. It does not punch a hole for ions to rush through; it tunes and tweaks the cell over hundreds of milliseconds to minutes, turning channels up or down, adjusting how excitable the neuron is, and even sending word to the nucleus to change which genes are switched on. This makes metabotropic receptors the brain's volume knobs and mood dials, shaping learning, memory, and the slow background tone of neural activity.

Also calledG-protein-coupled receptorGPCRG蛋白偶联受体G蛋白偶聯受體

Once the transistors are etched into the silicon, they're useless until you wire them together — and a modern chip has billions of them. You can't do that on one flat surface any more than a city could connect every building with a single street. So the foundry builds a stacked road network in the layers above the transistors: a dozen or more sheets of metal wiring, stacked one atop the next, with insulator between them and tiny vertical elevators called vias punching through to connect a wire on one level to a wire on the next. This whole metal stack is the back-end-of-line, or BEOL — "back end" because it's fabricated after the transistors themselves (the front-end-of-line), layer by layer, on top of them. When place-and-route "routes," these are the layers it's drawing wires on.

The layers are deliberately not all the same. Down near the transistors, the lowest metals (often called M1, M2, and up) are thin and packed at a fine pitch — narrow alleys for short, local hops between neighbouring cells, where you need density far more than speed. Climb the stack and the wires get progressively wider and thicker, ending in fat top-level metals reserved for two jobs: carrying clean power and ground across the whole die (the power delivery network), and ferrying long-distance signals from one side of the chip to the other. The reason is plain resistance. A wire's resistance is R = rho*L/A — proportional to its length and inversely proportional to its cross-sectional area — so a long run on a thin lower layer would be hopelessly resistive and slow; promote it to a thick upper layer with a big cross-section and the resistance per millimetre drops sharply. That's why a good router sends short nets down low and long or power-hungry nets up high.

These copper wires aren't ideal, though: each one carries real resistance and forms capacitance with its neighbours and the layers above and below. Those parasitics are exactly what extraction pulls out of the finished layout and hands to static timing analysis, because at advanced nodes the delay of the metal can rival or exceed the delay of the gates it connects. So the metal stack isn't just plumbing you bolt on at the end — which layer a net rides on, and how the layers are sized, is a first-class design decision that shapes whether the chip meets timing and survives its power demands.

Also calledBEOLback-end-of-lineinterconnect stackmetal stackMx layers金属层互连层金属互连堆叠

Metaphysics is the study of what is really there, underneath everything. Not what the world looks like, but what it is — what kinds of things truly exist, and what it even means for something to exist at all. If physics asks how the furniture of the universe behaves, metaphysics asks what counts as furniture in the first place: Are numbers real, or just useful fictions? Is time a thing that flows, or only a way we line up events? When one billiard ball strikes another, is there really a hidden thread of "cause" pulling the second into motion, or just one thing happening, then another?

These sound like idle puzzles, but they sit under everything else. Every science, every argument, quietly assumes some answer about what exists and how things hang together. Metaphysics drags those assumptions into the light and asks whether they hold up. Think of it as inspecting the foundations of a house you've lived in your whole life without ever going down to the basement.

A common misreading is that "metaphysics" means crystals, auras, and the supernatural — the label bookstores use. That is not this. Real metaphysics is sober and demanding, as concerned with ordinary tables and moments and causes as with anything mystical. Its question is the plainest and deepest one we can ask: what does it take, for anything, to be?

Also calledfirst philosophyontologybeing qua being本体论存在论形上學

These are two very different ways for a robot to write down the world. A metric map is like a precise architect's blueprint: it records actual distances and shapes in real units, so the robot knows the desk is 2.3 metres straight ahead and the wall runs exactly here. A topological map is more like a subway diagram: it forgets the exact distances and instead remembers the places that matter and which ones connect to which — kitchen links to hallway, hallway links to living room. One captures precise geometry; the other captures connectivity, the bare structure of how places hang together.

Each style is good at something the other is bad at. A metric map lets a robot squeeze through a narrow doorway or park a wheel within a centimetre, because it knows the exact measurements — but it is heavy to store, slow to search across a whole building, and it drifts: tiny measurement errors pile up over long distances until the far end of the map no longer lines up with reality. A topological map is wonderfully light and easy to reason over for long-haul planning ("to reach the lobby, go kitchen → hallway → stairs"), and it shrugs off that drift because it never claimed exact distances in the first place — but on its own it cannot tell the robot precisely how to steer between two doorways.

Because of this trade-off, real robots usually blend the two into a hybrid map: a topological skeleton of connected places for big-picture planning, with a small, accurate metric patch stored inside each place for the fine, careful manoeuvring that happens once you arrive. Think of it as a city subway map for deciding the route, plus a detailed street map of just the block you step out onto.

Also calledmetric maptopological map度量图与拓扑图度量圖與拓撲圖

Your gut is home to trillions of tiny living things, mostly bacteria, together called the gut microbiome. The microbiome-gut-brain connection is the surprising discovery that these microbes do not just help you digest food, they also send signals that reach all the way up to your brain and can sway how you feel, how you handle stress, and even how you behave. Think of the gut as a crowded city of microscopic tenants, and the brain as city hall: the two are constantly exchanging messages, and the tenants have more say than anyone once suspected.

The microbes talk to the brain along several routes at once. They make and trigger chemical messengers, including ones closely related to mood, such as a large share of the body's serotonin and substances that calm or excite nerve cells. They also send fast electrical signals up the vagus nerve, the long wire linking gut and brain, and they shape the immune system and stress hormones, which in turn act on the brain. Because the conversation runs in both directions, stress from the brain can change which microbes thrive, and a shifted microbe mix can feed back to alter mood and thinking.

This connection matters because it hints that the food you eat and the bacteria you carry are quietly part of your mental life. In animal studies, swapping the gut microbes of a bold animal into a timid one can make the timid one act bolder, and raising animals with no microbes at all leaves their stress responses and social behavior noticeably off. In people the links are still being mapped, but they help explain why diet, antibiotics, and gut health are now studied as possible influences on anxiety, mood, and brain conditions.

Also calledgut-brain axismicrobiota-gut-brain axis肠-脑轴腸-腦軸微生物-肠-脑轴微生物-腸-腦軸

A microcircuit is a small, tightly wired team of neurons—often a few hundred to a few thousand—that sit close together and pass signals among themselves to carry out one little job over and over. Think of it like a single workstation on a factory floor: the workers there are wired up in a fixed pattern, and whenever a part comes in, they perform the same handful of steps before passing the result along. The whole brain is built from huge numbers of these stations repeated side by side, so understanding what one of them computes goes a long way toward understanding the whole machine.

In the cerebral cortex—the brain's wrinkled outer sheet—these circuits are stacked in roughly six layers, with the same recognizable pattern of connections repeating across the surface. Information typically arrives in a middle layer, gets shuffled between excitatory cells (which urge their partners to fire) and inhibitory cells (which quiet them down), and a refined answer is sent out from the upper and lower layers. Because the wiring looks so similar whether the patch is handling vision, touch, or planning, scientists call it a 'canonical' microcircuit: nature seems to have found one good recipe and copied it everywhere, simply feeding each copy different inputs.

Why it matters: a microcircuit is the level where raw electrical spikes start to become meaningful operations—sharpening a signal, comparing two inputs, holding a brief memory, or deciding which neighbor wins. Studying these small repeating units lets researchers ask how billions of neurons cooperate without having to track every single cell, and it gives engineers a blueprint for building brain-inspired computers.

Also calledcortical microcircuitcanonical microcircuitlocal circuit皮层微环路皮層微迴路局部环路局部迴路

Microdialysis is a technique for eavesdropping on the chemistry of living brain tissue. A hair-thin probe is implanted into a chosen brain region, and at its tip sits a tiny sleeve of semipermeable membrane — a barrier full of pores so small that water and small molecules can slip through, but cells and large proteins cannot. A gentle stream of fluid is pumped slowly through the inside of the probe. Because the inside fluid starts out clean, neurochemicals floating in the fluid around the brain cells diffuse across the membrane to even things out, hitching a ride out of the brain. The collected drops are then chemically analyzed.

Think of it like dipping a tea bag into a cup: the membrane is the bag, and instead of letting flavor seep in, it lets the brain's own molecules — neurotransmitters such as dopamine and serotonin, glucose, drugs, and waste products — seep into the fluid you carry away. By collecting samples minute by minute or hour by hour, researchers can watch how these chemicals rise and fall in real time while an animal sleeps, learns, or receives a drug.

Its great strength is also its main limit. Because nothing is destroyed and the brain keeps working around the probe, microdialysis can track the same spot for hours or days. But the membrane lets molecules through slowly, so the method trades fine timing for chemical detail — it reveals what is present far better than it captures changes that happen in a fraction of a second.

Also calledintracerebral microdialysismicrodialysis probe脑内微透析腦內微透析

A microelectrode array is a tiny grid of penetrating needles, each one a separate electrode, packed onto a chip no bigger than a baby's fingernail. Pushed into the cortex, it listens to many neurons at once across a small patch of brain — like dropping a bed of dozens of tiny microphones into one corner of a crowded room instead of using just one.

Recording from many channels together is what makes good control possible: more neurons watched at the same time means more information about what the person is trying to do, and a steadier read for moving a cursor or a robotic hand. The best-known example is the "Utah array," a grid of about 96 needles that has been used in many landmark implanted-BCI studies.

The array only senses the small region it sits in, so where it is placed matters enormously — usually in the motor cortex for movement-control systems. Like all penetrating implants, it faces the long-term struggle of staying reliable as surrounding tissue reacts to it.

Also calledUtah arrayMEA犹他阵列猶他陣列

Microglia are the brain's own immune cells — tiny caretakers scattered throughout the brain and spinal cord that act like a built-in cleanup-and-security crew. Unlike most immune cells, which patrol the bloodstream, microglia live permanently inside nervous tissue. They are small, with a compact body and many thin, branching arms that are constantly reaching out and pulling back, sweeping the space around them like the feelers of a curious insect. Even when nothing seems to be wrong, they never truly rest: they are always sampling their surroundings, checking that everything nearby is healthy.

Their job has three main parts. First, surveillance: those waving arms continuously feel out the neighborhood, so microglia are often the first to notice an injury, an infection, or a dying cell. Second, pruning: during development and learning, microglia trim away weak or unused connections between neurons (called synapses), much like a gardener cutting back excess branches so the strong ones can flourish — this sculpting helps wire the brain correctly. Third, clearing debris: they engulf and digest dead cells, leftover waste, and harmful invaders, keeping the tissue clean. When they sense real trouble, microglia change shape, multiply, and switch into an alert, defensive state to fight the threat.

Because they sit at the crossroads of the immune system and the brain, microglia matter far beyond simple housekeeping. Helpful, well-tuned microglial activity protects neurons and supports healthy circuits, but when their response goes wrong — too much, too long, or aimed at the wrong target — it can drive harmful inflammation. Overactive or misguided microglia are now linked to many conditions, including Alzheimer's disease, multiple sclerosis, chronic pain, and depression, which is why they are a major focus of modern brain research.

Also calledbrain immune cellsresident macrophages of the brain脑内免疫细胞腦內免疫細胞

Microglia are the brain's own resident immune cells — tiny, branching cells that drift their thin arms through the brain tissue, constantly feeling around for trouble. In their normal, watchful state they look like delicate spiders, gently patrolling. Microglial activation is what happens when they sense something wrong — an injury, an invading germ, a leaking blood vessel, or a clump of damaged proteins — and switch from quiet patrol mode into an alert, reactive state. Think of a neighborhood watch volunteer who, on spotting smoke, drops the calm stroll and turns into a busy first responder.

When they activate, microglia change both their shape and their behavior. They pull in their long thin branches and become rounder and bulkier, the better to move toward the problem and get to work. They release signaling molecules called cytokines — chemical messages that summon other immune cells and crank up inflammation, like sounding an alarm that calls in backup. They also start phagocytosing: literally engulfing and digesting their targets, swallowing up dead cells, debris, germs, and harmful protein clumps the way a vacuum cleaner clears a mess.

This response is protective in short bursts — it clears damage and fights infection so the brain can heal. But if activation drags on too long or fires too hard, the same inflammation and the same chemical messengers can start harming healthy neurons. This kind of lingering, overzealous microglial activation is now linked to many brain diseases, from Alzheimer's and Parkinson's to chronic pain and the lasting effects of stroke.

Also calledmicroglial reactivityreactive microglia小胶质细胞反应性小膠質細胞反應性

Signals on a wire normally travel both ways, like a hallway people walk through in either direction. But near a qubit, two-way traffic is dangerous: the faint readout signal you send up the line gets answered by reflections and amplifier noise coming back down, and that returning energy disturbs the qubit you are trying to measure. A circulator is a small device that breaks this symmetry. It has three ports arranged in a ring, and it only passes energy one way around the ring: in at port 1, out at port 2, never backward. An isolator is just a circulator with its third port capped by a cold absorber, so anything coming the wrong way gets swallowed instead of reflected.

The one-way behavior comes from magnetism. Inside sits a small piece of ferrite material held in a static magnetic field from a permanent magnet. That field makes the ferrite respond differently to microwaves going clockwise versus counterclockwise, so the device is non-reciprocal: it treats the two directions as genuinely different, which a plain network of wires and capacitors cannot do. In a qubit readout chain, circulators sit at the cold stages and steer the qubit's signal up toward the amplifier while routing the amplifier's back-action and its pump tone into a load, shielding the qubit from that noise.

The honest catch is size and scaling. These ferrite-and-magnet parts are bulky, centimeters across, and each qubit channel may need two or three of them, so a fridge wiring a few hundred qubits already drowns in circulators and the cables between them. The magnets also do not play well with superconducting circuits nearby. That is why on-chip, magnet-free non-reciprocal devices, built from Josephson junctions or clever active circuits, are an active research area. They are promising but early: today's on-chip isolators are narrowband, lossy, or hard to fabricate reliably, and bulky commercial circulators are still what actually ships.

Also calledcirculatorisolator微波环行器微波環行器隔离器隔離器non-reciprocal device

A microwave control pulse is the little burst of radio-frequency energy that actually performs a gate on a superconducting qubit. Each qubit has a natural tone it likes to absorb, usually somewhere between 4 and 8 gigahertz. Send a precisely shaped pulse at that tone down a wire to the qubit, and you can rotate its state by exactly the amount you want. In plain terms, this pulse is the keystroke: it is how a control rack at room temperature reaches into the cold chip and nudges a single qubit.

Three knobs on the pulse set what the gate does. The amplitude (how loud) and the duration (how long) together decide how far the qubit rotates, so a calibrated area gives you a half-turn (an X gate) or a quarter-turn. The phase (the timing of the wave's crests) decides the axis of rotation, which lets you choose between, say, an X and a Y gate. The pulses are built by an arbitrary waveform generator that paints a smooth low-frequency envelope, then an IQ mixer lifts that envelope up onto the qubit's gigahertz carrier so the qubit will respond to it.

The honest catch is that the qubit lives at about 10 millikelvin and is extremely sensitive, so the pulse cannot arrive at full room-temperature strength. It is attenuated by tens of decibels on the way down the fridge, with attenuators bolted to each cold plate to strip away the room's thermal noise along with the signal. Pulses must also be shaped carefully (see DRAG) to avoid accidentally exciting the qubit's neighboring energy levels, and every qubit needs its own calibrated pulse, which is part of why scaling the wiring and the calibration is so hard today.

Also calleddrive pulsegate pulse微波驱动脉冲微波驅動脈衝

Mining is the work that powers a proof-of-work blockchain: computers compete to solve the chain's numeric puzzle, and the winner gets to add the next block of transactions to the ledger. The name is a metaphor — like miners spending effort to dig up gold, these machines spend electricity to produce valid blocks. The participants running them are called miners.

Here is the loop a miner repeats. It gathers pending transactions from the waiting area, bundles them into a candidate block, and then hashes that block over and over with a changing nonce, searching for a result below the network's target. This takes trillions of attempts. The first miner anywhere in the world to find a valid hash broadcasts the finished block, every other node verifies it in moments, and the race resets for the next block.

Mining is what ties together security and money issuance. The winning miner is paid in two ways: a block reward of newly created coins, plus the fees attached to the transactions they included — which is also how new bitcoin enters circulation. Because real resources are spent to win each block, honest mining is profitable while attacking the chain is ruinously expensive, and that incentive is precisely what keeps the network trustworthy without any central authority.

Also calledmining挖矿挖礦矿工礦工

Mining difficulty is a dial the network turns to keep blocks arriving at a steady pace, no matter how much computing power is mining. It sets how hard the proof-of-work puzzle is — specifically, how small the winning hash must be. A higher difficulty means a smaller target, which means more guesses are needed before anyone gets lucky.

Why bother adjusting it? Because mining power is always changing. If new, faster machines join, blocks would start appearing too quickly; if miners leave, blocks would slow to a crawl. So the protocol automatically recalibrates difficulty at regular intervals — Bitcoin does it roughly every two weeks — raising it when blocks come too fast and lowering it when they come too slow, so the average block time stays near its target of about ten minutes.

This self-correcting feedback loop is what gives a blockchain a predictable rhythm and a stable issuance schedule, independent of how powerful mining hardware becomes. Think of it like a footrace where the finish line keeps moving so the winner always crosses at the same moment, whether one runner shows up or a million do. Difficulty is the quiet regulator that keeps the whole system in time.

Also calleddifficulty挖矿难度挖礦難度

The mirror system is a group of brain cells that fire in two situations that feel very different from the outside but look the same to the brain: when you do an action yourself, and when you watch someone else do that same action. Reach for a cup, and certain neurons light up. Sit perfectly still and watch a friend reach for a cup, and many of those very same neurons light up again. It is as if your brain quietly rehearses other people's movements inside your own motor machinery, like humming along silently to a song you hear someone else singing.

These cells were first discovered by accident in the 1990s in the brains of macaque monkeys, where researchers found neurons in the motor areas that responded both when the monkey grasped a peanut and when it merely saw a person grasp one. In humans, brain-imaging studies point to a similar network spread across the premotor and parietal regions, though we cannot record from single human neurons as easily, so the human evidence is more indirect. Because the same circuit is engaged whether you act or observe, many scientists think the mirror system helps us understand the goals behind other people's actions from the inside out, and it has been proposed as a possible building block for imitation, learning by watching, and perhaps even empathy. These broader claims are still debated, but the core finding, neurons shared between doing and seeing, is well established, and comparing it across monkeys, humans, and other animals is a lively part of evolutionary neuroscience.

Also calledmirror neuronsmirror neuron system镜像神经元镜像神经元系统鏡像神經元鏡像神經元系統

A model organism is a creature that scientists study closely as a stand-in for life in general — including for us — rather than only for its own sake. The bet behind the choice is simple: brains across the animal world are built from the same kind of cells, called neurons, wired together at the same kind of junctions, called synapses, and run on the same basic electrical and chemical tricks. So a rule discovered in a worm or a fly often turns out to hold in a mouse, and sometimes in a human. By picking a few well-behaved species and getting to know them inside out, researchers learn general principles of how nervous systems are put together and how they work.

Each favorite species is chosen for a particular advantage, the way you would pick the right tool for a job. A tiny roundworm has so few nerve cells that every single connection between them has been mapped, giving a complete diagram of a working nervous system. A fruit fly is cheap to raise and easy to edit genetically, so scientists can switch individual neurons on or off and watch behavior change. A young zebrafish is see-through, letting its brain cells be filmed as they flash during swimming. Mice and rats carry a mammal brain organized much like our own, which makes them the workhorses for studying memory, emotion, and disease.

Also calledmodel species实验模式动物實驗模式動物模式动物模式動物

Model predictive control, or MPC, is the controller that thinks ahead. At every instant it uses an internal model of how the robot moves to imagine the next few seconds, tries out many possible action plans in its head, picks the plan that comes out best, then takes only the very first step of that plan — and throws the rest away. A heartbeat later it looks at the new situation and does the whole thing over again. It is like a chess player who plans several moves deep but commits to just one move at a time, replanning after each one.

The window it peers into is called the horizon, and because that window keeps sliding forward with the robot, MPC is also known as receding-horizon control. Two things make this style powerful. First, it plans, so it can anticipate a turn coming up or a wall ahead instead of only reacting once it is too late. Second, and most importantly, it can obey hard constraints right inside the plan: 'never command more torque than this motor can give', 'never let the arm cross into that wall', 'keep the speed under the limit'. The optimizer simply refuses any imagined plan that breaks a rule.

The price for all this foresight is computation. MPC must solve a fresh optimization problem — basically a small optimal-control problem over the horizon — many times per second, on the robot, in real time. For years that was only possible for slow systems like chemical plants, but faster computers and smarter solvers have brought MPC onto quadrupeds, drones, and self-driving cars, where it now coordinates many limbs or wheels at once while respecting every physical limit.

Also calledMPCreceding-horizon control滚动时域控制滾動時域控制

When a robot learns to act by trial and error, there are two broad styles, and the difference is whether it builds a mental picture of how the world responds to its moves. A model-free robot skips the picture entirely: it just tries actions, sees whether things went well or badly, and gradually nudges its habits toward whatever earned more reward — like a child learning to ride a bike purely by wobbling, falling, and adjusting, without ever thinking about physics. A model-based robot instead first learns a little internal simulator — a model that predicts what will happen if it does this or that — and then uses that model to plan ahead and pick good moves, like a chess player imagining several moves before touching a piece.

Each style trades off the same two things: how much real-world practice it needs, and how much computing it does while acting. Model-free learning is simple and robust, but it can be terribly hungry for experience — a robot may need millions of attempts, which is fine in a fast simulator but painful and slow on real hardware that wears out and breaks. Model-based learning is usually far more sample-efficient, because every bit of experience also teaches the internal model, which can then be replayed and planned against many times over almost for free; its weakness is that if the learned model is even slightly wrong, the robot may confidently plan beautiful actions that fail in reality.

In practice robotics blends the two rather than choosing sides. A common pattern is to learn a rough world model from limited real data, use it to plan or to pre-train a policy, and then polish that policy with a bit of model-free trial and error so it stops relying on the model's mistakes. Understanding which style a system leans on tells you a lot about why it behaves the way it does: a model-free system that suddenly fails has simply never seen that situation, while a model-based one that fails was probably misled by a flaw in its imagined world.

Also calledmodel-based RLmodel-free RL基于模型的强化学习无模型的强化学习

A modular blockchain is one that splits the core jobs a blockchain must do into separate, specialized layers, rather than having a single chain do all of them at once. The main jobs are execution (running the transactions), settlement (resolving results and disputes), consensus (agreeing on the order of events), and data availability (making sure the underlying data is published so anyone can check it). A modular design lets each job be handled by a layer purpose-built for it.

The contrast is with a monolithic blockchain, like Bitcoin or early Ethereum, where one chain does everything from start to finish. That is simple and self-contained but hard to scale, because improving one job means burdening every node with all the others too. By separating concerns, a modular stack can scale each piece independently: a fast execution layer (often a rollup) can lean on a robust base layer purely for security and data availability, and you can mix and match the best layer for each role.

Think of the shift from a single craftsperson who builds an entire car alone to a modern assembly line where specialized stations each perfect one part. The specialization lets the whole system produce far more without any one worker being superhuman. Modularity has become the dominant philosophy for scaling: rather than build one chain that tries to win every corner of the scalability trilemma, you compose a system from layers that each do one thing extremely well.

Also called模块化区块链模組化區塊鏈

A molecule is what you get when two or more atoms link arms and hold on — a tiny, settled group that behaves as one. Think of atoms as letters and molecules as words: on their own the letters mean little, but joined in the right order they spell something real. Two hydrogen atoms clasped to one oxygen atom spell H₂O — a single drop of water's worth of meaning, repeated countless times over.

A molecule is also the smallest piece of a substance that still acts like that substance. Split a water molecule and you no longer have water at all — just hydrogen and oxygen, two gases with utterly different habits. The wetness, the way it freezes and boils, the way it dissolves sugar: all of that lives in the whole molecule, not in its separate atoms.

A common mix-up: molecules aren't always made of different elements. Two identical atoms count too — the oxygen you breathe travels as O₂, a molecule of two oxygen atoms holding hands. "Molecule" just means atoms bonded together; whether they're the same or different is a separate question.

Also calledmoleculesH₂O分子molecular

Momentum is the "oomph" a moving object carries — how much motion it has, packed into one number. It depends on two things: how heavy something is, and how fast it's going. A heavy truck and a bicycle can roll at the same speed, but the truck has far more momentum, which is exactly why it's so much harder to stop.

Physicists write it as a simple recipe: p = mv — momentum equals mass times velocity. Double the weight, or double the speed, and you double the momentum. Because velocity has a direction, momentum does too: a ball thrown left and the same ball thrown right carry the same amount, but pointed opposite ways.

The magic is that momentum is conserved: in a collision, the total momentum of everything involved is the same before and after. When two billiard balls click together, whatever motion one loses, the other gains — the books always balance. That single rule lets us predict crashes, rocket launches, and pool shots alike.

Also calledlinear momentump = mvconservation of momentum动量守恒線動量

Monte Carlo localization is a clever, almost playful way for a robot to answer where am I when it is not sure. Instead of committing to one guess, it scatters thousands of tiny guesses — called particles — all over the map, each one a complete little hypothesis saying maybe I am right here, facing this way. The whole swarm of guesses is the robot's belief: where the particles cluster thickly, the robot strongly suspects it is; where there are none, it has ruled the spot out. The name borrows from the Monte Carlo casino because the method leans on lots of random samples, the way a gambler's outcomes pile up over many rolls.

The swarm then plays a survival game in three repeating steps. First, when the robot moves, every particle moves the same way, with a dash of random noise added because real motion is never perfect. Second, the robot takes a sensor reading and asks each particle: if I really were where you say, would this reading make sense? Particles that match the reading well get a high score, or weight; particles that clash get a low one. Third comes resampling — the robot breeds a fresh batch of particles, copying the high-scoring ones and dropping the losers, the way evolution keeps the fit and culls the rest. Round after round, the cloud of survivors drifts toward and tightens onto the true location.

What makes this approach beloved is how naturally it handles confusion. Early on, when the robot truly has no idea, particles can be spread everywhere and even form several separate clumps — capturing the honest fact that two identical-looking corridors could each be the answer. As more sensor evidence arrives, the wrong clumps starve and die off until one cluster wins. It needs no perfect math and copes gracefully with the messy, ambiguous real world, which is why it became a workhorse of mobile robots. Under the hood it is one famous flavor of a tool called the particle filter.

Also calledMCLparticle-filter localization粒子滤波定位蒙特卡羅定位

Moore's law is the observation that the number of transistors you can pack onto a chip of a given cost roughly doubles every two years. Picture a city block that holds twice as many houses each time you revisit it, while the rent stays flat — that relentless doubling is why the phone in your pocket dwarfs the room-sized computers of the 1960s. It is a trend about economics and manufacturing, not a law of nature like gravity.

Gordon Moore, a co-founder of Intel, sketched the pattern in a 1965 magazine article from just a handful of data points, and the industry then spent decades treating it as a roadmap to hit. Each doubling came from shrinking the features, so transistors got cheaper, faster, and lower-power all at once. A 1971 chip held about 2,300 transistors; a modern processor holds tens of billions. The pace is now slowing as features approach a few atoms wide and tunnelling, leakage, and soaring fab costs bite.

Also calledMoore's law摩尔定律摩爾定律

Moravec's Paradox is a surprising observation about robots and computers: the things that feel hard to us — chess, arithmetic, logic puzzles — turn out to be easy for machines, while the things that feel effortless to us — walking, grabbing a cup, recognizing a face, keeping your balance — turn out to be brutally hard for machines. In short, what is easy for a human is often hard for a robot, and what is hard for a human is often easy for a robot. The name comes from the roboticist Hans Moravec, who pointed this out in the 1980s.

Why does this flip happen? The skills that feel automatic to you — seeing, moving, touching — are the ones evolution spent hundreds of millions of years polishing, so they run beneath your awareness and seem free. Deliberate reasoning, like doing long division, is a newer trick that we have to think about consciously, which is exactly why it feels difficult — and also why it is easier to spell out as step-by-step rules a computer can follow. A machine can be handed those rules directly, but it cannot inherit the vast, hidden know-how packed into a body that has learned to move. This is a big reason computers could beat people at chess long before any robot could reliably tidy a kitchen, and it still shapes which jobs are hard to automate today.

Also calledMoravec paradox

A morpheme is the smallest piece of language that still carries meaning — the atom of word-building. Take the word cats: it splits into cat (a furry animal) and -s (more than one). You can't chop cat any smaller and still have anything that means something — cut it into c-a-t and you're left with bare sounds, no meaning at all.

Words are built by snapping these pieces together. A root like teach can pick up -er to become teacher (one who teaches), then -s to become teachers. Unhappiness stacks three at once: un- (not) + happy + -ness (the state of). Some morphemes stand alone as whole words (cat, run, blue); others, like -s, un-, or -ness, can only cling to something else.

Here's the catch people miss: a morpheme is not the same as a syllable. Crocodile has three syllables but is just one morpheme — none of its chunks means anything on its own. And cats, with one syllable, holds two morphemes. Meaning, not sound, is what marks the boundary.

Also called语素語素词素詞素morph

A MOSFET is the tiny electrical switch that almost every modern chip is built from — billions of them on a fingernail of silicon. Think of it as a tap on a pipe of electric current: current wants to flow from the 'source' terminal to the 'drain', but only if you turn the tap. The handle is a third terminal called the 'gate', and the trick is that the gate is separated from the current by a sliver of insulator, so it controls the flow without ever touching it.

Put a voltage on that insulated gate and its electric field pulls a thin layer of charge into the silicon just beneath it, opening a conducting 'channel' between source and drain; remove the voltage and the channel vanishes. An n-type (NMOS) device switches on with a positive gate voltage and carries electrons; a p-type (PMOS) is its mirror image, switching on when the gate goes low and carrying positive charges instead. Pair one of each and you get a CMOS inverter — the logic gate, now scaled to a few nanometres, behind every processor and memory you own.

Also calledFETfield-effect transistorMOS场效应晶体管場效電晶體

When a robot tries to figure out where it is, it leans on two little stories it tells itself, written down as equations. The first is the motion model, sometimes called the process model: a rule that says "given where I think I am now, and the command I just sent to my wheels or motors, here is where I should end up next." Drive forward for one second at half a meter per second and the motion model predicts you are roughly half a meter ahead of where you were. The second is the observation model, also called the measurement model: a rule that runs the other direction and says "if I really were standing at this spot, here is what my sensors ought to read." Standing two meters from a wall, the observation model predicts the laser rangefinder should report about two meters. One model predicts how the world changes; the other predicts what the senses will say about it.

These two models are the backbone of nearly every state estimator, because together they let the robot compare a guess against reality. The cycle goes: use the motion model to roll your best guess forward in time (the prediction step), then take a real sensor reading, use the observation model to compute what that reading should have been, and nudge your guess to close the gap between expected and actual (the update step). Crucially, neither model is treated as perfect — each comes bundled with an honest admission of how wrong it tends to be (process noise for the motion model, measurement noise for the observation model), so the robot knows how much to trust each one. Wheels slip, so the motion model is shaky; a good laser is crisp, so the observation model is sharp. The estimator weighs them accordingly.

The art lies in writing models that are accurate enough to be useful but simple enough to compute many times a second. A model can be a clean straight-line equation, or it can be tangled and curved — a camera turning a three-dimensional position into pixel coordinates is a notoriously bendy observation model. When the equations curve, the basic Kalman filter no longer fits, and engineers reach for cousins like the extended or unscented Kalman filter that bend with them. But the two-part skeleton never changes: one model for how I move, one model for how I am seen.

Also calledprocess model and measurement modelsystem model and sensor model运动模型与测量模型過程模型與量測模型

Motivation and drive are the inner pushes that get you moving toward a goal and keep you going until you reach it. Think of them as the brain's get-up-and-go: the feeling that turns a quiet thought like "I'm thirsty" into the action of standing up and walking to the sink. Drive is the raw energy behind the urge, and motivation is that energy aimed at something specific — food when you're hungry, warmth when you're cold, or a paycheck at the end of the month. Without it, you might know exactly what to do and still never start.

Under the hood, much of this begins with the body noticing it is out of balance — too little water, too little fuel, too little safety — and signaling the brain that something needs fixing. Deep brain regions, especially the hypothalamus, track these needs, while a chemical messenger called dopamine helps stamp in which actions are worth pursuing and adds the spark of wanting. Importantly, motivation comes in two flavors: it can be pulled from outside by rewards and punishments (a bonus, a fine), or pushed from inside by curiosity and enjoyment of the task itself. This is why understanding drive matters far beyond the lab — it sits at the root of eating, learning, addiction, depression, and nearly every choice we make about where to spend our effort.

Also calleddriveincentivegoal-directed behavior驱力动机驅力動機

The motor cortex is the strip of brain surface that plans and commands voluntary movement — the part that says "now lift the arm" and sends the order on its way. It runs as a band across the top of the brain, just in front of the deep groove that splits the front and back halves.

It is organized as a rough map of the body, sometimes drawn as a little distorted figure called the homunculus. Nearby patches of cortex control nearby parts of the body, and areas that need fine control — like the hand and lips — get an outsized share of territory. So where activity lights up roughly tells you which body part is being moved.

That orderly map makes the motor cortex the prime target for movement-decoding BCIs. The key trick: even when the body can't move, merely imagining or attempting a movement still stirs the matching region. A BCI can read that stirring and turn the intended-but-blocked movement into real action on a device.

Also calledprimary motor cortexM1运动皮层運動皮層运动皮质運動皮質

A motor driver is the power-handling chip-and-circuit board that sits between a robot's brain and its motor. The controller is a delicate thinker that can only whisper tiny signals; a motor is a thirsty muscle that gulps far more current than those signals could ever carry. The driver is the strong middleman that takes the brain's gentle commands and pours the right amount of electrical muscle into the motor to obey them.

It does this with fast electronic switches. To set speed, it uses PWM — pulse-width modulation — flicking the power fully on and off thousands of times a second; the longer each on-pulse lasts, the more power the motor feels on average, like dimming a light by blinking it very fast. To set direction, many drivers use an H-bridge, a clever switch arrangement that can flip which way current flows so the motor can spin forward or backward.

For a brushless motor, the driver has a harder job called commutation: it must constantly figure out where the rotor is and energize the coils in just the right rhythm to keep it spinning — this electronic version of a motor driver is what hobbyists call an ESC, or electronic speed controller, the little board that makes drone propellers howl. In every case the driver also protects itself and the motor, guarding against too much current or heat.

Also calledESCmotor controller驱动板驅動板

The motor homunculus is a kind of body map painted across a strip of your brain. There is a band of tissue near the top of each half of the brain called the primary motor cortex, and it is the launch pad for voluntary movement — when you decide to wave or wiggle a toe, the command starts there. The remarkable thing is that this strip is laid out like a tiny picture of your whole body: one spot controls the foot, the next the leg, then the trunk, hand, face, lips, and tongue, in an orderly sequence. Scientists call this kind of orderly body-to-brain layout somatotopic, meaning each body part has its own matching place on the map. If you drew a little person to show which patch of cortex moves which body part, you would get the homunculus — Latin for little man.

But this little person looks wildly out of proportion, like a funhouse-mirror cartoon: it has enormous hands, gigantic lips and tongue, and a huge face, while the trunk, arms, and legs are shrunken and thin. The reason is that brain space is handed out by how much fine control a body part needs, not by its physical size. Your fingers, lips, and tongue perform delicate, precise movements — gripping a pencil, forming words, shaping speech — so they get a large slice of cortex with many neurons to steer them. Your back or thigh, by contrast, makes only coarse, simple movements, so a small patch is enough. The map is also crossed and roughly upside-down: the left motor cortex moves the right side of the body and vice versa, and the toes sit up near the top of the brain while the face sits lower down. Doctors and neuroscientists use this map to understand why a stroke or injury in one tiny spot can weaken just a hand or just one side of the mouth.

Also calledcortical motor mapPenfield homunculus运动皮层身体地图皮质运动图運動皮層身體地圖皮質運動圖

Motor imagery is imagining a movement vividly without actually making it — picturing yourself squeezing your right hand, or wiggling your toes, while staying perfectly still. Remarkably, the brain regions that plan and command real movement light up during the imagined version too, almost as if a quiet rehearsal were running.

That rehearsal leaves a measurable trace: over the sensorimotor cortex, the idling mu and beta rhythms dip in power on the side that controls the imagined limb. A BCI can spot which limb you imagined from where that dip appears — left-hand imagery shows up over the right side of the brain, and vice versa.

What makes this paradigm special is that the control signal comes entirely from inside. There is no flickering screen or flashing grid to look at, so the user can drive a cursor, a wheelchair, or a robotic arm purely by intention — though it usually takes practice to produce a clear, steady signal.

Also calledMIimagined movement

A motor program is a ready-made set of commands your nervous system stores for a movement you have already learned, so that once you start it, the whole sequence can roll out almost on its own. Think of signing your name, touch-typing a familiar word, or shifting gears in a car you have driven for years: you do not plan each finger or muscle one at a time. Instead the brain reaches for a packaged routine, like pressing play on a recording, and the limbs follow the script.

What makes it powerful is that the timing, the order, and the rough force of each muscle contraction are decided up front, before the action even begins. This pre-planning lets fast movements happen quicker than moment-to-moment feedback could ever steer them. By the time your eyes or fingertips report back what is going on, a swing of a bat or a piano run is already partly finished, so it has to be largely scripted in advance rather than corrected on the fly. The brain still tweaks the program with feedback for slower or trickier moves, but the backbone of the action is the stored plan.

Motor programs matter because they are how skill becomes automatic. Practice gradually compresses a clumsy, stop-and-think action into one smooth, prestructured unit that frees your attention for everything else, which is why an expert can talk while typing or steer while chatting. Brain regions such as the cerebellum and basal ganglia help build, store, and trigger these routines, and when they are damaged, well-practiced movements can become jerky, mistimed, or hard to launch.

Also calledmotor schemamovement program运动图式運動圖式

Torque is twisting force — how hard a motor cranks its shaft around, not how fast. Think of using a wrench on a stubborn bolt: a long wrench with a hard push gives lots of torque; a short flick of the wrist gives little. It is the same with motors. A motor can spin freely and quickly yet still be 'weak' if it gives up the moment you press against it; another might turn slowly but shove with enough force to lift a heavy load. Torque is measured in newton-metres (N·m) — roughly, the force times the distance from the center where it acts.

An electric motor's torque is not fixed; it changes with how fast the motor is spinning. The faster it turns, the less torque it can spare; the slower it turns, the more it can push. The extreme of this is stall torque: the maximum twisting force the motor delivers at zero speed — the instant it is being held completely still, fighting hard but not moving. Picture pushing against a locked door with all your strength: maximum force, zero motion. That is exactly the stall point. It is the most a motor can ever push, but it is also dangerous to sit there long: at stall the motor draws huge current and turns nearly all of it into heat, so it can quickly burn out if held against an immovable object.

Also calledtorquestall torque转矩轉矩

A motor unit is a single motor neuron — a nerve cell that tells muscles to contract — together with every muscle fiber that this one nerve cell reaches and controls. Think of it as a puppeteer holding a fistful of strings: the neuron is the hand, and each muscle fiber is a string. When the neuron fires a command, all of its fibers tug at once, in perfect unison. They are an all-or-nothing team — you cannot make just half of them squeeze. The motor unit is the smallest piece of muscle activity your nervous system can switch on, the basic on-off building block of every movement you make.

Motor units come in different sizes, and that is how your body controls force smoothly. A unit that moves your eye or a fingertip may have just a handful of fibers, letting you make tiny, precise adjustments; a unit in a big thigh muscle may control hundreds or thousands of fibers, delivering raw power. To lift something gradually heavier, your brain first switches on the small, gentle units, then recruits larger ones as needed — a tidy rule called the size principle. By choosing how many units to turn on, and how fast each one fires, your nervous system dials the strength of a muscle from a feather-light touch all the way up to a full-strength heave.

Also called运动元運動元

The mu rhythm is a brainwave of roughly 8 to 13 cycles per second, picked up over the sensorimotor cortex — the touch-and-movement strip near the top of the head. When that region is idling, the rhythm hums along steadily, a bit like an engine ticking over at rest.

Its useful quirk is what happens when you act. The moment you move — or even just vividly imagine moving — the mu rhythm drops in strength, as if the engine revs and the idle hum fades. After you stop, it rebounds, often overshooting its baseline before settling. This reliable dip-and-rebound is the same idea as event-related desynchronization and resynchronization.

Because that dip is so dependable and shows up even for imagined movement, the mu rhythm is the workhorse signal of motor-imagery BCIs. A user pictures squeezing the left or right hand, the system spots which side's mu rhythm dropped, and uses it as a command — no actual movement required.

Also calledmu wavesensorimotor rhythmSMRμ 节律μ 節律mu 节律感觉运动节律

A multi-chip module is a way to build one big quantum processor out of several small ones. Instead of fabricating every qubit on a single large die and hoping it all comes out perfect, you make a handful of smaller qubit chiplets, test each one on its own, throw away the duds, and mount only the good survivors side by side on a shared carrier so they wire up and act as a single machine. Picture building a wall from pre-inspected bricks rather than pouring one enormous slab and praying it has no cracks.

The reason this helps comes down to yield. On a single big die, one bad qubit, one lossy junction, or one element landing at the wrong frequency can spoil the whole chip, and the chance of at least one defect climbs fast as the die grows. Split the design into chiplets and a failure costs you only that small tile, not the entire processor — and you can pre-screen tiles for the right frequencies and coherence before committing them. The tiles sit on a common carrier or interposer that routes signals between them, usually joined by flip-chip bumps or short superconducting links, so a control line entering the module can reach a qubit several tiles away.

The honest catch is that the seams are hard. A chip-to-chip junction adds a little loss, a little reflection, and a mechanical joint that has to survive being cooled to a fraction of a degree above absolute zero, and a coupling that crosses between tiles is almost always weaker and noisier than one inside a tile. So an MCM trades a yield problem for an interconnect problem: real modules exist and are an active path to scaling, but stitching tiles together without quietly degrading the qubits at the boundary is still very much unsolved engineering.

Also calledchiplet-based quantum processormodular quantum chipMCM多芯片模组小芯片量子处理器多晶片封裝小晶片量子處理器

Light has a stubbornness built into physics: you cannot cleanly print lines finer than roughly the wavelength you print with allows. For years the industry pushed features far below that comfortable limit using 193nm light, and eventually the gap got so wide that a single exposure simply blurred adjacent lines into each other. Multi-patterning is the workaround. Instead of printing all the closely-spaced lines in one shot, you split them across two, three, or four separate exposures, each one printing a coarser, well-spaced subset that the optics can resolve. Picture painting a picket fence through a stencil whose slots are too fat to sit side by side: you paint every other picket, shift the stencil, and paint the ones in between. Two easy passes give you a fence twice as dense as either stencil could manage alone.

The catch is everything that hangs off the word 'separate.' Each exposure needs its own mask, and the self-aligned variants add rounds of deposition and etch to grow and trim sacrificial spacers that define where the real lines land. So one logical layer that EUV might print in a single step can balloon into two-, three-, or four-times the masks, plus the extra process steps between them. More masks mean more money, more time through the fab, and more chances for something to go wrong: every added step is another place for a particle, a misalignment, or an etch variation to creep in, and overlay error (how perfectly the second pattern lands on top of the first) becomes a yield-killer all its own.

This is precisely the limit EUV was built to relieve. Moving from 193nm light to EUV's 13.5nm wavelength shrinks the resolvable feature dramatically, so a layer that once demanded quadruple patterning can collapse back to a single EUV exposure. But EUV did not abolish multi-patterning, it just pushed it back: at the 5nm node and below, and on the very tightest layers even with EUV, fabs still reach for double patterning, and high-NA EUV will face the same tug-of-war on its first generation. Multi-patterning is the honest, expensive answer the industry kept giving while waiting for shorter-wavelength light to catch up to where the transistors had already gone.

Also calledmultiple patterningdouble patterningLELESADPSAQP

Multi-robot coordination is everything that keeps a group of robots acting as one coherent team rather than a crowd of strangers tripping over each other. Put several robots in the same space and, without coordination, they will block doorways, fight over the same task, and waste effort. Coordination is the set of mechanisms — sharing information, taking turns, staying out of each other's way, and aiming at the same goal — that turns that crowd into a team. It is the difference between a chaotic kitchen and one where cooks call out, hand off pans, and never collide.

Four threads run through it. Communication lets robots tell each other where they are and what they intend, by radio or even just by what they can see. Synchronization keeps their timing aligned, so a hand-off happens when both robots are ready, not a beat too early. Conflict avoidance keeps them from crashing or grabbing the same object — like cars obeying traffic rules at a junction. And shared goals make sure each robot's local choice actually adds up to the mission everyone is meant to accomplish.

Coordination can be arranged from the top down or the bottom up. A leader or central planner can hand out instructions, which is tidy but fragile; or the robots can negotiate among themselves — bidding for jobs, signaling intentions, following right-of-way rules — which is more robust and scales better but is harder to design and predict. Either way, good coordination is what lets adding more robots speed the work up instead of grinding it to a confused halt.

Also calledrobot coordination机器人协同機器人協同

A multi-robot system is a group of robots that work together on a shared job, instead of one robot doing everything alone. Think of a single delivery truck versus a fleet of small couriers: the fleet can cover a neighborhood faster, and if one breaks down the others keep going. The whole point is that several robots, by splitting up the work and helping each other, can do more, do it quicker, or keep working when one of them fails.

There are two big ways to organize such a team. In a centralized setup, one brain — a central computer or a leader robot — watches everything and tells each robot exactly what to do; this is simple to reason about but it falls apart if that brain crashes or the network to it goes down. In a decentralized setup, every robot makes its own decisions from what it can see and hear locally, talking only to nearby teammates; no single failure stops the group, but getting them all to pull in the same direction is harder. Most real systems sit somewhere in between, borrowing a little from each.

The payoff is real but so are the headaches. Many robots can blanket a large area, carry a load too big for one, or build in backup so the mission survives a breakdown. In return you must handle robots bumping into each other, sharing limited radio bandwidth, agreeing on who does what, and the simple fact that the more robots you add, the more ways things can go wrong at once. Designing a good multi-robot system is largely about keeping that coordination cost from swallowing the benefit of having more hands.

Also calledMRSrobot team机器人团队機器人團隊

Multi-robot task allocation is the problem of deciding which robot does which job, when a team of robots faces a pile of work. Imagine a warehouse with ten delivery robots and forty packages to move: someone — or some piece of software — has to hand out the packages so the whole job finishes fast, nobody trips over each other, and no robot sits idle while another is swamped. That deciding, done well and done over and over as new jobs appear, is task allocation.

The hard part is that the best answer depends on everything at once: how far each robot is from each job, how much battery it has left, whether two jobs are easier done by the same robot in one trip, and the fact that the situation keeps changing. A simple rule like 'every robot grabs the nearest job' is fast but can leave the team badly balanced. So roboticists look for assignments that minimize total time, total distance traveled, or some other cost — a tug-of-war between giving each robot a fair load and getting the whole job done quickly.

A popular family of solutions borrows the idea of an auction, or market. Each job is put up for 'bid'; every robot calculates how cheaply it could do that job (in time or energy) and bids that number; the job goes to the lowest bidder, and the process repeats for the next job. No central boss has to know everything — robots only need to compare bids — so these market-based methods keep working even as robots join, drop out, or discover the world is not what they expected.

Also calledMRTAtask assignment任务指派

Multi-sensor fusion is the art of combining several imperfect sensors into one estimate that is better than any of them alone. No single sensor tells the whole truth: a GPS knows roughly where you are but jitters and dies indoors; wheel sensors track tiny movements smoothly but slowly drift wrong; a camera sees rich detail but gets fooled by glare. Fusion is like a jury weighing several flawed eyewitnesses — by pooling their accounts and trusting each in proportion to its reliability, you arrive at a verdict sturdier than any lone witness could give.

The reason it works is that different sensors fail in different ways, so their errors tend to cancel rather than pile up. One sensor's weakness is often another's strength: the camera fills in where GPS drops out, the wheel sensors smooth over the GPS jitter, and the GPS catches the slow drift the wheels can't feel. Crucially, good fusion does not just average the readings — it weights each one by how much it can be trusted in the moment, leaning on the sharp, reliable sources and discounting the noisy ones, much like the balancing a Kalman filter performs.

Fusion is what lets self-driving cars, drones, and phones feel sure of where they are and how they are moving. A car blends GPS, wheel odometry, an inertial unit, cameras, and radar into one steady picture of its position and speed; your phone fuses its accelerometer, gyroscope, and compass so the map arrow points the right way and holds steady. The deeper lesson is that more sensors do not just add information — combined well, they actively cancel each other's blind spots.

Also calledsensor fusion数据融合資料融合

Multiple sclerosis (MS) is a long-lasting disease in which the body's own immune system mistakenly attacks the brain and spinal cord — the central nervous system, which is the headquarters that processes thoughts, senses, and movement. The immune system normally fights off germs, but in MS it turns on a fatty wrapping called myelin that coats the body's nerve fibers. Think of myelin like the plastic insulation around an electrical wire: it lets signals zip along quickly and cleanly. When the immune system strips that insulation away — a process called demyelination — the underlying wire is left bare and damaged, so messages slow down, get garbled, or stop getting through at all.

Because the brain and spinal cord control so much, this damage can show up almost anywhere, and it differs from person to person: blurred or double vision, numbness or tingling, weakness, clumsy balance, deep fatigue, or trouble thinking clearly. The disease earns its name from the scattered patches of hardened scar tissue (called sclerosis, from the Greek for hardening) it leaves behind in many places throughout the nervous system. In its most common early form, symptoms come and go in flare-ups separated by quieter periods of partial or full recovery; over years, however, the bare nerve fibers themselves can wither, and the damage may build into steadily growing, lasting disability.

There is no cure yet, but MS is no longer untreatable. Medicines that calm or redirect the overactive immune system can reduce how often flare-ups strike and slow the long-term decline, while other treatments and rehabilitation help people manage day-to-day symptoms. MS most often begins in young adulthood and affects women more than men, and although its exact trigger is still unknown, scientists believe it grows out of a tangle of genetic susceptibility and environmental factors — including low vitamin D, smoking, and a common virus called Epstein–Barr.

Also calledMS多發性硬化多发性硬化

Picture a railway switchyard where several tracks all feed toward a single outgoing line. A switch operator throws a lever, and exactly one incoming track gets connected through to that line while the rest are ignored. A multiplexer is that switch operator in silicon: it has several data inputs, one output, and a separate select input whose job is to pick which one of the data inputs gets passed through to the output. Change the select value and you instantly reroute a different input to the same output wire.

More precisely, a multiplexer (almost always shortened to mux) is a combinational building block: in its common power-of-two form it has 2ⁿ data inputs, n select lines, and one output. The n select bits form a binary address — with two select bits you can name input 0, 1, 2, or 3, and the mux drives whichever one you addressed straight onto the output. (Widths that aren't a power of two, like a 3-to-1 mux, are perfectly ordinary too; they just leave some addresses unused.) Because the choice depends only on the current inputs — there is no memory — a mux settles to its answer as soon as the signals propagate through its gates. Internally it is just a small nest of AND, OR, and NOT gates, but you almost never draw it that way; "mux" is the unit you reason in.

The mux is the fundamental choose primitive of digital design, and it shows up everywhere once you start looking. Every time hardware has to ask "use this value or that one?" — selecting which register feeds an arithmetic unit, steering one of many results back to a CPU's output, or implementing the `if`/`case` choice you wrote in Verilog — a synthesis tool almost certainly built a mux to do it. Its mirror image is the demultiplexer, which takes one input and routes it out to one of many destinations.

Also calledmuxdata selectorselector多路复用器多工器数据选择器資料選擇器

Neurons — the signaling cells of the nervous system — come in different shapes, and one of the oldest ways to sort them is simply by counting the wires sticking out of the cell body. The cell body, called the soma, is the rounded central part that holds the nucleus. The wires growing out of it are its processes: thin branches that either gather incoming signals (dendrites) or carry the outgoing signal away (the axon). Count those stalks where they leave the soma, and a neuron falls into one of three classic groups — multipolar, bipolar, or unipolar.

A multipolar neuron has many processes leaving the soma — typically one axon and a whole bush of dendrites — like a tree with one deep root and a wide crown. This is by far the most common type in the brain and spinal cord, well suited to collecting input from thousands of partners at once; the motor neurons that drive your muscles are a familiar example. A bipolar neuron has exactly two processes, one at each end of the soma, like a bead threaded on a string — one branch brings information in, the other sends it on. Bipolar cells are rarer and show up in dedicated sensory pathways, such as the retina of the eye and the parts of the nose and inner ear that handle smell and balance.

A unipolar neuron has just a single process emerging from the soma. In invertebrates many neurons are truly unipolar, but in our own bodies the important version is the pseudounipolar neuron ("pseudo" meaning false): it starts out with two processes in early development that later fuse into one stalk, which then splits like a T a short distance from the cell body. These carry touch, temperature, and pain signals from your skin and joints inward toward the spinal cord, with the soma tucked off to the side rather than sitting in the signal's path. Sorting neurons this way is a description of form, not function — but form hints at the job, since the number and arrangement of branches shapes how a cell gathers and relays its messages.

Also calledneuron morphology classesstructural neuron typespseudounipolar neuron神经元形态分类神经元结构类型假单极神经元神經元形態分類神經元結構類型假單極神經元

A muscle spindle is a tiny sensor buried inside your muscles that tells your nervous system how stretched the muscle is and how fast that stretch is changing. Picture a few thin, specialized muscle fibers wrapped in a slim capsule and laced with nerve endings, tucked among the ordinary fibers that do the actual lifting. When the whole muscle lengthens, these little fibers are pulled along with it, and the nerve endings fire off a stream of signals. The more the muscle is stretched, the busier the signals get — so the spindle acts like a built-in ruler reporting muscle length moment by moment.

What makes the spindle clever is that it reports two things at once: the current length, and the rate of change of that length. Stretch the muscle slowly and it sends a steady update; stretch it suddenly and it bursts out a sharp warning that movement is happening fast. This is the heart of the knee-jerk reflex a doctor tests with a small hammer: the tap stretches the muscle quickly, the spindles shout, and the spinal cord answers by ordering that same muscle to contract — all before your brain is even told. Beyond reflexes, spindles feed the steady sense of where your limbs are and how they are moving, called proprioception, which is why you can touch your nose with your eyes closed.

Spindles also have their own tiny motor supply, so the brain can keep them tuned. By gently tightening the spindle's inner fibers, the nervous system can adjust the sensor's sensitivity as a muscle shortens during movement, keeping it alert instead of going slack. In this way the muscle spindle is not just a passive gauge but an adjustable one — a key reason your movements stay smooth, your balance holds, and your muscles resist being yanked out of position.

Also calledstretch receptormuscle stretch receptor牵张感受器牽張感受器肌肉牵张感受器
See alsoreflex arc

A mutation is a change in a cell's DNA — a tiny typo in the instruction manual that life copies and passes on. One letter of the genetic code gets swapped, dropped, or added, and that small edit can ripple out into a real difference.

Most mutations do nothing noticeable, or nothing at all — the code has built-in slack. A few are harmful, and once in a while one happens to be useful. Which it turns out to be depends entirely on the situation, not on the mutation itself.

Here's the part people miss: a mutation isn't "bad" by nature. It's just change. In fact, mutations are the raw material evolution works with — without these typos, there'd be no variety for nature to select from, and living things could never adapt.

Also calledgenetic mutationDNA mutationpoint mutationgenetic variant基因突变基因突變

A myelin sheath is a fatty wrapping that coats the long output cable of a nerve cell, the part called the axon, much the way plastic insulation coats a copper wire. It is not made by the nerve cell itself. Instead, helper cells called glia (support cells that surround and care for neurons) flatten themselves out and wind round and round the axon, layer upon layer, until the cable is sealed in a thick, pale, greasy jacket. Because this fatty coat is whitish, the parts of the brain and nerves that are heavily wrapped look pale, which is why they are called white matter.

The point of all that insulation is speed. An electrical signal traveling down a bare axon leaks and fades as it goes, so it crawls. Myelin plugs those leaks, but it does something cleverer too: the sheath is not one unbroken tube. It comes in segments with tiny bare gaps between them, called nodes, and the signal jumps from gap to gap instead of oozing along every inch. That hopping makes nerve messages race far faster, sometimes more than a hundred times quicker than they would in an unwrapped fiber, while using less energy. Two different glia do the wrapping: oligodendrocytes inside the brain and spinal cord, and Schwann cells out in the body's nerves.

When myelin is damaged, signals slow down, scramble, or stop, which is why losing it causes serious trouble. In multiple sclerosis, for example, the body's own immune system strips myelin from nerves, and the result can be blurred vision, numbness, weakness, or problems with balance, depending on which cables are affected. Healthy myelin, then, is one of the quiet reasons your nervous system can react in a blink rather than a sluggish moment.

Also calledmyelinmedullary sheath髓磷脂神经髓鞘神經髓鞘

The myelination timeline is the slow, uneven schedule on which the brain wraps its wiring in myelin — a fatty insulating sheath that lets electrical signals race along nerve fibers many times faster. Think of it like a city laying down high-speed fiber-optic cable: the lines are not all installed at once. Instead, the work is spread over decades, neighborhood by neighborhood, starting before birth and finishing only in early adulthood.

The order is not random — it tends to follow what the brain needs first. Regions handling basic survival and the senses, like the brainstem and the pathways for hearing, sight, and movement, get insulated early, often in the first year or two of life. The big association areas that handle reasoning, planning, and self-control — especially the prefrontal cortex behind the forehead — are insulated last, with the work continuing into the mid-twenties. This protracted, back-to-front schedule is one reason teenagers can be sharp and capable yet still struggle with impulse control and long-term planning: the cabling for those skills is literally still being finished.

Because the timeline stretches across so many years, it also leaves a long window in which things can go off track. Premature birth, poor nutrition, certain illnesses, or toxins can slow or disrupt myelination, and in later life the sheaths can thin or break down, which is part of why processing speed gradually drops with age. Studying this schedule helps researchers understand normal growing-up, learning disabilities, and disorders such as multiple sclerosis, where myelin is attacked.

Also calledmyelination schedulemyelin maturation timeline髓鞘化时间表髓鞘化時間表
N

A Nash equilibrium is a kind of stand-off: a situation where everyone has picked a strategy, and no single person can do any better by quietly changing theirs while everyone else stays put. Picture drivers choosing which side of the road to drive on. Once everyone is driving on the right, no lone driver gains anything by switching to the left — they'd just cause a crash. That settled, no-one-wants-to-budge state is the equilibrium.

It matters because it tells us where a tangle of self-interested choices tends to come to rest. The famous prisoner's dilemma is the sharp example: two suspects, questioned separately, would both be better off staying silent — but each, acting alone, is tempted to betray the other, and both confessing is the Nash equilibrium. The unsettling lesson is that a stable outcome can leave everybody worse off than they could have been.

A common misreading is that a Nash equilibrium must be the best result for the group, or that it's some cosy agreement. It's neither. It's simply a balance point where no individual can improve their own lot by acting alone — even if, all together, they could clearly do better by cooperating.

Also calledNash solutionequilibrium point纳什平衡納什平衡non-cooperative equilibrium

Natural selection is the simple reason living things fit so well into their world. Within any group, individuals differ — a little faster, a little hardier, a slightly better color for hiding. The ones whose differences help them survive and have young in their particular surroundings leave behind more offspring, and since those helpful traits get passed down, they become more common with each generation. Repeat this for a long time and a whole population slowly shifts.

It's worth clearing up the famous phrase 'survival of the fittest.' It doesn't mean the biggest or strongest wins. 'Fit' just means well-matched to where you live — and what really counts isn't merely surviving but successfully reproducing. An animal that lives long but never breeds passes nothing on; a frail one that raises many young shapes the future. So the engine is differential reproduction: who leaves more descendants.

And nothing here is planned. Nature isn't aiming at a goal or trying to improve anyone. The variation comes first, by chance; the environment simply lets some versions copy themselves more than others. There's no designer choosing — just the patient, blind arithmetic of who survived and bred, playing out over countless generations.

Also calledsurvival of the fittestDarwinian selectiondifferential reproductionnatural selection vs artificial selection

Nature vs nurture is the old question of what makes us who we are: the genes we're born with (nature), or everything that happens to us afterward — family, friends, schooling, luck (nurture). Think of a person as a garden. Nature is the packet of seeds; nurture is the soil, sun, and rain. Stare at either one alone and you can't say what will grow.

For most of the last century people treated it as a tug-of-war, as if a trait had to be either 100% inborn or 100% learned. Height, temperament, intelligence, shyness — each got yanked to one side or the other, and the argument got political fast. The trouble is that the rope was never the right picture.

Today scientists see almost nothing as either/or. Genes and environment are partners that shape each other constantly: a child's inborn curiosity pulls books toward her, and those books then reshape her brain. A common misreading is that "genetic" means "fixed" — but genes set tendencies, not destinies, and a nurturing world can amplify, mute, or completely rewrite what the seeds were leaning toward.

Also callednature and nurturegenes vs environmentheredity vs environment先天与后天基因与环境遗传与环境先天與後天遺傳與環境

A navigation stack is the full bundle of software that turns a simple command like 'go to the kitchen' into the steady stream of steering and speed commands a mobile robot needs to actually get there. It is called a 'stack' because it is built as a tower of cooperating layers, each handling one job and passing its result up or down to the next, the way an order at a restaurant flows from the customer to the waiter to the kitchen to the cook. No single piece does everything; navigation works only because all the layers are wired together into one pipeline.

Reading roughly from bottom to top, the stack pulls in a map of the space and a constant estimate of where the robot currently is on it (localization). It builds a costmap marking where it is safe or risky to drive. A global planner then sketches a rough route across the whole map from the robot to the goal, while a local planner repeatedly fills in the fine, immediate steering — choosing exactly how to curve, slow, and dodge over the next second or two — and reacts to anything the global plan didn't know about, like a person crossing the path. The output is a flow of velocity commands sent to the wheels, and the whole loop repeats many times a second so the robot keeps correcting as the world changes.

Treating navigation as a reusable stack is powerful because the same overall structure can drive very different robots — a home vacuum, a warehouse cart, a sidewalk delivery bot — by swapping individual layers in and out. A famous example is the navigation system in ROS (the Robot Operating System), a widely shared open-source toolkit, where teams mix and match planners and tune the costmaps for their own machine rather than rebuilding navigation from scratch.

Also callednav stacknavigation pipeline导航软件栈

Negative feedback is the trick that turns a wild, imprecise amplifier into a calm, trustworthy one. The idea sounds almost too simple: take a fraction of the output, flip its sign, and feed it back to fight the input. Picture steering a car on the highway — you don't compute the exact wheel angle in advance; you watch the lane, and the moment you drift, you nudge back. The correction is driven by the error itself, so the system constantly hunts toward where you want it. An amplifier wrapped this way stops obeying its own messy, temperature-dependent, part-to-part-varying raw gain and starts obeying the feedback network you built from precise resistors instead.

The deal you're making is to spend gain to buy everything else. A bare op-amp might have an open-loop gain A of 100,000 — enormous, but sloppy: it sags with temperature, drifts between chips, and falls off with frequency. Feed back a fraction β of the output and the closed-loop gain becomes A/(1 + Aβ). The product Aβ is the loop gain T, the amount of correction available, and when T is large the whole expression collapses to roughly 1/β — set purely by your resistor ratio, not by the unreliable A. That same large loop gain is what divides down distortion, flattens the response, widens the usable bandwidth, and stabilizes the input and output impedances. You threw away most of your raw gain on purpose, and got precision, linearity, and predictability back in exchange.

This is the quiet principle that makes analog reliable from imperfect parts. You can't manufacture a transistor whose gain is exact, but you can manufacture two matched resistors, and negative feedback lets the trustworthy ratio override the untrustworthy device. The catch — and the reason phase margin, dominant-pole, and Miller compensation exist — is that the fed-back signal arrives delayed. If the loop gain is still above one when the phase has slipped a full half-turn, your subtraction quietly becomes addition and the amplifier oscillates instead of settling. So feedback is never free: you design for enough loop gain to be accurate, and enough phase margin to stay stable while you do it.

Also calledfeedbackclosed-loop

The Nernst equation is a simple formula that answers one focused question about a single kind of charged particle (an ion, like sodium or potassium): given how much of it sits inside the cell versus outside, what voltage across the cell's thin outer skin (the membrane) would make that ion stop moving on average? Picture a crowd squeezed into one room and almost empty in the next, with a door between them. The packed crowd naturally pushes toward the emptier room. But if these people carry electric charge, you can set up an electrical pull at the door that pushes back just hard enough to cancel the crowding. The voltage that exactly balances those two opposing pushes — the chemistry pull from a difference in concentration, and the electrical pull from a difference in charge — is called that ion's equilibrium potential, and the Nernst equation is how you calculate it.

In its usual form the equation is E = (RT / zF) × ln([ion]outside / [ion]inside). Here E is the equilibrium voltage you are solving for; R is a fixed gas constant and T is temperature, so RT measures how vigorously particles jostle from heat; F is a fixed number that converts amounts of charge; z is the ion's charge (for example +1 for sodium or potassium, +2 for calcium, −1 for chloride); and ln is the natural logarithm, a way of turning a ratio of the two concentrations into a number. The whole thing says: the bigger the imbalance between inside and outside, the larger the voltage needed to hold that ion still — and the sign of the charge decides which way the voltage points. This single-ion answer is the building block for understanding the resting voltage of neurons and the rapid voltage swings that carry their signals.

Also calledequilibrium potential equationNernst potential能斯特电位方程能斯特電位方程

A nerve net is the simplest kind of nervous system known: a loose web of nerve cells spread evenly throughout an animal's body, with no brain and no central command post. It is the kind of nervous system found in jellyfish, sea anemones, corals, and hydra — soft-bodied sea creatures called cnidarians. Instead of wiring all the nerves toward one control center, the cells form a thin mesh, a bit like a fishing net laid just under the skin, where each knot in the net is a nerve cell connected to its neighbors in every direction.

Because the connections run every which way rather than toward a head, a signal can spread outward from wherever it starts and ripple across the whole body, like the rings that spread when you drop a pebble into a pond. This lets a jellyfish pulse its whole bell at once to swim, or an anemone pull in its tentacles when touched, without needing a brain to decide and direct. The trade-off is that there is no single place to store memory or plan ahead, so the responses are mostly simple, automatic reactions to whatever the body bumps into.

The nerve net matters to scientists because it is widely seen as the earliest form of nervous-system organization to appear in animal evolution — the starting point from which more centralized designs later grew. In animals that came afterward, nerve cells gradually clustered together into bundles and then into a brain, concentrating control in one place. Studying the simple, decentralized nerve net therefore offers a living glimpse of how nervous systems may have begun, before brains existed at all.

Also calleddiffuse nervous system弥散神经系统彌散神經系統网状神经系统網狀神經系統

A nerve and a tract are basically the same thing — a bundle of axons, the long wire-like extensions that carry neurons' signals — but they get different names depending on where in the body the bundle runs. A nerve is a bundle of axons out in the peripheral nervous system, the wiring outside the brain and spinal cord. A tract is a bundle of axons inside the central nervous system, meaning within the brain and spinal cord itself.

Think of it like a cable of wires. Out in your arms, legs, and torso, those cables are wrapped in tough connective tissue and called nerves — the sciatic nerve in your leg or the optic nerve from your eye are familiar examples. Once that same kind of cable is bundled up inside the brain or spinal cord, anatomists stop calling it a nerve and start calling it a tract, such as the corticospinal tract that carries movement commands down from the brain. The name flips at the border between the central and peripheral nervous systems.

This naming rule is part of a wider pattern: many structures get one label inside the central nervous system and a different label outside it. A clump of neuron cell bodies, for instance, is called a nucleus inside the central nervous system but a ganglion outside it. Knowing that nerve means peripheral and tract means central saves a lot of confusion when you read anatomy, because the word itself tells you which side of the dividing line you are looking at.

Also callednervetractnerve fiber bundle神经传导束神經傳導束神经纤维束

The nervous system is your body's communication network — the wiring and control center that lets every part of you sense the world, react to it, and stay in sync. Think of it like the combination of a country's internet and its government: countless thin cables (nerves) carry messages back and forth, while a central headquarters (the brain and spinal cord) takes everything in, decides what to do, and sends out orders. When you touch something hot, feel hungry, recognize a friend's face, or breathe without thinking, the nervous system is doing the work.

It is built from special cells called neurons that pass signals to one another using tiny electrical pulses and chemical messengers, supported by helper cells that feed, protect, and insulate them. Roughly, it splits into two parts: the central nervous system — the brain and spinal cord, which is the headquarters that processes and decides — and the peripheral nervous system, the spreading web of nerves that reaches out to skin, muscles, and organs to gather information and deliver commands. Together they handle three big jobs: taking in sensation (what is happening), producing action (moving and responding), and quietly regulating the body's inner workings like heartbeat, digestion, and temperature so the whole system keeps running smoothly.

Also calledneural system神经系神經系

Nervous-system homeostasis is the way your brain works like a thermostat for the whole body, quietly keeping your inner conditions steady no matter what is happening outside. Your body has comfortable target ranges for things like temperature, blood pressure, blood sugar, water, and oxygen, and the nervous system constantly watches all of them. The moment a reading starts to drift too high or too low, the brain nudges the body back toward the middle, usually before you ever notice anything is off.

It runs as a control loop with three repeating steps: sense, compare, and correct. Special sensors report the current state, the brain (especially a deep region called the hypothalamus) compares that reading against the target it wants to hold, and then it sends out commands to fix any gap. If you get too hot, it makes you sweat and flushes your skin; if you get too cold, it makes you shiver and tightens the blood vessels in your skin to save heat. This kind of self-correcting feedback is the same idea behind a home thermostat that switches the heater on and off to hold a set temperature.

Most of this work happens automatically, through the part of the nervous system that runs without conscious effort, so you stay alive and balanced while your attention is busy elsewhere. When this balancing breaks down, the effects show up fast, in fevers, dangerous swings in blood pressure, or a body that can no longer hold its own temperature, which is why steady internal control is treated as one of the brain's most basic and vital jobs.

Also calledneural homeostasishomeostatic control by the brain脑的稳态调节腦的穩態調節神经系统稳态调控神經系統穩態調控

The neural basis of emotion is the set of brain circuits that create, express, and shape your feelings, from a flash of fear to a slow glow of contentment. There is no single "emotion spot" in the brain. Instead, a feeling is built by several regions working together, like a band where no one instrument is the whole song. When something happens, these circuits decide how much it matters to you, color it with a feeling, and ready your body to act, all in a fraction of a second and mostly before you can put it into words.

A few players come up again and again. The amygdala, a small almond-shaped cluster deep in the brain, is quick to flag things that matter, especially threats, and helps kick off a fast bodily reaction. Reward-related areas deep in the brain light up for things you want or enjoy, using a chemical called dopamine to mark "good, do that again." The hypothalamus and brainstem turn feelings into physical changes, a pounding heart, a flushed face, a tightened gut. Sitting over all of this, the prefrontal cortex, the thoughtful front part of the brain, weighs the situation and can dial a feeling up or down, which is how you can calm yourself or hold back a reaction. Memory regions, such as the hippocampus, tie feelings to where and when they happened, so a smell or a place can pull an old emotion right back.

Calling it "distributed" means the work is spread across this network rather than locked in one place, and the same parts can take part in many different emotions depending on how they fire together. That is why feelings are so flexible and so personal, and why no neat one-to-one map of "this spot equals this emotion" has ever held up. Understanding these circuits matters far beyond the lab: when they become unbalanced, the result can be conditions such as anxiety, depression, post-traumatic stress, and addiction, and much of modern treatment, from talk therapy to medication, works by nudging this same emotional machinery.

Also calledemotion circuitsaffective neuroscience情绪环路情緒環路情感神经科学情感神經科學

A neural circuit is a small team of neurons wired together to carry out one specific job. The brain does not work as a single blurry blob; instead, particular nerve cells connect to particular partners through junctions called synapses, and that pattern of connections is what turns a pile of cells into a working group. A circuit might detect the edge of a shape, time the beat of your breathing, or remember which way to turn in a familiar hallway.

Think of it like a tiny electrical wiring diagram made of living parts. Signals enter the circuit, get passed from neuron to neuron, get added up, dampened, or rerouted along the way, and a useful output comes out the other end, such as a movement or a decision. The specific answer a circuit gives depends far more on how its neurons are connected than on the neurons being unusual on their own, just as a song depends on how the notes are arranged.

Neural circuits are the middle layer of brain organization: bigger than a single cell, smaller than a whole brain region. Many circuits link up into larger networks, and studying them, by watching which cells fire together and how they are joined, is one of the main ways scientists try to explain how thinking, sensing, and moving actually happen.

Also calledneural pathwaylocal circuitneuronal circuit神经回路神經迴路

The neural correlates of consciousness, often shortened to NCC, are the smallest set of brain events that are enough, all by themselves, to bring about a single conscious experience — the redness of red, the sting of a pinprick, the sound of your own name. Think of a vast concert hall full of musicians: at any moment your brain has billions of nerve cells firing, but only a particular handful, playing together in a particular way, actually produces the note you consciously hear. Scientists hunt for that handful. The goal is not to explain the whole brain, but to pin down the minimal, specific pattern of activity that reliably comes and goes exactly when a given experience comes and goes.

Researchers find these correlates by holding the outside world fixed and letting the experience change, then watching which brain activity tracks the experience rather than the stimulus. A classic trick is to show each eye a different picture: the physical input never changes, yet your conscious view flips back and forth between the two — so whatever brain activity flips along with it is a candidate correlate. Studies like these point especially to networks linking the thalamus and higher regions of the cerebral cortex, and they suggest that conscious experience depends less on a stimulus being strong and more on signals being broadcast widely and held long enough for the rest of the brain to use. Mapping these correlates matters in the clinic too: it helps doctors tell apart a patient who is truly unaware from one who is awake and experiencing but unable to move or speak.

An important caution: a correlate is a reliable companion, not yet a proven cause or a full explanation. Knowing which brain pattern shows up whenever an experience appears does not, on its own, tell us why that pattern feels like anything from the inside — the deeper puzzle of how physical activity becomes felt experience. The NCC is the careful, measurable first step: find the footprints reliably, before claiming to know who left them.

Also calledNCCminimal neural substrate of experience意识相关神经活动意識相關神經活動

Neural data is the recording of brain activity that a brain–computer interface collects — voltages from the scalp, signals from electrodes on or in the cortex, or the patterns a system extracts from them. Like a photo captures light, neural data captures a trace of what your brain was doing.

What makes it unusual is how intimate it is. It comes directly from the organ behind your thoughts and feelings, and even when it cannot reveal a specific thought today, the same raw recordings might reveal more as tools improve. That gives it a long, uncertain shelf life compared with ordinary personal data.

So neural data raises pointed questions: Who owns it — you, the clinic, or the company? Who is allowed to use it, store it, sell it, or train models on it? And how should it be protected, so that a recording made to help you is not quietly turned to other ends?

Neural decoding is the step that turns recorded brain activity into a guess about what the person means or is experiencing — move the cursor left? pick the letter E? Think of it as translation: the brain speaks in patterns of electrical activity, and the decoder reads those patterns and says, in effect, "this looks like you want to go left." It is the core job of a brain–computer interface, the part that connects a thought to an action.

Almost always, the decoder is an algorithm that has learned from examples rather than a set of fixed rules. You show it many recordings labelled with what the person was actually doing or imagining, and it learns which features of the signal tend to go with which intention. Once trained, it can take a fresh, unlabelled snippet of brain activity and produce its best guess in real time.

Decoding is hard because brain signals are faint, noisy, and a little different every day and every person. So a decoder is rarely perfect — it gives a most-likely answer, and good systems are designed to recover gracefully when that answer is wrong.

Also calledbrain decodingdecoding脑解码腦解碼

Neural induction is the first big decision in building a brain — the moment when a sheet of plain, all-purpose skin-like cells in the early embryo is told, in effect, you are going to become the nervous system. Very early on, the embryo has an outer layer called the ectoderm, a kind of blank dough that could turn into skin or into nerve tissue. Neural induction is the signaling process that nudges one stripe of that dough down the nerve path instead of the skin path, setting aside the cells that will later fold up into the brain and spinal cord. It is like a foreman walking along a line of identical workers and tapping certain ones on the shoulder to say, your job is the wiring.

What makes it work is not a command shouted at the cells, but a quiet lifting of a brake. Left alone, ectoderm cells are constantly nudged toward becoming skin by chemical signals (in the best-studied case, a family of molecules called BMPs) that wash over them and say keep being skin. During neural induction, a nearby group of cells — a small organizing region of the embryo — releases blocking molecules that soak up those skin signals before they can land, like umbrellas held over part of the crowd. Where the skin signal is blocked, the cells fall back to their hidden default and become neural tissue, forming a flat patch called the neural plate. That patch is the raw material for the entire central nervous system, which is why this single step matters so much: get it wrong and there is no brain to build on.

Also calledneuralizationneural fate commitment神经化神經化
See alsoneuron

A neural mass model is a simplified way of describing what a whole crowd of brain cells is doing on average, instead of tracking each cell one by one. Picture a stadium full of people: you could try to follow every single spectator, but it is far easier to talk about the crowd as a whole — how loud it is cheering, whether a wave is rippling through it, how its mood swings over time. A neural mass model does the same trick for a patch of brain tissue that may hold millions of neurons: rather than computing every neuron's electrical spikes, it summarizes the group with just a few numbers, such as the average firing rate (how busily the population is sending signals) or the average voltage of the tissue. This averaging idea is what scientists call a mean-field description.

It works because neurons that sit close together and do similar jobs tend to behave alike, so their combined activity is smoother and more predictable than any one cell on its own — the random jitter of individuals washes out, leaving a clean group signal. A typical model uses a small set of equations that say how the population's average activity rises and falls over time, how excitatory groups (which push their neighbors to fire) and inhibitory groups (which quiet them down) tug against each other, and how the rhythms that emerge can speed up, slow down, or fall into oscillations. Because it is so compact, it can be run for large stretches of brain and long spans of time on an ordinary computer.

This makes neural mass models a favorite tool for studying brain rhythms and large-scale activity: they help explain the waves seen in an EEG (a recording of the brain's electrical rhythms from the scalp), shed light on conditions like epileptic seizures where whole regions fire in runaway synchrony, and form the building blocks of whole-brain simulations that connect many such populations together. The trade-off is that, by smoothing away individual neurons, the model gives up fine detail — it tells you what the crowd is doing, not what any single person in it is up to.

Also calledmean-field modelneural population model平均场模型平均場模型神经群模型神經群模型

A neural network is a kind of pattern-finding machine built from layers of tiny, simple units called "neurons." Picture a long line of switchboards: numbers come in the front, each connection has a dial called a weight that turns its signal up or down, and the result passes to the next layer, then the next, until an answer pops out the back. No single neuron is clever — the smarts live in how millions of them are wired together.

It learns the way you might learn to throw darts blindfolded: take a guess, find out how far off you were, and nudge every dial a touch in the direction that would have helped. Show it thousands of labeled examples — cat photos, spam emails, spoken words — and those small nudges slowly tune the weights until the whole network reliably gets the right answer. Nobody writes the rules by hand; the network discovers them by adjusting its own connections.

It's called "neural" because the idea was loosely inspired by the brain, but the resemblance is gentle, not literal — these are clean little sums and curves, not living cells, and a real neuron is far richer. Still, this simple recipe of stacked layers and adjustable weights is the engine behind most of modern AI, from the app that recognizes your face to the models that hold a conversation.

Also calledartificial neural networkANNneural net人工神经网络神经网人工神經網路類神經網路

Neural noise and variability is the surprising fact that a brain cell almost never reacts the exact same way twice, even when you show it the exact same thing. Flash the same picture, play the same tone, or tap the same spot on the skin a hundred times, and the neurons that respond will fire a slightly different number of pulses each time, with slightly different timing. If you imagine each neuron as a person clapping in response to a cue, the brain is less like a precise machine and more like an audience: everyone claps, but never with quite the same rhythm or loudness on any given round. Scientists call this trial-to-trial variability, and it is one of the most basic features of how real brains behave.

Where does the wobble come from? Some of it is genuine randomness inside the cells — ions trickle through tiny channels in a jittery way, and the chemical handoffs between neurons sometimes succeed and sometimes fail, like a slightly unreliable game of telephone. But much of it is not really random noise at all; it is the brain being busy. A neuron's response also depends on your attention, your mood, how tired you are, what you just saw a moment ago, and the constant background chatter of millions of other cells. So the same stimulus lands on a brain that is in a slightly different state each time, and the response shifts to match. Telling apart the truly random part from this meaningful state-dependent part is a major puzzle in neuroscience.

This variability matters because it sets a limit on how reliably the brain — and any scientist or device reading the brain — can tell signals apart. If two similar stimuli each produce overlapping, fuzzy ranges of responses, it becomes harder to know which one occurred from a single trial. To cope, brains and researchers both lean on averaging: pooling the responses of many neurons, or repeating a measurement many times, so the steady signal adds up while the random jitter partly cancels out. Far from being a mere nuisance, this variability is now thought to carry information of its own — about uncertainty, expectation, and how flexibly a circuit can respond — which is why it sits at the heart of modern theories of neural coding.

Also calledtrial-to-trial variabilityresponse variability试次间变异试次间变异性試次間變異神经反应变异性神經反應變異性

A neural oscillation is a rhythmic rise and fall of activity shared across a large group of neurons firing roughly in step. Like a stadium crowd clapping together, the synchronized beat is far easier to detect than any single hand. These rhythms are exactly the "brainwaves" an EEG picks up from the scalp.

Oscillations are sorted by speed into named frequency bands — delta, theta, alpha, beta, gamma, from slowest to fastest. Different bands tend to dominate in different states: slow delta waves swell in deep sleep, while faster rhythms accompany alert, focused thinking. So the mix of rhythms is a rough readout of what the brain is doing.

This makes oscillations a favorite signal for BCIs, especially non-invasive ones. Rather than chase individual spikes it cannot see, a scalp BCI watches how the strength of a particular rhythm rises or falls as you change what you are doing or imagining.

Also calledbrainwavebrain waveneural rhythm脑电波腦波神经振荡神經振盪脑节律

Neural population dynamics is the study of how a whole crowd of neurons changes its activity together over time, rather than looking at each cell one by one. Picture a stadium where thousands of fans hold up colored cards: no single card tells you much, but step back and the whole crowd spells out a word or a wave rolling around the bowl. In the same way, when scientists record hundreds or thousands of neurons at once — for example while an animal reaches for a cup — the interesting message is not in any one neuron's chatter but in the shifting pattern the group makes as a team.

The surprising discovery is that this group pattern is usually far simpler than it looks. Even with a thousand neurons firing, their combined activity tends to trace out a smooth path through a small number of underlying directions, the way a flock of birds with countless individuals still moves as one flowing shape you can describe in just a few words. Researchers call this a low-dimensional pattern: a handful of summary signals captures most of what the whole population is doing. By tracking how that pattern flows and bends from moment to moment, they can see a thought, a decision, or a planned movement unfold as a trajectory in this shared activity space.

Why it matters: this view often explains behavior better than studying neurons in isolation, because the brain seems to compute using these collective patterns, not lone cells. It also gives engineers a practical handle — brain–computer interfaces can read out a person's intended movement by following the population's overall trajectory instead of trying to decode every neuron separately.

Also calledpopulation-level neural activitylow-dimensional neural dynamics群体神经活动群體神經活動

A neural stem cell is a kind of starter cell for the nervous system — an unspecialized cell that can do two remarkable things at once. First, it can copy itself, making more cells just like it, so the supply never runs out. Second, it can give birth to the specialized working cells of the brain: neurons, the cells that carry electrical signals, and glia, the helper cells that feed, insulate, and protect those neurons. Think of it like a master baker who can both train new bakers (more stem cells) and bake the actual bread (the finished brain cells).

Most of these cells do their busiest work before birth, when they build the entire brain from a tiny sheet of tissue, churning out billions of neurons in a carefully timed sequence. A few quiet pockets of neural stem cells survive into adulthood, tucked into specific corners of the brain, where they can still produce a trickle of new neurons throughout life. Because they can both renew themselves and become any cell type the brain needs, scientists study them closely, hoping one day to coax them into repairing damage from stroke, injury, or disease.

Also calledNSCneural progenitor cell神经前体细胞神經前體細胞

Neural synchrony is what happens when many brain cells fire their signals at the same moments in time, like a crowd clapping in rhythm instead of at random. Each neuron sends out tiny electrical pulses, and normally a group of them might fire whenever they please, in a messy scatter. But often the brain coaxes a whole population to line up — to fire together, pause together, and fire again together — so their activity rises and falls as one. That coordinated, time-aligned firing across a group of neurons is what we mean by neural synchrony.

Why does it matter? When neurons fire in unison, their small individual signals add up into a much stronger, clearer wave that other parts of the brain can easily notice — the same way one person whispering is lost in a noisy room, but a thousand people chanting the same word at the same beat is impossible to ignore. The brain seems to use this trick to bind scattered pieces of information into one experience (the color, shape, and motion of a single object, for example) and to open temporary channels between distant regions, letting two areas exchange messages only when their rhythms match. This shared timing is also what large recordings like an EEG actually pick up: the summed beat of millions of cells rising and falling together.

Synchrony is a matter of degree, and both too little and too much can be a problem. A healthy brain keeps neurons loosely coordinated — synced enough to cooperate, but free enough to carry their own separate details. When synchrony breaks down, signals can get lost in the noise; when it runs out of control and huge numbers of cells fire in lockstep all at once, the result can be a seizure. So the brain is constantly tuning how tightly its cells march together, moment by moment.

Also calledneuronal synchronizationsynchronous firing神经元同步同步放电神經元同步同步放電

The neural tube is the simple, hollow tube of cells that an embryo builds very early on, and it is the seed from which the entire brain and spinal cord will grow. Picture a flat sheet of paper laid on a table: now imagine its two long edges lifting up, curling toward each other, and zipping shut along the middle to form a hollow drinking straw. That is roughly what happens in a developing embryo — a flat patch of cells on the back, called the neural plate, folds up and seals into a closed tube. Everything that later becomes your thoughts, senses, and movements begins as this one humble structure.

Once the tube is sealed, its two ends take on different jobs. The front end balloons out and divides into bulges that become the brain, while the long, narrow stretch behind it becomes the spinal cord — the cable of nerves running down your back. The hollow space inside the tube never disappears: it stays as the fluid-filled channels and chambers that thread through the adult brain and spinal cord. Because so much depends on the tube folding and closing cleanly, this is a delicate moment. If part of it fails to zip shut, the result is a neural tube defect such as spina bifida, which is one reason pregnant people are advised to get enough folic acid, a vitamin that helps the tube close properly.

Also calledprimitive neural tube神经管胚胎结构神經管胚胎結構

Neuroendocrine signaling is the way certain nerve cells talk to far-off parts of the body not by wiring up to them, but by squirting chemical messengers called hormones straight into the bloodstream. A normal neuron whispers to the one cell sitting right next to it, like passing a note to the person at the next desk. A neuroendocrine cell does something bolder: it dumps its message into the body's circulating blood, the way you might broadcast an announcement over a building's loudspeaker. The blood then carries that hormone everywhere, and any distant organ tuned to receive it — the kidneys, the ovaries, the thyroid, the immune system — reads the message and changes what it is doing.

This is how the brain reaches organs that no nerve directly touches, and how it coordinates slow, body-wide changes like growth, the daily sleep–wake rhythm, the stress reaction, milk release, and the timing of puberty. A small brain region called the hypothalamus sits at the heart of it: its specialized neurons release hormones that either travel down to the nearby pituitary gland or are stored there, and the pituitary then sends out its own hormones that command glands all over the body. Because blood travels much more slowly than an electrical nerve pulse and lingers, neuroendocrine messages act over seconds, minutes, or hours rather than the millisecond flicker of ordinary nerve signaling — making this the brain's tool for sustained, large-scale regulation rather than split-second reflexes.

Also calledneurohormonal signalingneurosecretion神经分泌神經分泌神经激素信号神經激素訊號

Neuroethics is the part of ethics that asks how we should study and touch the brain and mind. It deals with old human questions that brain technology now makes very concrete: Can you keep your thoughts private? Are you still the author of your own choices? When can a researcher or doctor act on your brain, and only with your clear, informed agreement?

It also asks about fairness: who gets these tools, who is left out, and whether they widen the gap between people. Brain–computer interfaces and brain stimulation sharpen all of this, because a device that can read or change brain activity can affect things we treat as deeply personal — attention, memory, mood, even a sense of self.

Neuroethics is not about being for or against the technology. It is about thinking carefully, ahead of time, so that the benefits arrive without quietly trampling rights, consent, or human dignity along the way.

Neurofeedback shows you a live, moment-to-moment readout of one of your own brain signals — say, a bar that rises and falls with a particular rhythm — so you can watch what your brain is doing in real time. Normally that activity is completely hidden from you; turning it into something you can see or hear is the whole point.

Once the signal is visible, you can try, through practice, to nudge it in a chosen direction: calm a certain rhythm, or push up a marker of attention. You are not given step-by-step instructions; instead, you experiment, and the feedback gradually teaches your brain what works, much like learning to wiggle your ears by watching a mirror.

It is a training-oriented cousin of control BCIs. Where a control BCI reads your brain to operate a device, neurofeedback aims the loop back at you — the goal is to change the brain signal itself, leaning on the brain's capacity to reshape itself with practice.

Also calledneuro-feedbackEEG biofeedback

Neurogenesis is the process by which the brain makes brand-new neurons — the cells that carry the signals behind everything you think, feel, and do. New neurons do not simply pop into existence; they are born when special, unspecialized cells called precursor cells (also known as neural stem cells) divide. One of these cells splits into two, and rather than both staying generic, the offspring can mature, or differentiate, into a working neuron. Think of it like a bakery: a small team of versatile bakers (the precursor cells) keeps copying themselves, and a share of each new batch is trained up into finished loaves (the neurons) that go out to do real work.

Most neurogenesis happens before birth, during the explosive early building of the brain, when precursor cells multiply at a staggering rate to stock the developing nervous system with its billions of neurons. For a long time scientists believed this factory shut down completely once you grew up, but research now shows that in a few special spots — most famously a part of the memory hub called the hippocampus — small numbers of new neurons can still be born throughout adult life, a phenomenon called adult neurogenesis. The newly made cells then have to migrate to the right place, grow their wiring, and connect into existing circuits before they count as fully working members of the brain.

Neurogenesis matters because it links to learning, memory, and mood, and because it is sensitive to how we live: exercise, rich experiences, and good sleep tend to encourage it, while chronic stress and aging tend to slow it down. Understanding it also fuels the hope of repair — if we could safely coax precursor cells to make new neurons on demand, we might one day help brains recover from injury or disease.

Also calledneuron formationbirth of neurons神经元新生神經元新生

A neurohormone is a chemical messenger that a nerve cell makes and then releases straight into the bloodstream, so it can travel to and act on body parts far away. Most nerve cells whisper to a neighbor across a tiny gap, like passing a note to the person sitting next to you. A neuron that makes a neurohormone does something bolder: instead of handing the note to a neighbor, it drops its message into the blood, the body's shared delivery system, where it can reach distant organs minutes later — more like mailing a letter that anyone downstream can pick up.

This is the brain's way of sending body-wide commands rather than point-to-point signals. A famous example happens in the hypothalamus, a control hub deep in the brain: certain neurons there make hormones such as oxytocin and vasopressin, send them down to the pituitary gland just below, and release them into the blood. From there oxytocin can trigger labor contractions in the womb or milk release during nursing, and vasopressin tells the kidneys to hold on to water. So a thought, a stress, or a body rhythm sensed by the brain can be turned into a chemical order that reshapes what happens in organs all over the body.

Also calledneurosecretory hormone神经分泌激素神經分泌激素

Neuroinflammation is the brain and spinal cord's version of the swelling, heat, and redness you feel when you cut your finger — an alarm-and-cleanup response, but happening inside nervous tissue where it cannot show up as a visible bruise. When something goes wrong (an infection, a head injury, a stroke, a toxin, or sick and dying cells), the nervous system's resident helper cells switch from quiet caretaking into an active defensive mode, calling for backup and trying to wall off and clear away the trouble.

The response is run mostly by glia — the support cells that vastly outnumber neurons. Microglia, the brain's built-in immune cells, are the first responders: they crawl toward the damage and release signaling molecules called cytokines, the chemical 'shout' that recruits more help. Astrocytes, star-shaped glia, react too, tightening around the injury. These signals can also loosen the blood–brain barrier (the brain's selective wall) so that immune cells from the bloodstream slip in. A short, well-aimed burst of this is healing — it removes debris and germs. But when the alarm stays switched on for months or years, the same molecules that were meant to protect begin to damage neurons, which is why long-running neuroinflammation is now tied to conditions like Alzheimer's disease, multiple sclerosis, chronic pain, and depression.

Also calledCNS inflammationneural inflammation中枢神经系统炎症中樞神經系統發炎

A neuromodulator is a chemical messenger the brain releases not to send one sharp, point-to-point signal, but to gently adjust the mood and sensitivity of many neurons at once. If a regular fast signal is like one person whispering directly into one ear, a neuromodulator is more like turning up the house lights or piping background music through a whole room: it does not tell anybody exactly what to do, but it changes how everyone in the room is likely to react. Familiar examples include dopamine, serotonin, norepinephrine, and acetylcholine, which spread out and bathe broad regions of brain tissue.

It works by drifting away from its release point and lingering, so it reaches neurons that are not directly wired to its source. Rather than forcing a neuron to fire right now, it tweaks how excitable that neuron is — making it quicker or slower to respond to the ordinary signals it keeps receiving from its neighbors. Because these effects build up and fade over seconds, minutes, or even longer, neuromodulators are how the brain sets slow, sweeping states like alertness, focus, hunger, reward, and overall mood, tuning whole circuits instead of flipping a single switch.

Also calledmodulatory transmitter神经调制物神經調制物

Neuromorphic computing is a way of building computer chips that copy the brain's own style of working instead of the way ordinary computers run. A normal computer keeps its memory and its calculating parts in separate places and shuffles numbers back and forth between them in lockstep, ticking along to a steady clock. A neuromorphic chip is built more like a slab of nervous tissue: it is packed with tiny artificial neurons and the connections between them, called synapses, and these elements store information and compute with it in the very same spot. Most importantly, the artificial neurons do not crunch numbers nonstop; they sit quietly and only send out a short electrical pulse, a spike, when they have something to say, just as real neurons fire an action potential, the brief voltage spike a nerve cell uses to signal.

This brain-like design matters mostly because of efficiency. In a living brain, the overwhelming majority of neurons are silent at any given moment, so almost no energy is spent until a signal actually needs to travel. Neuromorphic hardware borrows that trick: because each artificial neuron only burns power in the instant it spikes, and because data does not have to make long round trips to a distant memory bank, these chips can run certain brain-like tasks—recognizing a sound, tracking motion, reacting to a sensor—on a tiny fraction of the electricity a conventional processor would need. That makes them appealing for always-on devices and for any setting where battery life and heat are tight constraints.

Neuromorphic computing sits at the meeting point of neuroscience and engineering, and it cuts both ways. Engineers use what neuroscientists have learned about neurons, synapses, and spike timing to build leaner machines, while neuroscientists use these chips as fast physical models to test ideas about how real brains might compute. It is still a young field: today's neuromorphic systems handle only a sliver of what a biological brain does, and they are best thought of as inspired by the brain rather than as copies of it.

Also calledbrain-inspired computingneuromorphic hardwarespiking hardware类脑计算類腦運算神经形态硬件神經形態硬體

The neuromuscular junction is the tiny meeting point where a nerve cell that commands movement touches a muscle fiber and tells it to contract. Picture the long wire of a motor neuron — a nerve cell running out from your spinal cord — reaching all the way to a muscle in your arm or leg. Where that wire ends, it does not actually fuse with the muscle; it stops just short, leaving a microscopic gap. This whole handoff zone — the nerve's swollen tip, the gap, and the patch of muscle facing it — is the neuromuscular junction. It is the final relay station where a decision to move turns into an actual pull on the muscle.

It works by passing the message chemically across that gap. When an electrical pulse called an action potential races down the motor neuron and reaches its tip, the nerve releases packets of a chemical messenger called acetylcholine. Those molecules drift across the gap and land on matching receptors on the muscle's surface, like keys fitting into locks. This triggers a fresh electrical signal that sweeps across the muscle fiber and makes it shorten — a contraction. Because every voluntary movement, from blinking to sprinting, depends on this nerve-to-muscle handoff, the junction is a critical and vulnerable spot: nerve gases, the toxin in botulism, snake venoms, and the disease myasthenia gravis all cause paralysis or weakness by jamming this one connection.

Also calledNMJmyoneural junctionmotor end plate神经肌接头运动终板運動終板

A neuron is a single nerve cell — the tiny living unit that the whole nervous system is built from, the way a wall is built from bricks. But a neuron is no ordinary cell: it is excitable, meaning it can be triggered to fire a quick electrical signal, and it is shaped for talking. From the cell body sprout many short, branching arms called dendrites that act like antennas, collecting incoming messages, plus one long cable called the axon that carries the cell's own message outward to other cells. Picture a tree with a bushy crown of roots gathering signals at one end and a single long trunk delivering the answer at the other.

Here is how one works. The dendrites and cell body add up all the little nudges arriving from neighboring cells; if the total pushes the neuron past a tipping point, it fires a brief electrical pulse that races down the axon. At the axon's far end the signal does not jump directly into the next cell — instead the neuron squirts out chemical messengers across a microscopic gap, and the next neuron's antennas catch them. By wiring up in vast chains and webs and passing signals this way, billions of neurons together let you sense, move, remember, and think.

Neurons come in many shapes and jobs: some carry sensation inward from your skin and eyes, some send commands out to your muscles, and most sit in between, doing the brain's heavy lifting of processing and deciding. They are long-lived and, for the most part, are not replaced if lost, which is why protecting them matters so much.

Also callednerve cell神经细胞神經細胞

The neuron doctrine is the founding idea of modern brain science: the nervous system is built from many separate cells, each one called a neuron, rather than from a single continuous web of tissue. Every neuron is its own walled-off unit, and neurons talk to one another by passing signals across tiny gaps instead of fusing together. In short, the brain is a crowd of individual signaling cells, not one giant blob.

This sounds obvious now, but it was a genuine fight. In the late 1800s one camp insisted nerve tissue was a single fused mesh, like the threads of a net welded into one piece. Using a silver staining method invented by Camillo Golgi, the Spanish anatomist Santiago Ramon y Cajal drew careful pictures showing that neurons stay apart, with narrow spaces between them. Those gaps are what we now call synapses, the junctions where one cell hands its message to the next. Because each neuron is a distinct unit, signals can be aimed and controlled rather than leaking everywhere at once.

The neuron doctrine still anchors how we think today. Treating the brain as a circuit of discrete, wired-together parts is exactly what lets scientists trace pathways, label cell types, and reason about networks, both the living kind in your head and the artificial kind in a computer. Almost every modern idea about how brains compute rests on this one foundation: the unit of the nervous system is the single cell.

Also calledneuron theory神经元学说神經元理論神經元學說

The neuronal cytoskeleton is the internal scaffolding of a nerve cell — a web of microscopic fibers, far thinner than a hair, that gives the neuron its shape and holds it together from the inside. Picture the steel beams, tent poles, and guy-wires that keep a tall, oddly-shaped building or a circus tent standing: without that framework the structure would sag into a shapeless blob. A neuron has an unusually demanding shape — a tiny cell body sprouting a bushy crown of branches and a single wire-like fiber that can stretch a very long way — and the cytoskeleton is what lets it grow into that form and stay there.

It is built mainly from three kinds of fiber, each with its own job. Microtubules are stiff, hollow tubes that run the length of the long output fiber like internal rails; they not only brace the cell but also serve as tracks along which little molecular 'trucks' haul supplies — fresh proteins, packets of chemical messengers, worn-out parts heading back for recycling — between the cell body and its far-flung tips. Neurofilaments are tough, rope-like strands that pack the long fiber and set its thickness, which in turn helps decide how fast its electrical signals travel. Actin is a finer, more restless mesh, concentrated at the cell's edges and in the tiny knobs where neurons touch; it constantly assembles and dissolves, letting the neuron feel its way as it grows, change shape, and remodel its connections as you learn.

Because the cytoskeleton both shapes the neuron and runs its internal delivery system, damage to it shows up in disease. When microtubules or their helper proteins go wrong — as with the tangled tau protein in Alzheimer's, or in some forms of nerve degeneration — cargo stops reaching the ends of long fibers, the cell's distant parts starve, and the neuron sickens and can die.

Also calledneuron cytoskeleton神经元骨架神經元骨架

Neuronal energy demand is the surprisingly large amount of fuel that brain cells burn just to do their job. Neurons are the cells that carry signals through your nervous system, and signaling is expensive work. Even though the brain is only about 2% of an adult's body weight, it gobbles up roughly 20% of the body's energy — making it, gram for gram, one of the hungriest organs you own. A single thinking, resting brain quietly uses about as much power as a dim household light bulb, all day, every day, whether you are solving a puzzle or fast asleep.

Most of that energy goes into one tireless chore: pumping charged particles called ions back across the neuron's outer skin (its membrane). Every time a neuron fires a signal, ions rush in and out, and the cell must immediately bail them back to where they started using tiny molecular pumps — like a boat that springs a leak with every wave and has to bail nonstop to stay afloat. Each pump runs on a molecule called ATP, the cell's rechargeable energy currency, so the bailing never stops, even at rest.

To keep that currency flowing, neurons are packed with mitochondria — the cell's miniature power plants — and they crowd especially thick at the busy junctions (synapses) where signals jump between cells. The mitochondria make ATP mainly by burning glucose, a simple sugar delivered nonstop by the blood. Here is the catch: neurons store almost no fuel of their own, so they depend on a steady minute-by-minute supply of glucose and oxygen. Cut that supply for even a few minutes — as in a stroke — and neurons quickly run out of power and begin to die, which is why the brain is so fiercely protective of its blood flow.

Also calledneuronal metabolic demandbrain energy consumption神经元代谢需求神經元代謝需求大脑能耗

The neuronal membrane is the thin, flexible skin that wraps around a neuron — a nerve cell — and separates the watery soup inside the cell from the watery world outside it. Imagine a soap bubble made of two layers of greasy molecules standing tail-to-tail: the oily tails huddle in the middle to hide from water, while the water-loving heads face outward toward the wet on both sides. This double sheet is called a lipid bilayer (lipid just means fat-like), and it is only about two molecules thick, yet it is what holds the whole cell together and gives it a definite inside and outside.

On its own this fatty film would be a fairly boring, leaky barrier. What makes the neuronal membrane special is everything embedded in it: hundreds of different proteins float in the bilayer like ships and gates dotted across a calm sea. Some are tiny doorways called ion channels that let charged particles slip in or out; others are pumps that push those particles uphill, and still others are receptors that catch chemical messages from neighboring cells. Because these proteins control exactly what crosses and when, the membrane can build up an electrical difference between inside and outside and then fire it off as a signal. In short, the membrane is not just the neuron's wall — it is the stage on which nearly all of the neuron's electrical and chemical signaling takes place.

Also calledneuronal plasma membraneneurolemma细胞膜細胞膜

Neuronal migration is the journey a freshly born brain cell takes from the place where it is made to the spot where it will spend the rest of its life. Early in development, the brain does not build new neurons right where they are needed. Instead, they are born in crowded nurseries deep inside the growing brain, and then each one has to travel — sometimes a tiny hop, sometimes a long trek across many cell-widths — to reach its proper address. Picture a brand-new city where everyone is born in one central hospital and then has to find their way to the exact street and house where they belong; neuronal migration is that commute, happening over and over for billions of cells.

The cells do not wander randomly. Many of them climb along long, stretched-out helper cells that act like guide ropes or scaffolding, inching upward toward the brain's surface, while chemical signals act as scent trails and traffic signs telling each neuron which way to go and when to stop. Timing matters: in the outer layer of the brain, the cerebral cortex, neurons arrive in waves and stack up like floors of a building, with later arrivals passing through the earlier ones to settle on top. Getting to the right place is what lets neurons later wire up with the correct neighbors and partners.

This careful relocation is one of the foundations of building a working brain, and when it goes wrong the consequences can be serious. If neurons stall on the way, overshoot, or land in the wrong layer, the brain's structure can come out scrambled, and such misplacement is linked to conditions including certain forms of epilepsy and intellectual disability. Studying neuronal migration therefore helps explain both how a healthy brain assembles itself and how some developmental disorders arise.

Also calledneuron migrationneural migration神经细胞迁移神經細胞遷移

Neuronal polarity is the way a nerve cell sorts itself into two very different ends, like a tiny post office that keeps its inbox and its outbox in separate rooms. The receiving end is made of branchy, tree-like extensions called dendrites, which collect incoming signals from other cells. The sending end is a single long fiber called the axon, which carries the cell's own signal away to its targets. This in-versus-out division is what lets information flow through the brain in one reliable direction instead of sloshing back and forth.

The two ends are not just shaped differently — they are built from different molecular parts, and the cell works hard to keep them that way. Soon after a young neuron is born, one of its sprouts wins a kind of race and becomes the axon, while the rest settle into being dendrites. From then on the cell uses internal sorting machinery and a checkpoint near the base of the axon to ship the right proteins, channels, and cargo to the right compartment. Dendrites and axons even arrange their internal scaffolding (long fibers called microtubules) in opposite orientations, which acts like a one-way road sign telling delivery motors which way to drive.

This polarity matters because it underlies how neurons compute. Dendrites are tuned to gather and weigh many inputs at once; the axon is tuned to fire a clean output signal and pass it along. When polarity is set up wrong, or breaks down after injury or in disease, signals get mis-routed and circuits stop working properly — so the simple fact that a neuron has a clear 'front' and 'back' is a foundation of nearly everything the nervous system does.

Also calledneuron polarityaxon-dendrite polarity神经元的极化軸突—樹突極性

A neuropeptide is a tiny protein-like molecule that brain cells use to send slow, lingering messages to one another and to the rest of the body. To picture it, think of two kinds of mail. The fast classic neurotransmitters are like a text message: a quick ping that arrives and fades in an instant. A neuropeptide is more like a handwritten letter — it takes longer to arrive, but its mood can hang in the air for minutes. Chemically, a neuropeptide is just a short chain of amino acids (the same building blocks that make up larger proteins), usually somewhere between about 3 and 40 links long, which is why scientists call it small.

These molecules sit at the crossroads of the nervous system and the hormone (endocrine) system, which is why they belong to the brain–body axis. A neuropeptide rarely flips a switch on its own; instead it tunes the dial, making nearby circuits more or less excitable and coloring how you feel. Familiar examples include oxytocin (tied to bonding and trust), endorphins (your built-in painkillers), and substance P (which carries pain signals). The same molecule can act locally between two neurons or travel through the blood like a hormone to reach distant organs, letting the brain shape hunger, stress, sleep, and emotion throughout the whole body.

Also calledpeptide neurotransmitterneuroactive peptide肽类神经递质神经活性肽胜肽類神經傳遞物神經活性胜肽

Neuropharmacology is the study of how drugs change the way the nervous system works — your brain, spinal cord, and the nerves that fan out through your body. Think of the brain as a vast network of cells that talk to each other by passing tiny chemical messengers called neurotransmitters across small gaps. A drug is like a clever note slipped into that conversation: it can shout the message louder, mute it, fake it, or jam the slot where the message is supposed to land. Neuropharmacology is the science of figuring out exactly which note a drug passes, where, and what happens to thought, mood, movement, and pain as a result.

In practice, most of these drugs work by latching onto specific docking sites called receptors, or by blocking the pumps and enzymes that normally clear messengers away. Caffeine perking you up, an anesthetic switching off sensation, an antidepressant slowly lifting a mood, a painkiller dulling a signal — all are neuropharmacology in action. Because the same chemistry that helps can also harm, this field also studies side effects, tolerance (needing more for the same effect), dependence, and addiction. Its goal is both to design safer medicines for conditions like epilepsy, depression, and Parkinson's disease, and to understand how everyday substances and drugs of abuse reshape the brain.

Also calledneuropsychopharmacologydrug action on the nervous system神经精神药理学神經精神藥理學

Neuroplasticity is the brain's lifelong knack for rewiring itself. Far from being a finished machine, the brain is more like a forest path: walk a route often and it widens into a clear trail, leave one unused and it slowly grows over. Every time you practice the piano, learn a new word, or even nurse a worry, the connections between your brain cells physically strengthen, weaken, or form anew.

This matters because it overturns an old, gloomy belief — that the brain is set in concrete by the end of childhood. It isn't. A London taxi driver who memorizes the city's tangle of streets shows measurable growth in the rear part of the hippocampus, the brain's hub for memory and navigation; a stroke survivor can coax undamaged regions to take over jobs the injured part once did. Change is slower in adulthood than in infancy, but it never stops.

One common myth to clear up: neuroplasticity doesn't mean the brain is endlessly, effortlessly moldable. Rewiring takes repetition, effort, and time, and it works both ways — the same mechanism that helps you master a skill can also entrench an anxiety or a bad habit. The brain reshapes around whatever you actually do, for better or worse.

Also calledbrain plasticityneural plasticitycortical remapping脑可塑性大脑可塑性腦可塑性

A neuroprosthesis is a device that connects to the nervous system to take over a function the body has lost. It either reads signals from the brain or nerves to do something useful, or sends signals in to make up for a sense that is missing. Either way, it is a bridge between living tissue and a machine.

Some neuroprostheses listen. A robotic arm controlled by a paralyzed person's motor signals is reading the brain's intentions and turning them into movement. Others talk. A cochlear implant turns sound into electrical pulses that stimulate the hearing nerve, and a retinal implant feeds light patterns into the eye's remaining cells.

The dream behind all of them is the same: when a natural pathway is broken, build a new one out of electrodes and software. The challenge is doing it so smoothly that the device starts to feel less like a tool and more like part of the person.

Also calledneural prosthesisneuroprosthetic

Neuroprotection is the whole toolbox of strategies aimed at keeping neurons — the brain and nerve cells that carry your thoughts, senses, and movements — alive and working when something threatens to injure, weaken, or kill them. Think of it like flood defenses for a city: the goal is not to undo damage that has already happened, but to shore up the walls and pumps so that fewer homes are lost when the water rises. The threats can be sudden, like the oxygen cut-off during a stroke or a blow to the head, or slow, like the gradual wasting of cells in diseases such as Alzheimer's and Parkinson's.

Neurons are unusually fragile and, unlike skin or liver cells, mostly cannot be replaced once they die, so protecting them ahead of time matters enormously. Neuroprotective approaches try to interrupt the chain of self-destruction that a stressed cell sets off: calming the toxic flood of the messenger glutamate that can over-excite cells to death, soaking up the harmful, rusting molecules called free radicals, quieting runaway inflammation, steadying the cell's energy supply, and blocking the internal suicide program that a damaged neuron may switch on. These tactics range from drugs and antioxidants to cooling the body, controlling blood pressure and sugar, exercise, and treatments still being tested in the lab.

Because neuroprotection works best as prevention or very early rescue, timing is its hardest problem: the protective window after a stroke or injury can be only hours wide, and a treatment that shields cells in a dish or a mouse often fails in people. Researchers therefore speak less of a single magic pill and more of stacking several modest protections together, while also pursuing the related goal of helping surviving cells repair and regrow.

Also calledneuroprotective strategynerve cell protection神经保护策略神經保護策略

The neuroscience of addiction is the study of how certain drugs and behaviors hijack the brain's built-in reward system — the same circuitry that normally makes food, friendship, and a good night's sleep feel worth pursuing. Your brain keeps a kind of internal scoreboard: when something is good for survival, a chemical messenger called dopamine surges in a deep brain hub, tagging that experience as important and worth repeating. Addictive drugs (like nicotine, alcohol, opioids, or stimulants) flood this scoreboard with far more dopamine than any natural reward ever could. The brain, fooled into thinking it has stumbled on something enormously valuable, rewrites itself to chase that experience again and again — even when the person genuinely wants to stop.

Over time, two things change. First, the reward system turns down its own volume: it makes fewer dopamine receptors and releases less dopamine on its own, so ordinary pleasures feel flat and the person needs the drug just to feel normal — this is tolerance, and its flip side is the painful crash of withdrawal. Second, the thinking-and-braking part of the brain, the prefrontal cortex, which weighs consequences and says 'not now,' becomes weaker at restraining the powerful cravings rising from below. The result is compulsion: drug seeking and drug use that continue despite real harm, driven less by wanting to feel good and more by a deep, automatic pull. This is why addiction is understood as a chronic brain condition, not simply a failure of willpower.

Seeing addiction this way reshapes how we treat it. Because cues linked to the drug — a place, a smell, a stressful moment — can trigger cravings by reactivating these learned circuits, lasting recovery usually means more than just quitting: it means slowly retraining the brain, often with a mix of medication, therapy, support, and time. The same plasticity that locked the addiction in also makes healing possible.

Also calledaddiction neurobiologysubstance use disorder neuroscience成瘾的神经生物学成癮的神經生物學

A neurotransmitter is a tiny chemical messenger that one nerve cell releases to talk to the next. Brain cells (neurons) don't actually touch each other — there is a tiny gap between them called a synapse. An electrical signal can't simply jump across that gap, so when the signal reaches the end of one neuron, the cell squirts out a puff of these chemical molecules. They drift across the gap like a note passed across a narrow stream, carrying the message to the cell on the other side.

On the receiving cell, the message is read by special docking spots called receptors, each shaped to catch one kind of neurotransmitter — a lock-and-key fit. When the chemical clicks into its receptor, it tells the receiving neuron to either fire its own signal (excite) or stay quiet (calm down). Familiar examples include dopamine, serotonin, and acetylcholine. Because they steer nearly every thought, feeling, and movement, neurotransmitters are also where many medicines act: drugs for depression, pain, and Parkinson's disease all work by nudging these chemical messages up or down.

Also calledchemical messenger神经传导物质神經傳導物質

Neurotransmitter release is the moment one neuron actually hands a chemical message to the next. Brain cells do not touch where they communicate; they are separated by a microscopic gap called the synaptic cleft. To bridge it, the sending cell keeps its chemical messengers (neurotransmitters) packaged inside tiny membrane-wrapped bubbles called vesicles, parked right up against the cell's outer wall like delivery vans waiting at a loading dock. When the signal arrives, those vesicles fuse with the wall and dump their cargo into the gap — a process called exocytosis, meaning 'spilling out of the cell.'

The trigger is a metal: calcium. When the neuron's electrical spike (the action potential) reaches the sending tip, it briefly opens special gates in the membrane, and calcium ions flood in from outside. That sudden rush of calcium is the 'go' signal. Calcium grabs onto a sensor protein on the waiting vesicles, which yanks the vesicle membrane and the cell membrane together so they merge, opening a pore. The neurotransmitter pours out into the cleft, drifts across, and lands on the receiving cell's receptors. The whole handoff happens in well under a thousandth of a second, which is why the brain can react so fast.

This step matters because it is the brain's main volume knob. By controlling how much calcium enters and how many vesicles fuse, a neuron sets how loud its message is, and many drugs, toxins, and diseases act precisely here — blocking the calcium gates, jamming the fusion machinery, or emptying the vesicles.

Also calledsynaptic vesicle fusiontransmitter release突触囊泡融合突觸囊泡融合递质释放遞質釋放

A neurotrophic factor is a tiny protein that acts like food and encouragement for nerve cells (neurons). The word breaks down as neuro- (nerve) plus -trophic (nourishing), so the name literally means "nerve-nourishing." These proteins are released by neurons and their helper cells, drift the short distance to a neighboring cell, and lock onto matching receivers (receptors) on its surface — like a key fitting a lock. That signal tells the receiving neuron three encouraging things: stay alive, keep growing, and stay flexible enough to learn. The most famous member of this family is BDNF, short for brain-derived neurotrophic factor, which is especially abundant in the brain regions used for memory and mood.

Why does this matter? Neurons are not replaced easily once you are grown, so keeping the ones you have healthy is precious. When a neurotrophic factor binds its receptor, it switches on chemical chains inside the cell that block self-destruction, sprout new branches to reach more partners, and strengthen the connections (synapses) where neurons talk — the physical basis of forming a memory or a habit. This is why BDNF is often described as fertilizer for the brain: exercise, good sleep, and learning push its levels up, while chronic stress and some illnesses push them down. Researchers studying depression, Alzheimer's disease, and recovery after injury watch neurotrophic factors closely, because boosting these survival-and-growth signals is one of the most promising ways to help damaged or struggling neurons hold on and rebuild.

Also calledneurotrophinbrain-derived neurotrophic factorBDNF神经营养蛋白脑源性神经营养因子腦源性神經營養因子

The neurovascular unit is the small team of cells that work together to deliver blood exactly where and when the brain needs it. Picture a busy patch of brain as a workshop: the workers are neurons (the cells that fire electrical signals), but they cannot store their own fuel, so they depend on a constant delivery of oxygen and sugar carried by blood. The neurovascular unit is the local delivery crew built right around the tiny blood vessels — it bundles the neurons together with several supporting cells and the vessel wall itself into one coordinated structure, so that brain activity and blood supply are linked moment by moment.

The crew has a few key members. The blood vessel is lined on the inside by endothelial cells, which form a tight, selective wall. Wrapped around small vessels are pericytes, contractile cells that can gently squeeze or relax to fine-tune how wide the vessel is. Star-shaped helper cells called astrocytes (a type of glia, the brain's non-firing support cells) reach out with end-feet that wrap almost the entire vessel surface, acting as messengers between the neurons and the vessel. Microglia, the brain's resident immune cells, patrol nearby. When a group of neurons becomes active, they and the astrocytes release chemical signals that tell the pericytes and vessels to widen, so fresh blood floods in right where the work is happening — a process called neurovascular coupling, and the same surge that brain scanners like fMRI detect.

This tight teamwork matters because the brain is extraordinarily demanding and has almost no fuel reserves: it uses about a fifth of the body's energy yet weighs only a fortieth of it, so even a brief mismatch between activity and blood flow can harm cells. The neurovascular unit also helps build and guard the blood-brain barrier, the filter that keeps harmful substances in the blood out of delicate nervous tissue. When members of this unit are damaged — in stroke, Alzheimer's disease, or chronic high blood pressure — blood flow and the barrier can fail together, which is why scientists increasingly study the whole unit rather than neurons alone.

Also calledNVUneurovascular ensemble神经血管单位神經血管單位

A neutral-atom array stores each qubit in a single atom — often rubidium or cesium — held floating in vacuum by a tightly focused laser beam called an optical tweezer. A grid of hundreds or even thousands of these tweezers, made by splitting one laser into many spots, traps one atom per spot. Each atom is identical by nature, so unlike fabricated qubits there is no chip-to-chip variation: every qubit starts out the same. It is worth being clear up front that this is not a lithographic chip at all — there is no patterned silicon, just atoms hovering in light inside a vacuum chamber.

The qubit lives in two long-lived internal states of the atom, and gates are run with laser light. To make two atoms interact, they are briefly excited into a Rydberg state — a giant, puffed-up orbit that lets nearby atoms feel each other strongly. A standout feature is that the tweezers can be steered: atoms can be physically picked up and moved partway through a computation, so a pair that needs to interact is shuttled next to each other. That mid-circuit movement gives these machines flexible, reconfigurable connectivity rather than a fixed wiring graph etched into a substrate.

Honestly, every platform pays somewhere. Atoms occasionally get lost from their traps and must be reloaded, gates and readout are generally slower than in superconducting chips, and the optics that aim laser light at many atoms at once are intricate and hard to scale cleanly. But neutral atoms have pushed to some of the largest qubit counts of any platform, with no qubit modality having 'won' — they are included here mainly so the chip-based approaches can be compared fairly against a very different way of building a quantum processor.

Also calledoptical-tweezer arrayatom array光镊阵列光鑷陣列原子阵列原子陣列

The Newton–Euler formulation derives a robot's dynamics the direct, physical way: by tracking every force and twist acting on each individual link and insisting they balance, just as the great laws of motion demand. It uses two partner rules. Newton's law governs straight-line pushing — the net force on a link equals its mass times how fast its center is accelerating. Euler's law governs spinning — it ties the net twisting effort (torque) on a link to how stubbornly it resists turning and how fast its spin is changing. Apply both to every link, and you have captured the whole robot's motion.

The natural way to do this is link by link, like passing a message down and back along a chain. First you sweep outward from the robot's base to its tip, working out how fast each link is moving and accelerating, since each link inherits the motion of the one before it. Then you sweep back inward from the tip to the base, adding up the forces: each link must support its own inertia plus whatever it is handing back from the links beyond it. By the time you reach the base you know precisely the force and torque at every joint.

This back-and-forth recipe is wonderfully efficient, which is why a refined version of it — the recursive Newton–Euler algorithm — is what real robots run thousands of times a second to compute the torques they need on the fly. It reaches exactly the same equations of motion as the energy-based Lagrangian approach; the two are simply different routes to the identical truth. Engineers reach for the Lagrangian method when they want a clean formula to study, and for Newton–Euler when they want raw speed in a live controller.

Also calledNewton-Euler dynamics牛顿-欧拉方程力平衡法

NISQ is the honest name for where quantum computing actually is right now. Picture a workshop full of brilliant but jittery hands: you have somewhere between roughly 50 and a few thousand qubits, which is the "intermediate scale" part, but every gate you apply and every moment that passes adds a little error, which is the "noisy" part. There is no full error correction running underneath to catch and fix those mistakes, so the longer and deeper your computation, the more the noise piles up until the answer drifts into nonsense.

The term was coined by physicist John Preskill in 2018, and it does real work by setting expectations. These machines are genuinely useful for experiments, for studying quantum systems, and for hybrid algorithms where a short quantum circuit hands results back to an ordinary computer that steers the next step. What they cannot yet do is run the long, deep circuits that headline tasks like Shor-scale factoring demand. Those require fault-tolerant qubits that survive thousands or millions of operations, and that hardware does not exist today.

So when you hear that a chip has hundreds of qubits, the useful question is not just "how many?" but "how good?" A handful of clean, long-lived qubits can outperform a large pile of noisy ones. NISQ is a stepping stone, not the destination, and being clear-eyed about its limits is part of taking the field seriously.

Also calledNISQ eranoisy intermediate-scale quantum

The Nissl stain is a tissue-coloring recipe that uses a basic (basophilic) dye, such as cresyl violet, which is drawn to acidic, negatively charged molecules. In a nerve cell the biggest target is the dense stack of ribosome-studded membranes called rough endoplasmic reticulum — the cell's protein factory. These clumps, named Nissl bodies, soak up the dye and turn a deep blue or violet, so the dye effectively paints wherever the cell is busy making protein.

Because that machinery is concentrated in the cell body, the Nissl stain lights up the soma of essentially every neuron while leaving the long fibers nearly colorless. That makes it the standard tool for mapping where cell bodies sit: how densely they are packed, how big they are, and how they stack into the layers and clusters that give each brain region its signature look — the study of these patterns is called cytoarchitecture.

It is named after Franz Nissl, the German neuropathologist who introduced the method in the 1880s and described the granular bodies that still carry his name. Where the Golgi stain reveals the full shape of a few scattered neurons, the Nissl stain instead reveals the bodies of all of them, so the two methods are often used as a complementary pair.

Also calledNissl stainingcresyl violet stain尼氏体染色尼氏體染色

An NMDA receptor is a tiny gateway on the surface of a brain cell that opens to let charged particles flow inside — but it is unusually picky. To open, it demands two things at the same moment: the chemical messenger glutamate must land on it (sent by a neighboring cell that is firing), and the receiving cell must already be electrically excited. Because it waits for both signals to coincide, it acts like a lock that only turns when two different keys are inserted together. Scientists call it a coincidence detector, and its name comes from NMDA, a lab-made molecule that happens to switch it on.

This two-key rule is the secret behind how brains learn. At rest, a magnesium particle sits plugged in the channel like a cork; only when the cell is already charged up does the cork pop out, and only then can glutamate swing the gate open. When it finally opens, it lets calcium rush in — and calcium is not just any signal but a powerful inner messenger that tells the cell to strengthen that particular connection. This is the molecular fingerprint of the old saying that cells which fire together wire together: the NMDA receptor notices when two neurons are active at the same time and triggers the long-lasting change that stores the link as a memory.

Also calledNMDARN-methyl-D-aspartate receptorNMDA 谷氨酸受体NMDA 麩胺酸受體

Imagine you have a qubit in some unknown quantum state, and you want a backup. On a classical computer this is trivial: copy-paste is so ordinary you barely think about it. The no-cloning theorem says that in the quantum world this is simply impossible. There is no machine that can take an arbitrary unknown quantum state and produce a second qubit that is an identical, independent copy of it. Not a hard problem to engineer around, but a flat 'no' that follows from the basic math of how quantum states evolve.

The reason is that quantum operations (gates) are linear and reversible, and a true universal copier would have to do something no linear operation can do for every possible input state at once. You can freely copy a qubit you already know is exactly |0> or exactly |1>, the way you copy a bit. But a state in superposition, a mix of |0> and |1> whose exact amplitudes you do not know, cannot be duplicated. And because measuring a state disturbs it, you cannot sneak around the rule by measuring first either: looking collapses the very thing you were trying to copy.

This one limitation quietly shapes much of quantum computing. It is why you cannot protect a qubit by just keeping spare copies, which is part of why quantum error correction has to be so clever, spreading one logical qubit's information across many physical qubits without ever copying the state outright. It is also the security backbone of quantum key distribution: an eavesdropper cannot silently clone the qubits in transit, so any attempt to intercept them leaves detectable disturbance.

Also calledno-cloning principle不可克隆原理不可複製原理量子不可克隆定理量子不可複製定理

Nociception is your body's alarm system for harm. Special nerve endings, called nociceptors, are scattered through your skin, muscles, joints, and internal organs, and they watch for things that could damage tissue — a stove that is too hot, a pin that pokes too sharp, a chemical that burns. When one of these threats crosses a danger threshold, the nociceptor fires off an electrical signal that races toward the spinal cord and brain. That whole detect-and-report process is nociception. Pain — the unpleasant feeling you actually experience — is what your brain builds afterward from those signals, so it is the result of nociception rather than the same thing.

Different nociceptors specialize in different threats: some respond to crushing pressure, some to extreme heat or cold, and some to irritating chemicals released by injured or inflamed cells. Fast, sharp warnings (like touching a hot pan) travel along thicker, quicker nerve fibers and make you jerk your hand back before you even think; dull, aching, lingering signals travel along slower fibers. This system is genuinely protective — people born unable to feel pain often hurt themselves badly without noticing — but it can also misfire, staying switched on long after an injury heals, which is one root of chronic pain.

Also calledpain sensingnocioception痛觉感受痛覺感受伤害感受傷害感受

A Node of Ranvier is a tiny bare gap in the insulation that wraps a nerve fiber. Many of the long output cables of neurons — called axons, the wire-like tails that carry signals away from a cell — are sheathed in a fatty white wrapping called myelin, which works just like the plastic coating on an electrical wire. But that coating is not one continuous tube. It comes in segments laid end to end, and between each segment there is a short, uncovered pinch of the axon. Each of those regularly spaced gaps is a Node of Ranvier, named after the French scientist who first described them.

These little gaps are where the real action happens, and they make nerve signals travel astonishingly fast. The electrical pulse that races along an axon can only be freshly regenerated at the bare nodes, because that is where the channels that pump charge across the membrane are concentrated; under the fatty myelin, the fiber is sealed off and the signal simply coasts. So instead of crawling smoothly down the whole length of the axon, the pulse effectively leaps from one node to the next, skipping over the insulated stretches in between. This jumping shortcut — called saltatory conduction, from the Latin for ‘to leap’ — lets signals move many times faster than they would in a bare fiber, while using far less energy.

Also calledmyelin-sheath gapneurofibral node郎飞氏结神经纤维结郎飛氏結神經纖維結

For two thousand years, geometry meant the rules Euclid wrote down for a flat sheet of paper: parallel lines stay the same distance apart forever and never meet. Non-Euclidean geometry is what happens when you let that one rule break. Picture a globe instead of a page. Two lines of longitude both run dead straight, due south, crossing the equator at right angles — yet they crash together at the pole. On a curved surface, lines that look parallel can meet, or fan apart and never come close; on a sphere, in fact, there are no parallel lines at all, because any two of these straight lines eventually cross.

There are two flavors, and the deepest way to tell them apart is to ask how many parallels you can draw through a point beside a given line. On a sphere-like surface that curves outward — elliptic geometry — the answer is none: every straight line eventually meets every other, and the angles of a triangle add up to more than 180°. On a saddle-like surface that curves the other way — hyperbolic geometry — infinitely many parallels fan through that point, and a triangle's angles add up to less. Flat Euclid's exactly-one-parallel, exactly-180° triangle turns out to be just the special case in the middle.

This isn't a mathematician's idle game. Einstein realized that gravity is not a force pulling across empty space — it's the curving of spacetime itself, and planets simply follow the straightest possible paths through that curved geometry. The Sun bends the space around it the way a heavy ball dents a trampoline, and Earth rolls along the dent. Non-Euclidean geometry is the language that made that idea sayable.

Also calledhyperbolic geometryelliptic geometryRiemannian geometry双曲几何椭圆几何黎曼几何

An NFT, or non-fungible token, is a one-of-a-kind entry on a blockchain that proves who owns a specific item. "Fungible" means interchangeable: one dollar or one bitcoin is exactly as good as any other, so they are fungible. "Non-fungible" means each unit is distinct and not swappable one-for-one — like a numbered concert ticket, the deed to a particular house, or an original painting. An NFT is the blockchain's way of representing exactly that kind of unique, individually identifiable thing.

Under the hood, an NFT is a token with a unique identifier recorded by a smart contract, and that contract maintains a public list of which wallet owns which item. The token usually points to the thing it represents — an image, a piece of music, a game character, an event pass — while the record of ownership itself lives openly on the chain. Anyone can verify, with certainty and without asking a company, who holds a given NFT and trace the full history of who held it before, all the way back to its creation.

NFTs matter because they give digital things something they never had: provable, transferable ownership that no platform controls. Before, a digital file could be copied endlessly with no way to say which copy was "the" owned one; an NFT settles that by making ownership a public fact rather than a database entry inside one company. That unlocks uses from digital art and collectibles to event tickets, in-game items you truly own, and membership passes you can resell.

Also calledNFTnon-fungible token非同质化代币非同質化代幣

Non-prehensile manipulation means moving an object around without ever gripping it. Instead of closing fingers and holding on, the robot pushes, slides, rolls, taps, pivots, or topples the object — it changes where the object is by nudging it, the way you might slide a heavy book across a table with one hand rather than picking it up. The word prehensile means able to grasp (like a monkey's tail), so non-prehensile simply means not grasping.

Why bother, when grabbing seems simpler? Sometimes the object is too big, too heavy, too flat, or too fragile to grip — a sheet of glass, a coin lying flat on a table, a pancake. Sometimes the robot's hand is busy or it only has a simple poker or a flat plate, not a clever hand at all. And sometimes pushing is just faster: shoving three boxes into a corner at once beats picking them up one by one. The trade-off is that a pushed object is not held, so it can slip, spin, or drift in ways that are hard to predict, which makes this a surprisingly tricky skill.

The heart of the difficulty is friction and physics: when you push an object, exactly how it moves depends on where you push, how hard, and how it rubs against the surface — and small errors grow. So non-prehensile manipulation leans heavily on understanding contact and motion, often nudging an object a little, watching what happened, and correcting. It is a key tool for handling things that simply cannot be grasped, and for setting an object up into a better position before a real grasp.

Also calledpushing manipulation无握持操作無握持操作

A nonce is a number used once for a specific purpose — a throwaway value a system adjusts or increments to make something come out right or to keep things in order. The word is a contraction of "number used once." In blockchains the term shows up in two distinct places that are easy to confuse, and the difference is worth keeping straight because they do quite different jobs.

In proof-of-work mining, the nonce is the dial a miner spins in search of a valid block. A miner repeatedly changes this number inside the block header and re-hashes the header, hunting for a fingerprint that falls below a difficulty target. There is no shortcut: the only way to find a winning nonce is to try enormous numbers of them, which is exactly what makes mining a costly numeric lottery and what secures the chain. The lucky nonce is then published so anyone can instantly verify the answer is correct.

In the account model — used by Ethereum and similar chains — a very different nonce is attached to each account: a simple counter that numbers that account's transactions, one, two, three, and so on. Its job is to fix the order of an account's transactions and to stop an old, already-spent payment from being maliciously rebroadcast and replayed. Same word, two roles: one is a brute-force search variable, the other an anti-replay sequence number.

NoSQL is the umbrella name for databases that DON'T organize everything into the neat rows-and-columns tables that SQL relies on. Instead of forcing your data into a fixed grid up front, they let each record carry whatever shape it needs — which is handy when your data is messy, changes often, or just doesn't fit a spreadsheet.

It comes in a few flavors. Document stores (like MongoDB) keep each record as a flexible JSON-like blob. Key-value stores (like Redis) are a giant dictionary — hand it a key, get back a value, blazingly fast. There are also wide-column and graph databases for other shapes of problem.

The trade-off is real. By dropping rigid tables you gain flexibility and, often, easier scaling across many machines — but you give up some of the strict consistency and tidy relationships that relational databases hand you for free. The name is a bit misleading: read it as 'not only SQL', not 'no SQL allowed'.

Also callednon-relationaldocument databasekey-value storemongodbredis

NREM sleep is the quieter, calmer half of a night's sleep, named for what is missing: the eyes are still, not darting around the way they do during dreaming sleep. Think of falling asleep as walking down a gentle staircase. NREM is that descent, and it comes in three steps that get deeper and deeper. N1 is the very top stair, a drowsy in-between moment where you drift off but could be woken by the smallest sound and might not even feel you were asleep. N2 is the long middle stretch where most of your night is actually spent: your heartbeat slows, your body temperature drops, and your brain fires off brief, distinctive bursts of electrical activity that help shut out the outside world and lock in things you learned that day. N3 is the bottom of the staircase, the deepest and hardest sleep to wake from, also called slow-wave sleep because the brain's electrical rhythm rolls in big, slow waves.

This deep N3 stage is the truly restorative part of the night. It is when the body does its repair work, releasing growth hormone, mending tissue, and clearing waste from the brain, and it is the stage we crave most after we have gone without sleep. NREM matters because it is not just a runway to dreaming: across the night the brain cycles repeatedly between NREM and REM (the dreaming stage), and a healthy adult moves through this whole climb-and-descend roughly every ninety minutes. Early in the night the deep N3 dominates; toward morning the cycles shift and dreaming takes up more of the time. If someone is roused out of deep N3, they often feel groggy and confused for several minutes, a fog called sleep inertia, a sign of just how far down that staircase they had gone.

Also callednon-REM sleepnon-rapid eye movement sleepquiet sleep慢波睡眠非快速眼動期睡眠

In the brain and spinal cord, a nucleus is a tight cluster of neuron cell bodies that sit together because they do a related job. The cell body, or soma, is the bulb-shaped middle of a neuron that holds its DNA and keeps it alive. When thousands of these bodies bunch up in one spot inside the central nervous system, anatomists call that lump a nucleus. It has nothing to do with the tiny nucleus inside a single cell that holds DNA; here the word just means a knot of neurons working as a team.

Picture the brain as a big office building. The wires and cables running between rooms are the long neuron fibers, and a nucleus is a room where many workers cluster around one shared task, like vision, hunger, or balance. Because their cell bodies are packed close, a nucleus looks grayish to the eye, which is why this kind of tissue is called gray matter; the pale fiber bundles that link nuclei together are the white matter. Familiar examples include the thalamus, a major relay station, and the amygdala, a hub for fear and emotion.

One naming quirk trips people up: the very same cluster is called a nucleus when it lives inside the central nervous system, but a ganglion when it sits out in the peripheral nervous system, the nerves beyond the brain and cord. So a clump of neuron cell bodies in your spinal cord is a nucleus, while a similar clump just outside it is a ganglion, even though both are doing the same basic thing.

Also calledneural nucleusbrain nucleus核团神经核神經核

The nucleus accumbens is a small, paired cluster of nerve cells buried deep near the front-center of each half of the brain, just beneath the wrinkled outer surface. It sits in a region called the ventral striatum, the lower part of a larger movement-and-habit hub, and it acts as the brain's switchboard for wanting and motivation. Think of it as the place where a feeling of "that was good, I want more" gets turned into the push to actually go and get it. When you crave a snack, look forward to seeing a friend, or feel the pull of a game you cannot put down, the nucleus accumbens is busy.

Its job is to take in three kinds of information and blend them into a single decision about how much effort something is worth. From other brain areas it receives signals about reward (was the outcome better or worse than expected?), about emotion and context (where am I, is this safe, how do I feel?), and about plans and goals (what am I trying to do?). A messenger chemical called dopamine floods in from deeper structures and tags certain moments as worth pursuing, which is how the accumbens learns, over time, which actions tend to pay off. This makes it central to reinforcement, the process by which good outcomes make a behavior more likely to be repeated. Because the same circuit is hijacked by addictive drugs, by gambling, and by compulsive habits, the nucleus accumbens is one of the most studied spots in the brain for understanding both healthy motivation and the diseases of misplaced desire.

Also calledaccumbensventral striatum hubNAc腹侧纹状体核心腹側紋狀體核心依核

Null-space motion is when a robot rearranges its joints internally while the working end — the hand or tool — stays perfectly still in place and pointing the same way. Picture your own arm holding a coffee cup steady on a table: you can swing your elbow up, out, or down without the cup budging. The elbow is moving freely, yet the cup's position never changes. That elbow shuffle, in which the body shifts but the goal point holds, is null-space motion.

This is only possible when a robot has more joints than it strictly needs to place its end where you want — extra freedom, often called redundancy. With spare joints, many different body postures all land the hand in the same spot, so the robot can drift among those postures without disturbing the task. The name comes from the math: these are exactly the joint motions that produce zero movement at the end-effector, a set mathematicians call the null space of the arm's Jacobian.

Far from being a useless wiggle, null-space motion is genuinely useful. While the hand keeps doing its job, the freed-up joints can quietly take care of secondary goals — dodging an obstacle, steering clear of an awkward locked posture, staying within joint limits, or keeping the arm comfortable and balanced. It is how a redundant robot does two things at once: hold the main task fixed with one hand, so to speak, while tidying up everything else with the rest of its body.

Also calledinternal motionself-motion零空间自运动零空間自運動

Numerical inverse kinematics solves the backward problem — what joint angles reach the target? — not with a single magic formula but by educated trial and improvement. You start from some guess of the joint angles, use forward kinematics to see where the hand actually lands, measure how far that is from the goal, then nudge the joints a little in the direction that shrinks the gap. Repeat, and the hand creeps closer and closer until it is close enough. It is like adjusting a shower's hot and cold taps: feel the water, turn the knobs a touch, feel again, and home in on the right temperature.

The key to choosing each nudge intelligently is the Jacobian, a quantity that says, near the current pose, how a small turn of each joint moves the hand. Inverting that relationship tells the solver which way and how much to adjust the joints to step toward the target. The big advantage of this approach is generality: it works on almost any robot, including odd shapes and arms with extra joints that no neat formula can crack. The trade-offs are that it can be slower, it needs a decent starting guess, it may stall near awkward configurations where the Jacobian misbehaves (the singularities), and it usually returns just one solution rather than listing them all — so software often runs it from several starting guesses to find good options.

Also callediterative IKnumerical IK数值逆解迭代逆运动学

An NV center is a single atomic flaw inside a diamond crystal: one carbon atom is replaced by a nitrogen, and right next to it sits an empty spot where a carbon should have been. That tiny pair of defects traps a few electrons whose collective spin behaves like a controllable quantum bit. The remarkable thing for chip designers is the setting: unlike superconducting or trapped-ion qubits, an NV center can be initialized, controlled, and read out with green laser light and microwaves while sitting at room temperature, no dilution refrigerator required.

It works because the defect's electron spin can be both prodded with light and nudged with microwaves. Shine green laser light on it and the spin tends to settle into a known starting state; apply a microwave tone at its resonance and you rotate the spin between its levels; then read it out optically, because the defect glows a little brighter or dimmer depending on which spin state it is in. The nearby nitrogen nucleus, and sometimes carbon-13 nuclei in the lattice, can serve as extra long-lived quantum memories, and the defect can emit single photons that carry quantum information away through fiber.

Honestly, NV centers shine for quantum sensing and as network nodes, not as a path to a big computer. A single defect is exquisitely sensitive to nearby magnetic fields, electric fields, and temperature, so it makes a superb nanoscale sensor; and its spin-photon link makes it a candidate building block for quantum networks. But wiring up many NV qubits on a chip is hard: placing defects precisely, getting their photons out efficiently, and the modest room-temperature coherence all keep it a niche, specialized platform rather than a contender to scale up like superconducting or spin-qubit chips.

Also callednitrogen-vacancy centerdiamond NV centerNV centre氮空位色心氮空缺色心
O

OAuth is the standard behind every 'Log in with Google' or 'Continue with GitHub' button. Its whole point is letting one app use another without ever seeing your password. You're not handing the new app your Google login — you're asking Google to let it in on your behalf.

The everyday analogy is a hotel key card. Reception (Google) checks your ID once, then gives the app a card that opens just a few specific doors — say, your email address and name — and nothing else. The app never learns your master key, and you can cancel that card at any time without changing your real password.

What the app receives is an access token: a temporary, limited pass. That's the difference worth remembering — OAuth is about granting limited access, not about proving who you are. The password stays with you and the service you trust.

Also calledlog in with googlesocial logindelegated authorization

An object is a bundle of related values kept together under named keys. Where an array gives each value a number, an object gives each value a label — name, age, email — so you can describe one whole thing, like a person, in a single tidy package.

Think of it as a labeled drawer versus an array's numbered row. You don't fetch by position ('give me item 0'); you fetch by name ('give me the email'). That makes objects perfect for things with distinct, meaningful parts, where the labels matter more than any order.

Each name-value pair is called a property: the key is the label, the value is what's stored under it. Objects can hold any kind of value, including other objects and arrays, so you can nest them to model surprisingly rich structures. This key-value shape is also exactly what JSON uses to ship data between programs.

Also calleddictionarymaprecordhash

Object detection is the vision task of finding things in an image and saying both what each one is and where it is. The 'where' is usually drawn as a box — a rectangle, called a bounding box, snugly wrapped around each object — and the 'what' is a label like 'person', 'cup', or 'forklift' stuck to that box. So a single photo of a kitchen might come back marked with one box around the mug, another around the kettle, and a third around the cat on the counter, each tagged with its name.

This is different from just classifying a picture. Plain image classification only answers 'is there a cat in this photo, yes or no?' and assumes the picture is mostly one thing. Detection is harder because a real scene holds many objects at once, of different sizes, sometimes overlapping or half hidden, and the system has to pin down each one separately. For a robot this matters enormously: an arm cannot pick up a bottle it has only vaguely classified as 'present somewhere in the frame' — it needs the bottle's exact location to reach for it, and it needs to tell the bottle apart from the glass next to it.

Modern object detectors are almost always built on neural networks that learn from huge collections of labeled example images, with well-known families including YOLO, SSD, and Faster R-CNN. For every candidate location it considers, the network predicts a class label, a confidence score (how sure it is), and the four numbers that define the box. The output is a fast, frame-by-frame answer to 'what is in front of me and where,' which is the starting point for grasping, obstacle avoidance, counting, and tracking.

Also calleddetection目标侦测物件偵測

Observability asks the mirror-image question to controllability: from only the measurements you can actually take, can you work out everything going on inside the system? Many important inner conditions are hidden — you might measure a wheel's position but not its slip, or a tank's outlet flow but not the temperature deep inside. A system is observable if, by watching its outputs over a stretch of time, you can deduce the full hidden state from what you see. If some inner condition leaves no fingerprint at all on any measurement, that part is unobservable and you are flying blind about it.

Think of a doctor who cannot see inside a patient but can take a pulse, temperature, and blood pressure over several minutes. If those few readings, watched as they rise and fall, are enough to pin down what the body is doing internally, the situation is observable. If two completely different internal conditions would produce the exact same string of readings, the doctor can never tell them apart from measurements alone — that is unobservability. The same logic governs machines: a robot whose sensors happen to miss a swaying flexible link, in a way that never shows up in the readings, cannot know that the link is swaying.

Observability matters because most controllers need to know the state in order to act, yet sensors rarely measure everything directly. When the state is hidden but observable, an estimator — a piece of software such as a Kalman filter — reconstructs it from the available outputs and the system model, and the controller acts on that estimate. If the system is not observable, no estimator can recover the missing part, so the fix is more or better sensors, not better math. Like controllability, observability is checked from the model before the hardware is finalized.

Also calledstate observability可观察性可观性

Observability asks a deceptively simple question: from the measurements I can actually take, can I eventually figure out everything I want to know about the robot's hidden state? The state is the full set of numbers that describe the robot's situation — its position, its heading, maybe its speed, maybe the slow drift of a sensor. Many of those numbers are never measured directly; the robot must infer them from whatever its sensors do report. If, by watching the sensors long enough, there is exactly one possible state that could have produced everything seen, the state is observable. If two genuinely different states would produce identical sensor readings forever, the robot can never tell them apart, and that hidden quantity is unobservable — no amount of clever math will recover it, because the information simply was never captured.

A homely picture helps. Imagine standing in a featureless white room blindfolded, given only a compass. You can always tell which way you are facing, so your heading is observable. But the compass says nothing about whether you are by the north wall or the south wall, so your position is unobservable — every spot in the room looks identical to your single sensor. Now hand yourself a tape measure to the nearest wall and start walking: as the readings change with your movement, the once-hidden position becomes recoverable. This is the deep twist of observability in estimation: it often depends on motion. A quantity invisible while the robot sits still can become visible once it moves the right way, because moving makes the sensors tell a richer, changing story.

Why care? Because if part of the state is unobservable, no filter — not the Kalman filter, not the particle filter, none of them — can pin it down; the best they can do is keep an honest, ever-growing cloud of uncertainty around that piece. Engineers therefore check observability before they trust an estimator, and often design the robot's sensors or its movements specifically to make the things they care about observable. It is the difference between a problem the data can actually answer and one where the robot is doomed to guess, no matter how good its algorithm.

Also calledstate observabilityestimability可观性可估计性

An occupancy grid map is a robot's map of a space drawn as graph paper: the floor is chopped into a fine grid of equal little squares, and each square holds one number answering a single question — is something solid sitting here? Picture laying transparent graph paper over a room's floor plan, then shading each square dark if a wall or table sits on it and leaving it pale if it is open floor you could walk across. That shaded sheet, square by square, is the map. Each square is called a cell, and a typical cell might cover a five-centimeter patch of ground.

The honest twist is that the robot is never fully certain about any square, so each cell does not just say occupied or free — it stores a probability, a number capturing how confident the robot is that the square is blocked. A cell the laser has hit again and again climbs toward near-certain-occupied; a cell the beams pass cleanly through drifts toward near-certain-free; a square the robot has never glimpsed stays at fifty-fifty, an honest shrug meaning unknown. As the robot drives around and sweeps its sensor, every reading nudges the cells it crosses, and the picture sharpens from a vague fog into a crisp floor plan.

This is one of the most popular ways to store a robot's map because it is wonderfully simple to use. A path planner can glance at the grid and route only through pale, free cells while steering clear of dark, blocked ones; a localization method can compare a fresh sensor sweep against the grid to figure out where the robot stands. Its cost is memory and detail: a tiny cell size captures fine structure but eats storage, and because the world is sliced into squares, thin or oddly angled objects can get blurred across cell edges.

Also calledoccupancy grid栅格地图占用栅格地图

An ocean current is a great river running through the sea — a steady, large-scale flow of seawater that can stretch for hundreds or thousands of kilometres and keep drifting broadly the same way, though it bends and wanders as it goes. Unlike the river in your town, it has no solid banks like a river on land; it is simply a wide ribbon of water sliding through the surrounding ocean. Near the surface, currents are pushed along by the wind above and steered by the planet's spin and the shape of the coasts, while deeper ones are driven mostly by differences in water density.

These currents are the world's central heating. They scoop up warmth from the sunny tropics and carry it toward the chilly poles, then return cold water back the other way. The most famous is the Gulf Stream, which ferries Caribbean warmth across the Atlantic — which is why Britain and Ireland stay mild and green in winter, even though they sit as far north as frosty Labrador in Canada.

A common misconception is that ocean currents are just the surface waves and tides you see at the beach. Some are something far bigger and slower: a deep, globe-spanning conveyor belt whose deepest waters can take roughly a thousand years to complete one full loop — a millennium-scale journey that belongs to the deep overturning, not to fast surface currents like the Gulf Stream, which circle round in a matter of years. Quietly, all of them help shape climate, weather, and where fish gather along the way.

Also calledGulf Streamthermohaline circulationglobal conveyor belt墨西哥湾流热盐环流洋流環流

Odometry is how a robot figures out where it has moved by watching its own motion, step by step, and adding up all those tiny steps. It does not get told its position from outside; instead it asks, over and over, "how much did I just turn and how far did I just roll?" and keeps a running total. The word comes from the old practice of measuring a journey by counting the turns of a wheel — like a car's odometer ticking up the miles, except a robot tracks not just distance but the changing direction too, so it can trace out the whole winding path it took.

The way it works is to take small, frequent measurements of incremental motion — a wheel encoder noticing the wheels turned a quarter rotation, a camera noticing the scene slid a little to the left — and stitch them into a guess about the robot's pose, meaning its position and which way it is facing. Each measurement on its own is almost trivial, but chained together they reconstruct the journey. The catch is that every tiny step carries a tiny error, and because odometry adds step onto step, those errors pile up: the estimate slowly slides away from the truth the longer the robot travels, which is why odometry is usually corrected by an outside reference like GPS or a recognized landmark before the drift grows too large.

Odometry matters because it is the cheapest, most always-available sense of self-motion a robot has — it needs no satellites, no map, no external beacons, just attention to its own moving parts. It is the dependable backbone that fills in the gaps between rarer, more trustworthy fixes, giving the robot a smooth, continuous sense of where it is even in places where nothing outside can tell it.

Also calledodometric estimation里程估计里程推算

Ohm's law is the first tool every electrical engineer reaches for, and it fits in one tidy line: V = I × R. Voltage equals current times resistance. Picture water in a pipe: voltage is the pressure pushing it, current is how much water flows past each second, and resistance is how narrow the pipe is. Squeeze the pipe (more resistance) and less flows; push harder (more voltage) and more does.

The real magic is that you only need to know two of the three values to find the missing one — just rearrange the line. Want the current? I = V ÷ R. Want the resistance? R = V ÷ I. Say you put 9 volts across a 3-ohm resistor: the current is 9 ÷ 3 = 3 amps. This single relationship lets you size a resistor, predict a current, or check a circuit — the everyday workhorse behind almost every design.

Also calledV = I R欧姆定律歐姆定律

An olfactory receptor is a tiny protein "lock" sitting on the surface of smell-sensing nerve cells high up inside your nose. When you sniff a slice of pizza, a rose, or spilled gasoline, you are breathing in floating molecules that broke loose from those things. Each of these airborne molecules is shaped a certain way, and an olfactory receptor only reacts when a molecule with the matching shape drifts in and fits into it — like a key sliding into the right lock. That fit is the very first step of smelling anything: the moment a molecule lands and clicks, the cell wakes up and starts shouting "I found something" to your brain.

Here is the clever part: humans have about four hundred different kinds of these receptors, but far more than four hundred smells in the world. So a single odor molecule usually fits — loosely or snugly — into several different receptors at once, and most everyday smells are mixtures of many molecules. Your brain reads the whole pattern of which receptors fired and how strongly, the way you'd recognize a song not from one note but from the full chord. That is why coffee, cut grass, and your grandmother's kitchen each produce their own unmistakable combination, and why losing or scrambling these receptors (as can happen with a cold or certain illnesses) makes the world go strangely flat and flavorless.

When a molecule fits into the receptor, the receptor changes shape and triggers a chain of chemical steps inside the cell that turns the chemical event into an electrical signal — a small nerve pulse. That pulse travels up a short fiber into the smell-processing patch at the front-bottom of the brain, where signals from many cells are sorted and combined into the experience you finally notice as "this smells like cinnamon." In other words, olfactory receptors are the translators that convert the chemistry of the air into the language the brain understands.

Also calledsmell receptorodorant receptorOR气味受体嗅觉受体氣味受體嗅覺受體

An oligodendrocyte is a kind of support cell — not a neuron — found in the brain and spinal cord, which together make up the central nervous system. Its job is to wrap a fatty, insulating layer called myelin around the long signal-carrying fibers of neurons, the way you might wrap shiny tape around a bare electrical wire. That insulation keeps the electrical signal strong and lets it travel much faster, so messages between brain cells arrive quickly instead of leaking away. The name simply means "a cell with few branches," describing its modest, spidery shape.

What makes an oligodendrocyte special is that a single one can reach out with many flat arms and wrap many different fibers at once — often dozens of separate stretches belonging to different neurons. Picture one octopus whose arms each spiral around a different cable. This is one of the big differences from its cousin in the rest of the body, the Schwann cell, which can only wrap one fiber. By insulating so many connections, oligodendrocytes help the central nervous system run efficiently and even fine-tune how fast different circuits communicate.

These cells matter enormously for health. When their myelin is attacked or breaks down — as in the disease multiple sclerosis — signals slow, stutter, or fail, and people can lose control of movement, vision, or sensation. Oligodendrocytes are also slow and limited at repairing themselves, which is part of why damage to the brain's wiring can be so lasting, and why scientists study how to coax these cells to rebuild lost insulation.

Also calledoligodendrogliaCNS myelinating glia少突胶质细胞寡突胶质细胞寡突膠質細胞

An omnidirectional drive is a wheeled system that lets a robot glide in any direction across the floor — forward, sideways, diagonally, or spinning — without first having to turn its body to face that way. A normal car has to nose around and aim before it can go where it wants; an omnidirectional robot can simply slide straight left into a parking spot, like a chess piece lifted and set down, while still facing forward the whole time. It is the closest a ground robot gets to moving as freely as a hovering puck on an air-hockey table.

The trick lives in the wheels themselves. Ordinary wheels grip the floor sideways and refuse to slide that way, which is what blocks a car from moving sidewards. Special wheels get around this: an omni wheel has a ring of small free-spinning rollers around its rim, and a mecanum wheel has rollers set at a 45-degree angle. These little rollers let the wheel skate freely along its axle while still pushing forward as normal. By spinning three or four such wheels at carefully chosen speeds and directions, the robot adds up their pushes into a single combined motion that can point any way at all — and can translate and rotate at the same time.

This freedom is gold in tight, crowded spaces: warehouse robots that must shimmy sideways between shelves, competition robots that dart in any direction, and factory carts that dock precisely without a three-point turn. The price is that omni and mecanum wheels are more complex, more expensive, and less efficient than plain wheels — those side rollers slip a little, waste some energy, and dislike rough or dirty floors — so designers choose them only when the ability to move every which way is worth more than simple, rugged rolling.

Also calledholonomic driveomni drive全向移动麦克纳姆轮驱动

On-chip crosstalk is the quantum-processor version of an old, ordinary annoyance: you try to talk to one thing and accidentally nudge its neighbors too. A quantum chip is a crowded little city of qubits, control lines, and readout wires packed micrometers apart, and the laws of electricity do not respect the labels you put on them. A microwave pulse you send to flip qubit A leaks a faint copy onto qubit B; a flux current meant to tune one qubit bends the frequency of the one beside it; and even when you send nothing at all, neighbors can keep quietly tugging on each other. Each stray nudge is small, but quantum gates need to be precise to a fraction of a percent, so small errors that pile up across many qubits are exactly what corrupts a computation.

Crosstalk shows up through several physical channels, and good chip design fights each one. Capacitive and inductive coupling let a signal jump across a gap or through a shared magnetic field, so layout spreads things out, adds grounded shielding, and uses airbridges to stop ground planes from splitting into noisy islands. Classical drive leakage, where a control pulse simply spills onto the wrong qubit, is tamed by filtering, careful routing, and spacing qubit frequencies apart so a tone meant for one is off-key for the others. The subtlest channel is the always-on ZZ interaction: two fixed qubits sitting near each other shift one another's frequency a little all the time, even when idle, slowly smearing the phase of any computation. Tunable couplers exist largely to switch that ZZ term off between gates.

The honest picture is that crosstalk is never fully eliminated, only pushed down and budgeted for. You measure it, model it, and correct for what you can in software by tweaking pulses to pre-compensate, but every wire you add to control more qubits is another path for signals to leak. This is one reason today's processors stay small and noisy: as you pack qubits tighter to scale up, crosstalk and frequency crowding get worse together, and managing them is a central, unglamorous part of why building a bigger quantum chip is so hard.

Also calledsignal crosstalkqubit crosstalkcontrol crosstalk串扰信号串扰串擾訊號串擾

Picture two identical runners trained at the same gym, fed the same diet, given the same shoes. On paper they should finish a lap in exactly the same time. In practice one is always a hair faster, because no two bodies are truly identical down to the last fiber. The same thing happens to two supposedly identical timing paths sitting side by side on one die. Even after you've fixed a process corner — one global condition like slow-slow silicon, low voltage, hot temperature — tiny differences still vary from spot to spot across that single chip: a transistor's gate is a fraction of a nanometer longer here, the dopant atoms landed a little unevenly there, a wire etched slightly narrower, the supply rail sags a few millivolts in the middle of a busy block, one corner of the die runs warmer than another. On-chip variation (OCV) is the name for all that scatter that lives WITHIN one die, so two cells of the same type don't deliver exactly the same delay, and two matched paths don't run at exactly the same speed.

Why does this matter for signoff? Because a setup check pits the launch path that sends the data against the capture clock that catches it, and a hold check is even more brittle. If the data path happens to land on slightly slow silicon while the capture clock lands on slightly fast silicon, the gap closes and a path that looked safe at the corner can actually fail. The corner alone can't see this — it assigns one speed to the whole die. So signoff de-rates the timing on top of the corner: for a setup check it deliberately slows down the data path and the launching clock that carries it, and speeds up the capturing clock that sets the deadline (the directions flip for a hold check), each by a small derating factor, buying margin to absorb the worst plausible mismatch between the two. Crude flat OCV just multiplies every delay by a fixed percentage, which is pessimistic because it assumes every cell on a long path drifts the wrong way at once. Modern signoff is smarter: advanced OCV (AOCV) shrinks the derate as a path gets longer (random errors partly cancel) and as it gets physically shorter, while parametric/statistical OCV (POCV/SOCV, often via Liberty LVF data) gives each cell its own sigma and combines them statistically — so you pay only the margin you actually need.

The practical art is removing pessimism you don't deserve. Where the launch and capture clocks travel the same shared wires before they split, that common segment can't really be fast for one and slow for the other at the same instant, so the tool credits it back — this is common-path pessimism removal (CPPR, also called CRPR). The net effect is that OCV is the layer of safety margin you add BEYOND the corner to honor a simple truth: a single die is not uniform, and timing that closes only because both halves of a check were assumed identical will betray you in silicon.

Also calledon-die variationOCVintra-die variationwithin-die variation片内偏差晶粒内偏差晶片內變異

Online decoding means reading the live brain signal and acting on it right away, as it streams in. This is the opposite of offline decoding, where you record everything first and analyse it later at your leisure — useful for research, but useless for actually steering a cursor or a wheelchair. To be online, the system has to take in fresh signal, extract features, run the decoder, and move the device, all on the fly.

The catch is speed. For the loop to feel natural and responsive, it usually has to close in well under a second — ideally in tens to low hundreds of milliseconds — from brain activity to action on screen. Any longer and the lag breaks the sense of control, much as a video call with a long delay makes conversation awkward.

Running in real time also forces hard choices the offline world avoids. The decoder cannot peek at the future, every step must be quick and reliable, and the user is reacting to the system's output even as it reacts to them, so small errors and delays feed back on each other. Making all of that smooth is much of the craft of building a usable BCI.

Also calledreal-time decodingonline BCI实时解码即時解碼

A kinematic chain is just a string of rigid parts (links) hooked together by joints that let them move. The big question is how those parts are wired up: does the chain have loose ends, or does it close back on itself into a loop? An open chain is like your own arm. Starting at your shoulder, the parts run one after another out to your fingertips, and the far end is free to wave around in the air. Nothing connects the hand back to the shoulder, so each joint can be moved on its own without fighting the others.

A closed chain has at least one loop, where the parts connect back around to form a ring. Think of your two legs while you stand with both feet planted on the floor: hip to thigh to shin to foot on the left, the same on the right, and the floor ties the two feet together, closing the loop through the ground. Now the joints are no longer free agents. Because the loop has to stay closed, bending one knee forces the other joints to adjust to compensate; their motions are tied together by constraints, like people holding hands in a circle who can't all step in different directions.

This single difference shapes a robot's whole personality. Open chains are easy to command and can reach far and into awkward spots, but they tend to be floppier and weaker because each joint alone bears the load. Closed chains are stiffer, stronger, and more precise because several parts share the work, but their tangled constraints make them trickier to control and they usually can't reach as far. Most robot arms are open chains; many fast, powerful, or high-precision machines are built as closed ones.

Also calledopen chainclosed chain开式运动链闭式运动链

These are the two basic ways a machine can carry out a command. Open-loop control means commanding blindly: you send out an instruction and simply trust it works, never checking the result. Closed-loop control means measuring what actually happened and feeding that measurement back in to adjust the command until reality matches the goal. The vivid contrast is making toast two ways — setting a timer and walking off (open loop: it might come out pale or burnt, you'll find out later) versus standing there watching the bread and pulling it the instant it turns golden (closed loop).

Open loop is simpler, cheaper, and faster because it needs no sensors and never second-guesses itself — a microwave running for ninety seconds, a sprinkler on a clock, a stepper motor told to take exactly two hundred steps. It works beautifully as long as the world behaves exactly as assumed. But it has no idea when it is wrong: if the food was frozen, the soil already wet, or the motor slipped, an open-loop system sails on cheerfully producing a bad result, because the 'loop' from output back to input is left open and broken.

Closed loop costs more — it needs sensors, comparison, and careful tuning — but it earns that cost by staying accurate in a messy, changing world. The word loop refers to the circle of information: command goes out, the sensor reads the result, that reading comes back and reshapes the next command, closing the circle. Almost every robot that has to be precise or safe runs closed loop; open loop survives where the task is cheap, predictable, and forgiving.

Also calledopen loopclosed loop开环与闭环開迴路與閉迴路

Operant conditioning is how we learn from the consequences of what we do. When an action brings something good, we tend to do it more; when it brings something bad, we tend to do it less. Think of a dog that sits and gets a treat — it learns to sit again, because last time sitting paid off.

The American psychologist B. F. Skinner developed and named this framework starting in the 1930s, building on Edward Thorndike's earlier Law of Effect — the idea that actions followed by good outcomes tend to be repeated. Skinner's tool was a small box, now called the Skinner box. A rat inside it would, by accident, bump a lever and receive a food pellet. Soon the rat was pressing the lever on purpose. The reward had reshaped its behavior. We are all in larger boxes: a bonus at work, a like on a photo, a scolding for being late — each consequence quietly tilts what we do next.

One thing trips people up: reinforcement and punishment are about whether a behavior goes up or down, not whether something feels pleasant. And a key cousin of reward is escape — a behavior that makes something unpleasant stop (like taking an aspirin to kill a headache) gets reinforced just as strongly as one that brings a treat.

Also calledinstrumental conditioninginstrumental learningSkinnerian conditioning工具性条件作用工具制約

The operating system is the master program that runs the whole machine — Windows, macOS, and Linux are the ones you've heard of. It's the first thing that loads when you press the power button, and it stays in charge the entire time, managing the hardware and running every other program on top of itself. Without it, a computer is just a pile of silicon that doesn't know what to do.

Its main job is to be the middleman between your apps and the raw hardware. When your editor wants to save a file, it doesn't poke the disk directly — it asks the OS, and the OS handles the messy details. Same for showing a window, playing a sound, or reaching the network. This lets app makers write 'save this file' once instead of learning the quirks of a thousand different disks.

It's also the traffic cop. Dozens of programs want the CPU, the RAM, and the screen all at once, and the OS decides who gets what and when — slicing the CPU's time between them so fast that they all seem to run together. It keeps them from trampling each other's memory, too, so one crashing app doesn't take the whole machine down with it.

Also calledOSWindowsmacOSLinux

An operational amplifier, or op-amp, is a tiny chip that does one thing with absurd enthusiasm: it watches two input wires and amplifies the difference between them by a colossal amount. Think of an obsessive referee with a megaphone — feed in two voltages a hair apart, and the op-amp blasts the gap into a huge swing at its output. On its own this raw gain is too wild to be useful; it slams to one extreme or the other at the faintest nudge.

The trick is feedback: you route part of the output back to the input, which tames that wild gain into something precise and obedient. Now the same chip can amplify a microphone exactly ten times, add two signals, subtract one from another, or compare two voltages and snap to a decision. A handful of op-amps and resistors becomes a hearing aid, a sensor reader, or a filter — which is why the op-amp is the quiet workhorse inside almost every analog and mixed-signal circuit.

Also calledop-ampopamp运放運算放大器

Opportunity cost is what you give up to get something else — the value of the next-best thing you could have done instead. Every choice quietly closes a door. Spend a free Saturday hiking, and the real cost isn't the trail fee; it's the nap, the movie, or the overtime pay you waved goodbye to. The price tag tells you what leaves your wallet; opportunity cost tells you what leaves your life.

This is why it matters so much: smart decisions weigh not just the cash, but the best alternative you're sacrificing. A company sitting on a pile of money hasn't "spent" nothing by letting it sit — it has given up whatever that money could have earned elsewhere. Time, attention, and land all carry the same hidden cost, even when no money changes hands.

The common trap is to count only what you pay out of pocket. A "free" two-hour meeting isn't free if those two hours could have closed a sale. There's always a next-best option lurking in the background, and its value is the truest measure of what your choice really cost.

Also calledopportunity costalternative cost机会成本機會成本OpportunitätskostenAlternativkosten

Optical flow is the pattern of apparent movement you see when you watch one video frame turn into the next. Picture two photos taken a fraction of a second apart: almost everything is in the same place, but a few patches of the image have shifted a little — a passing car slid to the right, a hand drifted upward. Optical flow draws a tiny arrow on every pixel showing which way and how far it seems to have moved between the two frames. Stack all those arrows together and you get a field of motion, a map of how the whole picture is flowing.

The word apparent matters: optical flow only knows that pixels moved, not why. The same rightward arrows could mean the car drove right, or the camera panned left, or both. A computer estimates this flow by assuming a small bright spot keeps roughly the same brightness from one frame to the next, then asking, for each patch, where did that brightness go? Matching the patches gives the arrows. It works beautifully when motion is small and smooth, and struggles on blank walls (no texture to track) or when things move too fast between frames.

For a robot this flowing field of arrows is a rich, cheap clue about motion using nothing but a plain camera. If the whole field streams outward from a central point, the robot is moving forward (everything rushes past faster at the edges, like the view through a car windscreen); and as the robot moves through the world a nearby object produces big arrows while the far background barely shifts, hinting at distance — though that depth cue only holds while the camera travels, not when it merely turns in place, since a pure rotation moves near and far alike. A patch of arrows running against the grain flags something that is moving on its own. Robots use optical flow to hold a steady hover, dodge oncoming obstacles, and gauge their own speed — much as a bee judges its flight by the world streaming past its eyes.

Also calledmotion fieldapparent motion field光流场光流場

Optimal control is the art of choosing, out of all the possible ways a robot could move from here to its goal, the one that is best by some clear measure you decide ahead of time. Imagine driving across town. There are countless routes, but you might want the one that uses the least fuel, or arrives soonest, or brakes the gentlest. Optimal control turns that vague wish into a precise number — a cost — and then hunts for the exact sequence of steering, gas, and braking that makes that number as small as possible.

The heart of it is the cost functional: a single running tally that adds up everything you care about over the whole journey, not just at one instant. Maybe each second of lateness adds a little cost, each hard jerk adds a little more, each drop of fuel a little more still. Because the tally stretches across the entire trajectory — the full path through time — the best choice now depends on what happens later. A move that looks wasteful this second might be the only way to avoid a far costlier scramble down the road, and optimal control accounts for that whole future.

This is the big idea that many famous controllers are special cases of. When the system is simple (linear) and the cost is written as squares, optimal control collapses neatly into the linear-quadratic regulator. When you must also respect hard limits — a motor that can only push so hard, a joint that cannot bend past a stop — and you re-solve the problem again and again as you go, you get model predictive control. Optimal control is the parent idea; those are its well-behaved children.

Also called最优控制理论最佳控制理論

Optogenetics is a way to switch chosen brain cells on or off using flashes of light, like a remote control that only the wired-up cells obey. Scientists first borrow genes from light-sensitive microbes such as algae. These genes carry the instructions for building tiny proteins called opsins, which sit in a cell's outer wall and act like doors that open when light hits them. By delivering these genes into only the neurons they care about, researchers turn those specific cells into the only ones in the brain that respond to light, while every other cell stays unaffected.

Once a target neuron is making opsins, shining the right color of light through a thin fiber makes the doors snap open in about a thousandth of a second. Some opsins let in positive ions that fire the neuron, switching it on; others let in negative ions or pump them around to hush the neuron, switching it off. Because light can be turned on and off almost instantly, scientists can play a precise rhythm of activity into a single cell type and watch what changes in behavior, memory, or movement. This pinpoint timing and cell-by-cell selectivity is why optogenetics transformed how researchers test what each part of a living, behaving brain actually does.

Also calledlight-controlled neurons光控神经元光控神經元

An orbit is the looping path one object traces around another, held in place by gravity. Earth circles the Sun, the Moon circles Earth, a satellite circles the planet — each one falling endlessly around its partner without ever crashing down.

The trick is a balance of two things: the body is racing sideways fast enough that, as gravity tugs it inward, it keeps missing the ground. Imagine throwing a ball so hard it curves with the Earth and never lands — that sideways speed is what an orbit lives on. Too slow and its path dips back down to the surface; too fast and it escapes into space.

And orbits are not perfect circles. Most are gentle ellipses — slightly squashed ovals — so a planet swings a little closer to the Sun at one point and a little farther at another, speeding up when near and slowing down when far.

Also calledorbital pathrevolution公转环绕繞行

Orexin (also called hypocretin) is a small signaling molecule, a peptide, made by a tiny cluster of cells deep in the brain in a region called the hypothalamus. Think of it as the hand that holds the light switch of wakefulness firmly in the ON position. When orexin is being released, you stay clearly, steadily awake; when its grip loosens, the switch starts flickering and you drift toward sleep.

These orexin cells reach out to many of the brain's other arousal systems and keep them all switched on together, so that being awake feels like one smooth, continuous state instead of a series of stop-and-start moments. Its real importance becomes obvious when it is lost: in the sleep disorder narcolepsy, most of the orexin-making cells die off, and without that steady hand the boundary between waking and sleeping collapses. People feel overwhelmingly sleepy during the day, can fall asleep without warning, and may suddenly go limp with strong emotion (a feature called cataplexy), as if a piece of dreaming sleep has leaked into waking life.

Also calledhypocretin下丘脑分泌素下視丘分泌素增食欲素

An organ-on-a-chip is a small, clear plastic device — about the size of a memory stick — with tiny channels lined by living human cells. Fluid flows through the channels carrying nutrients and oxygen, and the cells are arranged so they behave like a slice of a real organ. A lung chip can have an air side and a blood side; a gut chip can flow fluid past cells the way food moves through your intestine.

The 'micro' part is microfluidics: hair-thin channels that let researchers pump liquid, stretch flexible walls to imitate breathing, and recreate the gentle flow cells feel inside the body. Because the cells get realistic mechanical and chemical conditions, they act far more like living tissue than cells sitting still in a flat dish. Some chips even connect several organs in series so a drug can travel from a gut chip to a liver chip, just as it would in a person.

These chips matter because they offer a more human-like way to test drugs and study biology before any human or animal is involved. They can reveal toxic effects or how a tissue responds in a controlled, repeatable setup. A chip is a clever model, though — it captures key features of an organ, not the full living organ with all its complexity.

Also called器官芯片器官晶片微流控器官芯片OoC

An organoid is a tiny, three-dimensional 'mini-organ' grown from stem cells in a lab dish. Given the right nutrients and signals, the cells do something remarkable on their own: they sort themselves, fold, and assemble into a pea-sized clump that copies some of the real organ's structure and behaviour. Scientists have grown mini-guts that form crypts, mini-livers that make liver proteins, and mini-brains with layered tissue.

The trick is self-organization. Instead of an engineer placing each cell by hand, researchers supply the same chemical cues a real embryo uses, and the cells follow their built-in instructions to build the shape themselves — much like how a single seed already 'knows' how to grow into a sprout. The result is far more lifelike than flat cells in a dish, because the cells touch, signal, and arrange in three dimensions the way they would inside a body.

Organoids matter because they let scientists watch a living human-like tissue up close without experimenting on a person. They are used to study how organs form, to model diseases with a patient's own cells, and to test how drugs behave. They are powerful research tools, not replacement organs — a mini-gut in a dish is still far simpler and smaller than the real thing.

Also called类器官類器官mini-organ

Orientation is which way a body is turned, regardless of where it is. Position tells you where a thing sits; orientation tells you how it is rotated once it is there. Hold a book at a fixed spot in the air and slowly twist it — the position never changes, but the orientation does. A coffee cup right-side-up and the very same cup tipped on its side share a position but have completely different orientations, and to a robot that wants to pour without spilling, the orientation is the part that matters.

Here is the subtle part: describing orientation needs three independent numbers, just like position, but they behave far more awkwardly. You can keep adding a metre of position forever, but spin something a full turn and it is right back where it started, so the numbers wrap around. Different turns also do not stack up the way distances do — twisting then flipping a box lands it differently from flipping then twisting. Because rotation is this slippery, engineers use several different bookkeeping schemes to write it down, each with its own strengths and headaches.

Those schemes are the next several ideas in this chapter: a rotation matrix (a tidy grid of nine numbers), Euler angles (three intuitive tilt-and-spin angles, which can jam in a trap called gimbal lock), axis–angle (one direction to spin around plus how far), and the quaternion (four numbers that turn smoothly and never jam). They are all just different languages for saying the same thing — the orientation — and a robot constantly translates among them. Pin down a body's position and its orientation together and you have its full pose: everything you need to say exactly how it is placed in space.

Also calledattitudeheadingrotational pose朝向姿向姿勢

An ORM is a tool that lets you work with database rows as ordinary objects in your code, so you can read and save data without hand-writing SQL for every little thing. You call user.save() or User.find(1), and the ORM quietly translates that into the SELECT and INSERT statements the database actually wants.

Think of it as a bilingual go-between. Your code speaks in objects and methods; the database speaks in tables and SQL. The ORM sits in the middle, turning a row of columns into a tidy object you can poke at, and turning your changes back into SQL when it's time to save.

The appeal is less boilerplate and code that reads like your problem instead of like database plumbing. The catch is that the convenience can hide what's really happening — an innocent-looking loop might secretly fire hundreds of queries — so it pays to know the SQL underneath even when the ORM is writing it for you.

Also calledobject-relational mappingdata mapperprismasqlalchemyactive record

Overfitting is what happens when a learning model studies its practice examples so obsessively that it memorizes them instead of understanding them — quirks, noise, lucky accidents and all. Picture a student who crams a past exam paper word for word: ask the exact questions and they ace it, but change a single number and they're lost. The model aced the practice and flunked the real thing.

This matters because the whole point of machine learning is to do well on data it has never seen — to generalize. An overfit model looks brilliant on its training data and disappointing everywhere else, so its glowing practice scores are a mirage. The fix is to stop the model from clinging too tightly: feed it more and more varied examples, keep it simpler, or apply regularization — a gentle penalty that discourages it from chasing every last wrinkle in the data.

A common mix-up: overfitting is not the same as a model simply being wrong. An overfit model is, if anything, too right about the training set — it has learned the answers by heart. Its twin sin is underfitting, where the model is too crude to capture even the real pattern. Good learning threads the needle between the two.

Also calledoverfithigh variance过拟合過度擬合overtraining

Redox is chemistry's great game of give-and-take, played with electrons. In every redox reaction one substance loses electrons — we say it is oxidized — while a partner grabs them and is reduced. The two always happen together, like a handoff: there is no giver without a taker. When an iron nail turns to rust, iron atoms are handing their electrons to oxygen from the air.

This single trade powers a startling range of the world. The breath in your lungs feeds a slow, controlled redox that burns sugar to release energy and keep you alive. A battery is just two redox reactions kept in separate rooms, forced to send their electrons the long way around — through your phone — to meet. Fire, bleach, photosynthesis, the browning of a cut apple: all are electrons changing hands.

A common confusion is the name. "Oxidation" sounds like it must involve oxygen, and historically that's where the word came from — but oxygen is optional. The real signature of oxidation is simply losing electrons, whether the thief is oxygen, chlorine, or something else entirely. A handy memory aid: OIL RIG — Oxidation Is Loss, Reduction Is Gain (of electrons).

Also calledredoxredox reactionoxidationreduction氧化还原反应氧化還原反應OIL RIG

Oxytocin is a tiny chemical messenger, a string of just nine building blocks called a peptide, made by a cluster of cells deep in the brain in a region called the hypothalamus — the body's master control hub. From there it travels a short distance to the pituitary gland, a pea-sized gland hanging just below the brain, which squirts it into the bloodstream like a hose feeding the whole body. The same molecule also acts as a signal inside the brain itself, so it works in two ways at once: as a hormone carried by the blood, and as a brain messenger passed between nerve cells.

Out in the body, oxytocin is the muscle-squeezing signal of birth and nursing: it makes the womb contract to push a baby out during labour, and it triggers the breast to release milk when a baby suckles. Inside the brain, it gently tunes how we feel about each other — easing a mother's bond with her newborn, deepening the warmth between partners, and nudging up feelings of trust, calm, and closeness. This is why it is nicknamed the love or bonding hormone, though the real picture is subtler: rather than simply switching on good feelings, it seems to sharpen our attention to social cues, making the people who matter feel more important to us.

Also calledthe love hormonethe bonding hormone爱的荷尔蒙愛的荷爾蒙

The ozone layer is Earth's built-in sunscreen — a thin haze of a special kind of oxygen sitting high in the stratosphere, roughly 15 to 35 kilometers up. Ordinary oxygen comes in pairs of atoms; ozone is a clingy trio, and that extra atom lets it soak up most of the Sun's harmful ultraviolet rays before they ever reach the ground. Spread it out at sea-level pressure and this whole protective shield would be no thicker than a couple of stacked coins.

Why care about a faint gas miles overhead? Because the UV it blocks is the same radiation that causes sunburn, skin cancer, and cataracts, and that can damage crops and plankton. In the 1980s scientists found a growing 'hole' over Antarctica, torn open by human-made chemicals — chlorofluorocarbons, or CFCs, once used in spray cans, fridges, and foam. The world responded with the 1987 Montreal Protocol, phasing those chemicals out, and the layer is now slowly healing. Most of the world is on track to recover to 1980 levels by around 2040, while the Antarctic hole itself is expected to close around 2066.

One common mix-up: the ozone layer and the greenhouse effect are different problems. The ozone hole is about UV-blocking gas being destroyed high up; global warming is about heat-trapping gases like carbon dioxide building up lower down. Fixing one does not fix the other — but the ozone story proves that when nations act together on the science, a planetary wound really can close.

Also calledozonosphereO₃ layer臭氧层臭氧層ozone shield
P

The P300 is a positive bump in the EEG that shows up roughly 300 milliseconds after something rare, meaningful, or surprising catches your attention. It is the brain's involuntary "oh, that one!" reaction — you do not have to decide to make it happen; it just fires when a stimulus you care about stands out from the ordinary ones around it.

Because the bump is tied to what you are paying attention to rather than to any muscle movement, it gives a BCI a clean handle on a person's focus. A system flashes many options and watches for the telltale 300 ms wave; whichever option triggered it must be the one you were waiting for. This is the engine behind P300 spellers, which let people type just by attending to a letter.

Also calledP3P300 waveP3b

A P300 speller is a way to type using attention alone. Letters and symbols are laid out in a grid on a screen, and the rows and columns flash in a quick, shuffled order. The user just looks at — and silently attends to — the letter they want, doing nothing else.

Each time the row or column containing that target letter flashes, it counts as a rare, meaningful event, and the brain answers with a P300 bump. Because the flashes that crossed your chosen letter are the ones followed by that bump, the system can work backward from the timing of the P300 to figure out exactly which letter you meant.

It is slow compared with a keyboard, but it asks almost nothing of the body — no clicking, no speech, not even a steady gaze in many designs — which makes it valuable for people who have lost most voluntary movement.

A package manager is a tool that installs and keeps track of the third-party libraries your project relies on. Think of it as an app store for code: you ask for a library by name, and it fetches that library — plus everything that library itself needs — and tucks it all into your project.

It also remembers your choices. A small list file records exactly which libraries and versions you asked for, so a teammate (or a server) can reproduce the very same setup with one command.

You'll meet a different one in each ecosystem: npm for JavaScript, pip for Python, cargo for Rust. Different names, same job — so you never have to hunt down and hand-copy someone else's code again.

Also callednpmpipcargoyarnpnpmdependency manageraptbrew

A parallel manipulator is a robot whose moving platform is held and steered by several legs at once, all pushing or pulling on it side by side rather than in a single line. Picture a small tabletop suspended above a base by six adjustable struts: lengthen and shorten the struts in different combinations and the tabletop tilts, rises, slides, and twists. Because many legs grip the same platform, the chain loops back on itself — it is a closed-chain design, the opposite of the single-line serial arm.

Sharing the load across several legs is what gives these robots their superpowers. The platform is extremely stiff and steady, since each leg braces the others, and it can move astonishingly fast and precisely because the heavy motors can all sit down on the fixed base instead of being carried out along the arm. The famous delta robot — three thin arms dangling from above to flick a lightweight gripper — uses this trick to pick and place hundreds of small items a minute, far quicker than any serial arm could fling its own bulk around.

The price is reach and freedom. With the legs all tied to one platform and to each other, they constantly get in each other's way, so a parallel robot can only roam a small, awkwardly shaped region and usually can't twist as freely as an arm. Figuring out how to drive all the legs together to land the platform exactly where you want is also mathematically thornier. So engineers reach for parallel designs when they need speed, stiffness, or pinpoint accuracy in a compact space — flight simulators, machine tools, and high-speed packing lines — rather than long, dexterous reach.

Also calledparallel robotStewart platformdelta robot并联机器人並聯機器人

Parameter variability is the plain fact that no two devices come out of fabrication exactly alike. Build a wafer full of qubits with the same mask and the same recipe, and they still differ: each junction's resistance lands a little off, each qubit's frequency sits a little above or below where you aimed, and even their coherence times scatter. It is the quantum-chip version of something every factory knows — make a thousand of anything and you get a distribution, not a single value. The trouble is that quantum processors are far less forgiving of that spread than ordinary chips, so a few percent of variation that nobody would notice in a logic gate can quietly wreck a whole qubit lattice.

Where does the spread come from? Mostly from how thin and delicate the critical features are. A Josephson junction's behavior is set by an oxide barrier only a couple of nanometers thick, so a variation of a single atomic layer across the wafer changes its resistance, and resistance maps directly onto frequency. Lithography edges wander by a few nanometers, oxide grows slightly unevenly, films vary in thickness from center to edge, and stray two-level-system defects land in different spots on different qubits. None of these is a mistake; they are the irreducible noise of building something at the atomic scale. The result is a cloud of as-fabricated parameters scattered around the design target, and the width of that cloud is what engineers fight to shrink.

This variability is the root cause sitting underneath frequency crowding and poor yield: you cannot place a clean grid of qubit frequencies if fabrication hands you a random scatter instead. Two lines of attack help. Tighter process control — steadier oxidation, better lithography, more uniform films — narrows the spread at the source. Post-fabrication trimming, like aging or laser-annealing individual junctions, nudges stray devices back toward target afterward. Both genuinely help, but neither has eliminated the problem: across a large wafer the spread is still wide enough that hitting every qubit's target remains an open, actively worked challenge rather than a solved one.

Also calleddevice-to-device variationprocess spreadparameter spread器件间偏差工艺离散元件間偏差製程離散

When you draw a schematic, a wire is just a line with no cost — a perfect connection that delays nothing. Real metal is not so generous. Every wire on the finished layout has resistance, because metal isn't a perfect conductor, and capacitance, because it sits next to other wires and over the silicon, and any two conductors separated by an insulator store charge. Parasitic extraction is the step where the tool walks over the routed layout, looks at the exact geometry of every wire — its length, width, which metal layer it's on, what neighbors run alongside it — and computes those hidden R and C values. Nothing about the chip changes; extraction only measures what the routing already built. The result is a parasitics file, usually in the vendor-neutral SPEF format (Standard Parasitic Exchange Format), that lists the resistance and capacitance of every net so the timing tools can stop guessing and start using the truth.

This matters because those parasitics are what actually make signals slow. A driver has to charge up the capacitance of the wire through the wire's own resistance before the far end sees the new value, and the delay of a long, thin wire grows roughly with the square of its length — double the wire and you can quadruple its delay. Before routing exists, timing tools work from estimates (a wire-load guess, or a quick virtual route); after extraction, they swap in numbers derived from the real shapes, which is why post-route timing is the timing you trust. Extraction also captures the capacitance between a wire and its immediate neighbors, the coupling that lets one switching wire disturb another — the raw material for crosstalk and signal-integrity checks later in signoff.

Under the hood there's a speed-versus-accuracy dial. The gold standard is a field solver, which solves the electromagnetics of the 3D metal geometry almost exactly but is far too slow to run on a whole chip. So production tools mostly use rule-based or pattern-matching extraction: the foundry pre-characterizes thousands of common wire-and-neighbor configurations with a field solver, and the tool recognizes those patterns in your layout and looks up the answer. You reserve the slow, exact field-solver runs for the handful of critical or unusual nets where getting the number slightly wrong could sink your timing.

Also calledRC extractionextractionSPEF extraction寄生参数提取RC 提取寄生參數提取

Parkinson's disease is a slowly worsening brain disorder that makes movement stiff, slow, and shaky. The classic signs are a resting tremor (a rhythmic trembling, often in a hand, that shows up when the limb is relaxed), rigidity (muscles that feel tight and resist being moved), and bradykinesia (movements that become small and sluggish, so walking turns into a shuffle and the face loses its expression). Imagine trying to move while wading through thick honey — the body still works, but every action takes more effort and arrives a beat late.

Underneath, the trouble comes from the loss of a specific group of brain cells. Deep in the brain sits a small region called the substantia nigra, whose neurons make dopamine, a chemical messenger that helps the brain's movement-control circuits launch smooth, well-timed actions. In Parkinson's these dopamine-making cells gradually die off — a process called neurodegeneration — and as the dopamine supply drops, the movement circuits can no longer fire cleanly. Much of this damage is tied to a sticky protein called alpha-synuclein that clumps inside the neurons. By the time symptoms appear, a large share of these cells is already gone.

There is no cure yet, but treatments can ease the symptoms for many years. The mainstay is levodopa, a drug the brain converts into the missing dopamine, which often restores movement strikingly well at first. Other approaches include drugs that mimic dopamine, and for some people deep brain stimulation, in which thin electrodes deliver gentle electrical pulses to the faulty circuits. Parkinson's also reaches beyond movement, bringing changes in mood, sleep, smell, and thinking, which is why care usually treats the whole person, not just the tremor.

Also calledParkinson diseasePDparalysis agitans震颤麻痹震顫麻痹

A particle filter estimates where something is by maintaining a swarm of guesses instead of a single one. Each guess — a particle — is a complete possible answer: this exact spot, that exact angle. A robot dropped into a building with no idea where it started might launch a thousand particles scattered all over the floor plan, each saying my best bet is here. The whole cloud of particles together stands in for the robot's belief: where they bunch up, it thinks it probably is; where they thin out, it thinks it probably isn't.

The swarm improves through a survival-of-the-fittest loop. First, every particle is moved according to the robot's motion — if the robot rolls forward a meter, so does each particle, plus a little random jitter for uncertainty. Then a measurement arrives, say a laser scan, and each particle is scored by how well its predicted view matches what the sensor actually saw. Finally comes resampling: particles that scored well are copied, particles that scored poorly are discarded, so the swarm drifts and concentrates toward the truth. Run this loop fast enough and a wildly scattered cloud collapses onto the robot's real location within seconds.

The power of this approach is that it makes no neat assumptions. The Kalman family insists the belief is a single tidy bell-curve blob; a particle filter can hold a belief shaped any way at all — even several separate clusters at once, perfect for a robot torn between two identical-looking hallways. The price is computation: good accuracy can need thousands of particles, and the count must grow steeply as the problem gains dimensions, so it shines for things like 2-D robot localization but strains on very high-dimensional states.

Also calledsequential Monte Carlo蒙特卡洛定位蒙地卡羅定位

A passive BCI reads your mental state in the background — your mental workload, drowsiness, attention, or frustration — without you ever issuing a deliberate command. It watches rather than obeys. You are not trying to control anything; you simply go about your task while the system quietly takes the brain's pulse.

The point of all that watching is to let a system adapt itself around you. If it senses you are overloaded, a cockpit display might simplify; if it notices a driver nodding off, the car could sound an alert. The brain signal becomes one more input that helps the machine meet you where you are.

This sets passive BCIs apart from the active and reactive kinds, where you intentionally send commands. Because the reading happens without your conscious involvement, it raises sharper questions about consent and mental privacy — the system is, after all, inferring things about your inner state that you never chose to report.

Also calledpassive brain-computer interface

The patch-clamp technique is a way to eavesdrop on the tiny electrical currents that flow through a living cell's membrane. A researcher presses the polished tip of a fine glass pipette against the cell's surface and gently applies suction, forming a seal so tight that almost no current can leak around the edges. Through that little sealed patch of membrane, a sensitive amplifier can measure currents as small as those passing through a single ion channel — one of the protein pores that let charged atoms cross the membrane.

The same setup is wonderfully flexible. Left as it is, it records one channel at a time; if the researcher instead breaks through the membrane under the pipette, it reads the electrical behavior of the whole cell at once, including the voltage swings of an action potential — the brief electrical pulse a neuron uses to signal. The experimenter can also choose to hold the voltage steady and watch the current (voltage clamp), or hold the current and watch the voltage (current clamp), which together expose how a neuron's electrical machinery actually works.

Erwin Neher and Bert Sakmann developed the method in the late 1970s, and it gave neuroscience its first direct look at single ion channels opening and closing. They were awarded the 1991 Nobel Prize in Physiology or Medicine for the work.

Also calledpatch clampingsingle-channel recording膜片钳膜片鉗

In everyday talk "path" and "trajectory" sound like the same thing, but in robotics they are two distinct steps, and keeping them apart matters. A path is purely the shape of the route — the geometric line of poses the robot will pass through, from start to goal — with nothing said about timing. It is like a trail drawn on a map: it shows where to go but not how fast or when. A trajectory takes that same route and pins a clock to it: it says exactly where the robot should be at every instant, and therefore implies a speed and an acceleration at each moment. A path answers "which way?"; a trajectory answers "which way, and how fast at every step?"

Planning usually happens in that order for a good reason. First a planner finds a path — a clear, collision-free route through space — worrying only about geometry. Then a separate step, called time parameterization or trajectory generation, dresses that path with timing that the robot's motors can actually deliver: speeding up smoothly, slowing into corners, never demanding more force or velocity than the hardware allows. The same path can be turned into a slow, gentle trajectory or a fast, aggressive one. Splitting the work this way is powerful: the hard geometric question of avoiding obstacles is solved once, and the question of moving smoothly and within the robot's limits is handled afterward, on top of it.

Also calledpathtrajectory路径轨迹

Think of a single qubit as an arrow that can point anywhere on a globe (the Bloch sphere). The Pauli gates are the three simplest ways to flip that arrow halfway around the globe, one for each axis. X is the bit-flip: it swaps |0> and |1>, just like a classical NOT. Z is the phase-flip: it leaves |0> alone but flips the sign in front of |1>, which does nothing you can see directly in a single measurement but changes how the qubit interferes with others. Y does both at once, a bit-flip and a phase-flip together. Each gate is its own undo button: apply it twice and you are back where you started.

These three gates matter for a second reason that is easy to miss. When a qubit gets disturbed by noise, you can always describe what went wrong as some mix of 'a bit got flipped' (X), 'a phase got flipped' (Z), or both (Y). So the Pauli gates are not just operations you choose to run; they are also the standard vocabulary for the errors that quantum error correction has to detect and reverse. If a code can reliably catch X, Z, and Y errors on its qubits, it can in principle catch any single-qubit error, because every error is a combination of these. That is why you will see X, Y, and Z everywhere in discussions of how to build a reliable machine, not only in discussions of what the machine computes.

Also calledX gateY gateZ gatebit-flip and phase-flip gatesX 门Y 门Z 门比特翻转门相位翻转门X 閘Y 閘Z 閘位元翻轉閘相位翻轉閘

Payload and reach are two of the first numbers you check when sizing up a robot arm, much like the carrying capacity and the wingspan of someone moving boxes. Payload is the maximum weight the robot can safely hold and move at the end of its arm — not just the object itself, but also whatever gripper, suction cup, or tool is attached to do the holding. Reach is how far the arm can stretch out from its base, which sets the size of the space it can actually touch: a long-reach arm can serve a big work area, a short one only what is close by.

These two numbers pull against each other and against the rest of the design, which is why picking a robot is a balancing act. Holding more weight far out at the tip puts more strain on the motors and joints, so a robot rated for a heavy payload usually has a shorter reach, or must move more slowly and carry a sturdier, heavier build. Quote a payload too low and the arm strains, sags, or shuts down on safety; specify a reach too short and it simply cannot get to the far corner of the table. Engineers match both to the job — a delicate arm placing tiny electronic parts needs little payload but fine, precise reach, while an arm stacking crates onto a pallet needs a hefty payload and enough reach to span the whole stack.

Also calledpayload capacityworking envelope工作范围工作範圍

A peer-to-peer network is one where every computer talks directly to other computers as equals, with no central server in the middle. Each machine, called a node or a peer, is both a customer and a server at once — it asks others for information and serves up information in return. This is the opposite of the usual setup, where many users all connect to one company's central computer.

Nodes connect to a handful of neighbors, and information spreads by gossip: when a peer hears something new, like a fresh transaction or block, it passes it along to its neighbors, who pass it to theirs, until the whole network has it — much like word of mouth rippling through a crowd. There is no master copy and no single point that everything flows through, so the network has no obvious bottleneck and no single switch an outsider could flip to shut it down.

This architecture is the foundation that makes a blockchain decentralized and hard to censor. Because the ledger lives on thousands of equal peers spread around the world, there is no headquarters to raid, no central server to seize, and no single owner who can be pressured to alter the records. If some nodes go offline or get blocked, the rest carry on and the network keeps running. Peer-to-peer networking is, quite literally, the plumbing that lets a leaderless system exist at all.

Also calledP2Ppeer-to-peer点对点网络點對點網路对等网络對等網路

Sensation and perception are two steps in how your brain turns the outside world into experience. Sensation is the raw signal: the moment light hits your eye, a sound wave wiggles your eardrum, or pressure bends a tiny sensor in your skin, your nervous system fires off a stream of plain electrical pulses. That stream carries no meaning yet — it is like the pattern of light and dark dots arriving on a camera sensor, just numbers, before anything has been recognized. Perception is the next step: your brain takes those raw signals and interprets them, deciding 'that is my mother's face,' 'that is the word hello,' or 'that surface is rough and cold.' Sensation is what arrives; perception is what you make of it.

The gap between the two is easy to miss because perception usually feels instant and obvious — but your brain is doing enormous, hidden guesswork to bridge it. The same raw sensation can be perceived in completely different ways depending on context, attention, memory, and expectation. A blurry shape becomes a dog the moment someone says 'look at the dog'; an ambiguous sketch can flip between a duck and a rabbit while the dots hitting your eye never change; the identical patch of gray can look bright or dark depending on what surrounds it. This is why optical illusions work: they feed your senses one thing and trick your perception into reporting another. Understanding the difference matters because almost everything you consciously 'see,' 'hear,' or 'feel' is not the raw world itself but your brain's best interpretation of it.

Neuroscientists trace this split through the brain's wiring. Early sensory areas — like the first patch of visual cortex at the back of your head — handle something close to raw sensation, responding to simple features such as a tilted edge or a spot of color. As signals travel deeper and forward through the brain, layer after layer combines and reshapes them into richer, more meaningful patterns, until later regions recognize whole objects, faces, and words. So sensation lives mostly near where signals first enter, while perception is built up across many stages, blending incoming data with what you already know.

Also calledsensing vs interpreting感觉与知觉感覺與知覺

A perception–planning–control architecture is the standard way of organizing a robot's software into three stacked layers, like an assembly line for turning raw sensor data into motor commands. Perception is the first layer: it takes the flood of numbers coming from cameras, laser scanners, and other sensors and turns them into a tidy understanding of the world — where the walls are, where the cup is, how fast it is moving. Planning is the middle layer: given that understanding and a goal, it decides what to do — which path to follow, which object to grab, in what order. Control is the last link in the chain before the motors: it takes the plan and produces the exact, fast, moment-to-moment commands that drive the wheels or joints so the robot actually carries it out smoothly.

The reason engineers split the software this way is that each layer has a very different rhythm and job, so it is cleaner to build and fix them separately. Perception may chew on a whole camera image and only update a few times a second; planning might think for a fraction of a second about a route; control runs hundreds or thousands of times a second to keep a joint steady against gravity and friction. Information mostly flows forward — sensors feed perception, perception feeds planning, planning feeds control — and you can swap out or improve one layer (say, a smarter object detector) without rewriting the others, as long as they agree on what to hand across the boundary.

In practice the picture is rarely a strict one-way street. Fast feedback often loops back: control reports whether a motion succeeded, perception keeps watching to catch surprises, and planning replans when the world does not match expectations. Many modern systems also blend the layers — for example, a learned model that maps images almost directly to actions, collapsing perception, planning, and control together. Even then, this three-part way of thinking remains the mental map most roboticists use to reason about where a behavior is decided and where a bug might live.

Also calledperception-planning-control stack感知-规划-控制流水线感知-規劃-控制流水線PPC

A perceptron is the simplest artificial neuron: a tiny decision-maker that looks at several inputs, gives each one a weight saying how much it matters, adds them all up, and then flips a switch — yes or no — depending on whether the total clears a threshold. Picture a doorman deciding whether to let you in: height counts a little, the guest list counts a lot, and once the points add up past the cutoff, the answer is simply in or out.

What made it electric in 1958 was that it could learn. Show it examples labelled "yes" and "no", and every time it guesses wrong it nudges its weights a notch in the right direction. Do this enough times and it settles on a set of weights that draws a clean line between the two groups — handwritten apples on one side, oranges on the other — with nobody having programmed the rule by hand.

But there's a catch that became famous. A single perceptron can only separate things a straight line can split. Ask it to learn XOR — "yes when exactly one of two switches is on" — and it fails, because no single straight line can carve out that pattern. That limit chilled the field for years, until people stacked many neurons in layers and found a way to train them — which is exactly what modern neural networks do.

Also calledsingle-layer perceptronlinear threshold unitartificial neuronMark I Perceptron感知机单层感知器線性閾值單元

A perineuronal net is a dense, lacy mesh of molecules that wraps tightly around certain brain cells, like a string shopping bag hugging an orange. It is not made of cells but of the extracellular matrix — the scaffolding of sugary proteins and long chains called chondroitin sulfate that fills the spaces between neurons. The net leaves small holes exactly where other neurons connect, so the cell can still receive messages, but it holds those connections firmly in place.

These nets mostly form as a young brain finishes wiring itself, marking the end of a flexible "learning window" when connections rearrange easily. Once the net hardens around a neuron, it stabilizes the synapses already there and resists change — think of wet cement that has set. That makes circuits reliable and protects the cell, but it also limits plasticity, the brain's ability to rewire. Researchers can dissolve these nets with an enzyme, briefly reopening that youthful flexibility, which is why perineuronal nets are studied in memory, addiction, and recovery after injury.

Plasticity here means the brain's capacity to change its connections with experience; a synapse is the tiny junction where one neuron passes a signal to the next.

Also calledPNNperineuronal netsPNNs神经元周网神經元周網

The periodic table is chemistry's great seating chart for the elements — every known kind of atom, from hydrogen to the heaviest lab-made giants, lined up in a single grid. The order is set by one simple number: how many protons each atom has in its core, called the atomic number. Read it left to right, top to bottom, and that number climbs by one with every step.

The clever part is the wrapping. Each row is cut to its own correct length — short at the top, longer further down — so that elements with similar personalities stack into the same vertical column. That's why a whole column behaves alike: the soft, explosive metals of the far left (lithium, sodium, potassium) sit together, and the colorful, sluggish noble gases (helium, neon, argon) line up on the far right. Helium is the odd one out — with just 2 electrons it perches at the very top of that right-hand column, but it shares the family's calm, stay-out-of-it nature. Knowing where an element sits tells you a lot about how it will act before you ever touch it.

When the Russian chemist Dmitri Mendeleev built his version in 1869, several elements hadn't been discovered yet — so he simply left blank squares and, astonishingly, predicted the properties of the missing pieces from the gaps' neighbors. When elements like gallium and germanium turned up years later, matching his forecasts almost exactly, the world realized the table wasn't just a tidy list — it had revealed a deep pattern in matter itself.

Also calledperiodic table of the elementsMendeleev's table周期表化学元素周期表週期表門得列夫表

Periodization is the habit of slicing the endless flow of the past into named chunks — "the Middle Ages," "the Renaissance," "the Victorian era." The past itself doesn't come pre-cut; it's one unbroken river of days. Periodization is the historian drawing chalk lines across that river and saying, "Everything between here and here, we'll call one thing."

It matters because those labels are how we make the past thinkable at all. You can't hold a thousand years in your head at once, so you bundle them into a box with a name, and suddenly you can compare, teach, and argue about them. The boxes are genuinely useful tools — but tools made by people, for particular purposes.

Here's the catch most people miss: nobody living in 1300 thought they were in "the Middle Ages" — that name was invented centuries later by writers who saw their own age as a rebirth and everything before as a dull middle. The eras feel natural, even God-given, but every one of them was named after the fact, often by people with an axe to grind, and historians still fight over where each era truly begins and ends.

Also calledperiodisationhistorical periodsdividing history into eras历史分期断代歷史分期斷代

The peripheral nervous system, or PNS, is everything in the nervous system outside the brain and spinal cord. It is made of nerves, which are bundles of long signal-carrying fibres, and ganglia, which are small clusters where nerve cell bodies gather along the way. Together they form the wiring that links the central command center to the rest of you, reaching your skin, muscles, and internal organs. Where the brain and spinal cord are the head office, the PNS is the field network that gathers reports from the body and delivers orders back out to it.

It carries traffic in both directions. Sensory (afferent) fibres bring news inward, such as a pinprick on your finger, a sound, or the feeling of a full stomach, while motor (efferent) fibres carry commands outward to muscles and glands. The PNS is usually grouped into a somatic part, which handles the senses and the voluntary muscles you move on purpose, and an autonomic part, which quietly manages heartbeat, digestion, and other jobs you rarely think about.

Unlike the central nervous system, peripheral nerves can often regrow and repair themselves after injury, although slowly and imperfectly. That difference is one reason a cut nerve in your hand may recover feeling over many months, while damage to the spinal cord usually does not heal on its own.

Also calledPNS周围神经系统周邊神經系統周圍神經系統

PET imaging is a way of taking a picture of what the living brain is actually doing, not just what it looks like. Before the scan, a person is given a tiny, harmless dose of a special tracer — a familiar substance like a sugar, labeled with a faintly radioactive tag. The brain pulls this tracer to wherever it is busiest or wherever a particular target sits, and a ring-shaped scanner watches where the tracer piles up. The result is a colorful map showing which regions are most active or which chemicals are most present, glowing like lights in a dark city seen from above.

The trick behind it is positron emission. The radioactive tag decays and throws off a positron — a sort of mirror-image of an electron — which almost instantly bumps into an ordinary electron, and the two annihilate, vanishing into two bursts of energy that fly off in exactly opposite directions. The scanner's detectors catch both bursts at the same moment and draw a straight line between them; the tracer must have been somewhere along that line. Stack up millions of these lines and a computer reconstructs a three-dimensional image. Depending on which tracer is used, PET can map the brain's energy use (metabolism), its blood flow, or the docking sites (receptors) for messenger chemicals such as dopamine — which is why it is prized for studying disorders like Alzheimer's, Parkinson's, and addiction.

Also calledPETpositron emission tomography正电子发射断层成像正電子發射斷層成像

pH is a simple 0-to-14 score for how acidic or basic a liquid is. Low numbers mean acidic — think lemon juice or stomach acid; high numbers mean basic (also called alkaline) — think soap or bleach; and 7, right in the middle, is neutral, like pure water. Behind the number is one thing: how many hydrogen ions are crowded into the water. More of them, the more acidic, and the lower the pH.

Here's the part people miss: the scale is logarithmic, so each single step is a ten-fold change, not a one-step nudge. A pH of 4 isn't a little more acidic than 5 — it's ten times more, and pH 3 is a hundred times more than 5. That's why a small drop in the pH of the ocean or your blood is a much bigger deal than it sounds.

A common mix-up: pH doesn't measure how strong or dangerous a liquid feels, but the concentration of those hydrogen ions. And the scale isn't truly capped at 0 and 14 — very concentrated acids and bases can slip past both ends. For everyday life, though, 0 to 14 covers nearly everything you'll ever meet.

Also calledpotential of hydrogen酸碱度氢离子浓度指数酸鹼值氫離子濃度指數

Phase locking is what happens when a neuron consistently fires its spikes at the same point in a rhythm. Picture a wave rolling up and down over and over — a brain rhythm, or oscillation, is exactly that kind of repeating rise and fall in electrical activity shared by a crowd of nearby cells. Each spot along one cycle of the wave is called a phase: the crest, the trough, the rising slope, and so on. A neuron is phase locked when, cycle after cycle, it tends to spike at one favored phase — for example, always right near the trough — rather than firing at random moments. It is like a dancer who always steps on the same beat of the music instead of stepping whenever.

This matters because the brain can use timing, not just how many spikes there are, to carry information and coordinate work. If many neurons all lock to the same phase of a shared rhythm, their spikes arrive together in tight bunches, which makes their combined signal land more strongly on the cells downstream — good timing acts like good aim. The favored phase can also tag a spike with extra meaning: in the hippocampus, a region that helps build memories of places, cells fire at progressively earlier phases of an ongoing rhythm as an animal moves through a location, so the exact phase encodes where the animal is. Scientists measure how tightly a neuron is locked by collecting the phase at which each of its spikes occurs and checking whether those phases cluster near one value or spread out evenly.

Also calledphase locking of spikesspike-phase coupling锁相相位锁相鎖相

Picture pushing a child on a swing. If you push at exactly the right moment each time — perfectly in sync with the swing's natural rhythm — even tiny pushes pile up and the swing climbs higher and higher. A feedback amplifier has the same danger. It works by feeding a fraction of the output back to the input to cancel error, which only helps if that returning signal arrives out of step with the input (negative feedback). But every amplifier delays its signal a little, and that delay grows with frequency. If at some frequency the delay flips the feedback into being perfectly in sync (a phase shift of 180 degrees), and the loop is still strong enough to send a signal all the way around without shrinking, the circuit pushes itself — it oscillates instead of settling. Phase margin is simply how much breathing room you have before that happens.

More precisely: find the frequency where the loop gain has dropped to exactly 1 (0 dB) — the point where a signal makes it around the loop neither growing nor shrinking. At that frequency, measure how much phase shift the loop has accumulated. Phase margin is the gap between that phase and the fatal 180 degrees. So if the loop has rotated the signal 130 degrees at unity gain, you have 50 degrees of margin. Zero margin means it oscillates. A small positive margin technically won't oscillate, but it rings badly and overshoots, like a door that slams and bounces before closing. The practical rule of thumb is to keep at least 45 to 60 degrees: 45 degrees is usually the minimum you'll accept, and around 60 degrees gives a clean, well-damped step response with little ringing.

This is why analog designers obsess over compensation. An op-amp often has two or more poles, each adding up to 90 degrees of phase lag, so two poles close together can easily eat your whole budget. The fix — dominant-pole or Miller compensation — deliberately pushes one pole very low in frequency so the gain rolls off to unity long before the second pole's phase lag arrives, buying back margin at the cost of bandwidth. Phase margin, then, is the number that captures the eternal analog trade: stability versus speed.

Also calledPM相位余量相位餘量

A phase-locked loop is a feedback loop that doesn't watch a voltage or a current — it watches phase, the timing of a clock's edges. Picture a drummer (your generated clock) trying to stay perfectly in step with a metronome (a reference clock). A phase detector listens to both and reports who's ahead and by how much; that error nudges the drummer to speed up or slow down until the two are marching together. When the drummer's edges hold a fixed timing relationship to the metronome's, the loop is locked.

Concretely, the chain is: a phase/frequency detector compares the reference against a fed-back copy of the output; a charge pump turns each early/late verdict into a little squirt of charge; a loop filter smooths that into a slow control voltage; that voltage drives a voltage-controlled oscillator (VCO) whose frequency rises and falls with it; and a divide-by-N counter feeds the VCO's output back to the detector. Because the loop forces the divided-down output to match the reference in phase and frequency, the output ends up at N times the reference — fout = N x fref. That's how a clean but slow crystal at, say, 50 MHz becomes a 5 GHz on-chip clock.

Two jobs fall out of that one mechanism: multiplication (pick N) and cleanup. The loop is a control system, so it has a bandwidth and a stability budget just like an op-amp — you watch phase margin so it locks smartly instead of ringing. Inside the loop bandwidth the output tracks the reference and the loop suppresses the VCO's own wander; outside it, the VCO runs free and the reference's noise is filtered away. Where you set that crossover is the central design tradeoff, because it decides how much jitter survives at the output.

Also calledPLLfrequency synthesizer频率合成器頻率合成器

A phoneme is the smallest sound that can flip one word into another. Say "pat," then "bat": you changed exactly one sound at the front, and the whole meaning shifted. That single switchable piece — the /p/ versus the /b/ — is a phoneme. A language is built from a small set of them, maybe a few dozen, snapped together like LEGO bricks into every word you know.

Here's the twist that surprises people: a phoneme isn't one fixed noise but a family of noises your ear files under the same label. The "p" in "pin" comes out with a little puff of air; the "p" in "spin" has almost none. They're physically different sounds, yet English speakers hear both as "the same p," because swapping them never changes a word's meaning. What counts as one sound is a decision your language has quietly made for you.

And different languages decide differently. In English, /l/ and /r/ are separate phonemes — "light" and "right" are different words — but Japanese treats those sounds as one, which is why the distinction can be genuinely hard to hear for a native Japanese speaker. A phoneme isn't a fact about the mouth; it's a fact about which differences a particular language has chosen to make matter.

Also called音素minimal pair最小对立对最小對立對/p/ vs /b/

Phonetics is the study of the actual sounds of speech — the real, physical noises your mouth makes. It looks at three things: how a sound is built (lips, tongue, breath, and voice box working together), how it travels through the air as a wave, and how the ear catches it. Say "pin" and then "bin" and rest a finger on your throat: for the "b" in "bin" you can usually feel more vibration than for the "p" in "pin". That vibration, the buzzing of your vocal folds, is exactly the kind of physical detail phonetics measures — and it is a separate feature from the little puff of air in the example below.

This matters because it gives us a way to describe any sound in any language with precision, no matter how it happens to be spelled. The same "sh" sound shows up in English, French, and German; phonetics gives it one agreed symbol and one bodily description, so a speaker of any language can reproduce it. It is the toolkit behind language teaching, speech therapy, voice recognition, and the careful study of accents.

Here is the common mix-up: phonetics is not the same as phonology. Phonetics studies the raw sounds themselves — the physics and the plumbing. Phonology studies how a particular language organizes those sounds into a meaningful system: which differences change a word's meaning, and which the ear simply ignores. Phonetics asks what a sound is; phonology asks what a sound does inside a language.

Also calledarticulatory phoneticsacoustic phoneticsauditory phonetics语音学語音學

Photolithography is how you print a circuit onto a silicon wafer with light. You coat the wafer in a light-sensitive film called photoresist, shine light through a stencil-like mask that carries one layer's pattern, and the exposed resist changes — it either washes away or stays behind, leaving a sharp template. It is like making a photographic print: the mask is the negative, the resist is the paper, and light decides what survives. Etch through the openings, strip the rest, and the pattern now lives in the chip.

A chip is built layer by layer, so you repeat this dance dozens of times — transistors first, then the wiring stacked above them — each layer aligned to the last within a few nanometers. The catch is resolution: light cannot draw features much finer than its own wavelength, so chasing smaller transistors meant ever-shorter light, from ultraviolet down to today's extreme ultraviolet (EUV) at 13.5 nm. EUV is absorbed by almost everything — even air — so it runs in vacuum and steers by mirrors, not lenses, with the mask itself a mirror rather than a transparent stencil. This is the engineering heart of every advanced fab.

Also calledlithographylithoEUV光刻微影

A photon is a single, indivisible piece of light — the smallest packet light can come in. You can't split one in half; it's all or nothing.

Photons have no mass, so they always travel at the speed of light — nothing can speed them up or slow them down in empty space. Each one carries a tiny bit of energy, and that energy depends on the light's frequency: bluer, higher-frequency light packs more energy per photon than redder light.

Strangely, light acts like both a wave and a stream of these particles at once. Spread out, it ripples and bends like a wave; up close, it arrives in countable dots — and a photon is one of those dots.

Also calledlight quantumquantum of light光量子γ

A photonic qubit stores quantum information in a single particle of light, a photon. You can think of one photon as a tiny messenger that carries a yes-or-no degree of freedom: which way it is polarized (say, vertical versus horizontal), or which of two paths it travels down. By preparing a blend of those two options, you get a qubit whose state is alpha|0> + beta|1>, with the squared sizes of the two amplitudes adding to one. When you measure, you get a single outcome, 0 or 1, with probability equal to that amplitude squared, and the blend collapses to what you saw.

The appeal is practical. Photons barely interact with their surroundings, so they hold their state well and need no dilution refrigerator; many photonic systems run at room temperature. Because light already travels through fibers and free space, photons are the natural carrier for sending quantum information between distant machines, which makes them a strong fit for communication, networking, and quantum key distribution. The catch is the flip side of that same indifference: two photons normally pass through each other without noticing, so building a two-qubit gate, where one qubit must conditionally affect another, is genuinely hard. The common workarounds lean on measurement and extra photons and only succeed part of the time, so they need clever schemes to become reliable.

Also calledoptical qubitphoton qubit光学量子比特光學量子位元

A photoreceptor is a special cell at the back of your eye whose one job is to catch light and turn it into a nerve signal your brain can read. Think of it as a tiny living solar panel lining the inner wall of the eye, in a thin sheet called the retina. Light from the world passes through the front of your eye and lands on these cells; the moment a particle of light strikes one, the cell changes its electrical state, and that change becomes the very first whisper of the message that eventually becomes seeing. Without photoreceptors, your eyes would be like cameras with the film torn out — light would arrive, but nothing would record it.

There are two main kinds, named for their shapes. Rods are the slim, sensitive ones: there are many millions of them, they fire even in faint light, and they let you find your way around a dim room or see stars at night — but they cannot tell colors apart, which is why a moonlit garden looks gray. Cones are the plumper ones that need brighter light to work, and they come in three flavors tuned to roughly red, green, and blue; by comparing how strongly each flavor responds, your brain builds the full rainbow of color you see by day. Cones also cluster densely at a tiny central spot of the retina, giving you the sharp, detailed vision you use for reading and recognizing faces.

Inside each photoreceptor sits a light-sensitive pigment — a molecule that physically bends when it absorbs light. That bending kicks off a fast chemical chain reaction that alters the flow of charged particles across the cell's membrane, which is how a flash of light gets translated into the electrical language neurons speak. The signal is then handed off to other cells in the retina and bundled into the optic nerve, the cable that carries it to the brain. So every image you have ever seen began as light caught, one tiny pigment molecule at a time, by these two humble cell types.

Also calledphotoreceptor cellrod cellcone cell感光细胞感光細胞视细胞視細胞

Photosynthesis is how plants, algae, and some bacteria make their own food using sunlight. They take in water from the soil and carbon dioxide from the air, and use the energy in light to turn them into sugar — the fuel that keeps them alive and growing.

There's a wonderful bonus for the rest of us: as plants do this, they release oxygen as a leftover. Almost every breath you take is oxygen that some leaf, blade of grass, or speck of ocean algae quietly handed back to the air.

This one process is the foundation of nearly every food chain. When an animal eats a plant — or eats another animal that ate a plant — it's really living off energy that started as sunlight, captured and stored by photosynthesis.

Also calledphoto-synthesislight synthesis光合
See alsocell

Phototransduction is the trick your eye uses to turn light into electricity. Light is just particles of energy called photons, but your brain can only understand the electrical and chemical signals that nerve cells speak. So the light-catching cells at the back of your eye — the rods and cones, named for their shapes — run a tiny chemical relay race that takes "a photon just landed here" and rewrites it as "the voltage across my outer wall just shifted." That voltage change is a language the rest of the visual system can read, and it is the very first step of seeing anything at all.

It works like a chain of falling dominoes, where one event triggers the next and the signal gets amplified at every step. Inside each rod or cone sits a light-sensitive molecule called a visual pigment (in rods it is rhodopsin), built around a small piece that physically bends the instant a photon strikes it. That bend wakes up a helper protein, which switches on an enzyme, which chews up a messenger molecule that had been holding tiny gates — ion channels — open in the cell's membrane. With the messenger gone, those gates snap shut, fewer charged particles flow in, and the cell's inner voltage swings more negative. One captured photon can shut thousands of gates, which is why on a truly dark night a single rod can react to a single photon. This is exactly why phototransduction matters: it is the molecular hand-off that lets a flash of light become a nerve signal, the foundation everything else in vision is built on.

Also calledvisual transduction光转导光轉導视觉转导視覺轉導

Once your layout is placed, routed, and timing-clean, physical verification is the final inspection that asks one blunt question: can this actually be built, and is it really the circuit you meant to build? Think of it like a building inspector walking a finished house before anyone moves in. The blueprints might be beautiful, but the inspector checks that the walls are far enough apart to meet code, that the wiring actually connects the switches to the lights you drew on the plan, and that nothing was left in a state that will quietly catch fire later. Physical verification is the umbrella name for that whole inspection pass, and a layout has to come out clean on every check before it can go to the foundry for tapeout.

It bundles three families of checks. Design rule check (DRC) confirms the geometry obeys the foundry's manufacturing rules — minimum spacing between wires, minimum metal width, enclosure of vias, density of each layer — the dimensional code that keeps the shapes printable on silicon. Layout versus schematic (LVS) traces every wire and device in the drawn layout and proves it matches the intended netlist transistor-for-transistor and net-for-net, so a swapped connection or a missing device gets caught instead of shipping. The third family is electrical rule checks: antenna rules, which make sure long stretches of metal connected to a transistor gate during fabrication can't accumulate enough charge to blow that thin gate oxide, plus broader ERC checks for things like floating gates or shorted power and ground. Only after DRC, LVS, and the antenna/ERC checks all report zero violations is the GDSII (or OASIS) database considered signed off.

The reason engineers treat a single leftover violation so seriously is economics, not pedantry. A photomask set and a fabrication run cost a fortune and take weeks to months; if a real DRC or LVS error slips through, the silicon that comes back can be dead or wrong, and fixing it means a respin — re-doing masks and re-fabricating — that burns months of schedule and a great deal of money. That is why physical verification is non-negotiable and why a clean run is the literal gate to tapeout.

Also calledPVsignoff DRC/LVS物理验证實體驗證

The physiology of the stress response is the set of fast, coordinated changes your body makes the moment your brain decides something is a threat — whether that threat is a swerving car, a snarling dog, or a looming deadline. In a heartbeat, your pupils widen, your heart pounds, your breathing quickens, your muscles tense, and sugar floods into your blood. It is your body shifting from calm housekeeping into emergency mode, freeing up energy and attention so you can fight, flee, or focus. Think of it like a building's fire alarm: the instant danger is sensed, lights flash, doors unlock, and everyone drops their ordinary tasks to deal with the crisis.

This response runs on two timescales using one common idea — the brain senses a threat and the body mobilizes resources to meet it. The fast track is electrical: an alarm region deep in the brain triggers nerves that, within seconds, tell the adrenal glands (small organs atop the kidneys) to release adrenaline, which spikes heart rate and pours stored sugar into the bloodstream. The slower track is chemical: the hypothalamus and pituitary, two control hubs in the brain, send hormone signals that prompt the same glands to release cortisol over minutes to hours, keeping fuel available and tuning the immune system. Along the way, the body quietly pauses jobs that can wait — digestion, growth, repair, reproduction — because every resource is being redirected toward the immediate challenge.

Used briefly, this is brilliant engineering: it has kept animals alive for hundreds of millions of years and still sharpens you before a race or a hard exam. The trouble comes when the alarm rarely switches off. If stress signals stay high for weeks or months — chronic worry, ongoing hardship, poor sleep — the same hormones that once protected you begin to wear the body down, contributing to high blood pressure, disturbed sleep, weakened immunity, and changes in mood and memory. The healthy pattern is a sharp rise followed by a clean return to calm, not a switch that is stuck on.

Also calledfight-or-flight responsestress physiology应激生理反应战斗或逃跑反应戰鬥或逃跑反應

Pi is the number you get when you walk all the way around a circle and compare that distance to the width straight across it. Roll any circular thing — a coin, a dinner plate, the Moon — and the distance around its edge is always about 3.14159 times the distance across. Not 3, not 4, but that same stubborn little number, every single time, no matter how big or small the circle.

That constancy is the whole point: pi is baked into the very shape of "round." It's why we can write it once and reuse it forever — a circle's circumference is π times its diameter, and its area is π times the radius squared. Builders, astronomers, and engineers lean on this so they don't have to re-measure every wheel and dome from scratch.

Here's the strange part: pi is irrational, meaning its decimals run on forever without ever falling into a repeating pattern. 3.14 is just a rounded snapshot, not the real value — the true number can never be written down in full. And pi refuses to stay in its lane: it surfaces in waves, in bell-curve statistics, and deep in physics, far from any visible circle.

Also calledπ3.14159Archimedes' constant圆周率圓周率π值

Pick-and-place is the most basic and most common job a robot arm does: take hold of an object in one spot and move it to a target spot, then release it there. Pick it up here, put it down there. Nearly every factory and warehouse robot is, at heart, doing pick-and-place all day long — loading parts onto a machine, packing items into a box, sorting parcels, stacking products onto a pallet.

Though it sounds trivial, a single cycle quietly chains together several skills. The robot must first find the object and figure out its position and orientation; then plan a grasp — where to put the gripper and how to come at it — and a collision-free path to reach it; then close the gripper and confirm it actually caught the object; then carry it over and set it down accurately at the destination, often in a specific pose; and finally let go and retreat, ready for the next one. Each link in that chain is its own small problem, and any one of them failing means a dropped or misplaced part.

Pick-and-place is the workhorse against which much of manipulation is measured, and the gap between easy and hard versions is huge. Picking identical rigid blocks from fixed, known positions and dropping them into fixed slots is straightforward and was automated long ago. Picking jumbled, unfamiliar, or fragile items out of a cluttered bin — figuring out a good grasp on the fly, every object different — is far harder, and is exactly the cutting edge that modern perception and learning are pushing on.

Also calledpick and place拾取放置取放

PID control is the most widely used recipe in all of control engineering — a simple, dependable formula for turning an error (how far off you are from the goal) into a corrective action that drives that error to zero. The name is just its three ingredients: Proportional, Integral, and Derivative. Each one looks at the error in a different way — right now, over the whole past, and where it is heading — and the controller adds the three together to decide how hard to push.

Picture filling a bath to a marked line. The Proportional part reacts to how far you are from the line right now: way below, open the tap wide; almost there, ease it down — strong response when far off, gentle when close. The Integral part watches the steady leftover gap that refuses to disappear: if the level keeps sitting just a hair under the line, integral patiently accumulates that small shortfall and opens the tap a touch more until even that last bit is gone. The Derivative part watches how fast the level is rising and acts as a brake — if water is climbing quickly toward the line, it eases the tap early so you don't shoot past it.

Together these three give a response that is fast, accurate, and smooth: proportional supplies the muscle, integral guarantees you actually arrive exactly on target, and derivative tames the overshoot and wobble. PID is everywhere — drone stabilizers, 3D-printer heaters, car cruise control, factory robot joints — precisely because you can make it work well by adjusting just three knobs, without ever writing down the physics of the thing you are controlling.

Also calledPID controllerthree-term controllerPID 控制器三项控制器

The pineal gland is a tiny structure deep in the center of your brain, about the size and shape of a grain of rice, named after the pine cone it vaguely resembles. Its main job is to act like a chemical clock for your body: when the world around you grows dark, it releases a hormone called melatonin into your bloodstream, and that rising tide of melatonin is the signal that tells the rest of you it is time to feel sleepy.

It does this by listening, indirectly, to your eyes. Light landing on your retina travels along a chain of nerve connections that eventually reaches the pineal gland, telling it whether it is day or night. In bright light the gland stays quiet; in darkness it switches melatonin production on. Because the gland tracks not just the daily light–dark cycle but also how long the nights are across the year, it helps many animals time seasonal behaviors such as breeding, hibernation, and the growing of a winter coat. In humans its rhythm is gentler, but it remains a key conductor of the daily sleep–wake cycle, which is why bright screens late at night, or jet lag from crossing time zones, can throw your sleep off by confusing this little gland.

Also calledepiphysis cerebripineal body松果腺脑上腺腦上腺

The pinhole camera model is the simple, idealized picture of how a camera turns the three-dimensional world into a flat image. Imagine a dark box with one tiny hole punched in the front. Light from a point in the world travels in a straight line, slips through that single hole, and lands on the back wall of the box, painting an upside-down image there. Because every ray must pass through the same little hole, the model treats the camera as a single point in space — and that one assumption is enough to predict exactly where any real-world point will show up in the photo.

The geometry that follows is just similar triangles. A point that is twice as far away appears half as large; the deeper rule is that an object's image size shrinks inversely with its distance — double the distance, halve the image — and is scaled up by the camera's focal length (how far the back wall sits behind the hole). This is the heart of projection: collapsing three numbers of position down to two numbers on a flat sensor. The model is what lets a robot reason backward — from a pixel, it knows the ray of directions that pixel could have come from, even though it cannot tell distance from one image alone.

Real lenses are not pinholes, so the model is an approximation. It ignores blur, the bending of light by glass, and lens distortion that bows straight lines into curves. But it is so clean and useful that nearly all of robot vision starts here and then adds small corrections on top, rather than throwing the model away.

Also calledpinhole projection针孔成像模型針孔成像模型

The pituitary gland is a tiny structure, about the size of a pea, that hangs from the underside of the brain just behind the bridge of your nose. Despite its small size, it earns the nickname "the master gland," because the hormones it releases reach almost every corner of the body and switch other glands on and off. Hormones are chemical messages that travel through the bloodstream; where a nerve sends a fast, private signal down a wire, a hormone is more like a message broadcast to the whole body, telling distant organs how to behave.

But the master is not really the boss. Sitting just above it is the hypothalamus, a region of the brain that watches the body's inner state and tells the pituitary what to do, so the pituitary is better thought of as a relay station that turns the brain's instructions into hormone signals. When commanded, the front part of the pituitary sends out hormones that order the thyroid to set your metabolic pace, the adrenal glands to release stress hormones, and the ovaries or testes to drive reproduction; it also pours out growth hormone, which builds the body. The back part stores and releases hormones made in the hypothalamus, including ones that control water balance and trigger labor and milk release.

This makes the pituitary the central hinge of the brain–body axis: the point where thoughts, stress, and the body's needs get converted into chemistry that reaches every tissue. It also runs on feedback, much like a thermostat. When the hormone level of a target gland climbs high enough, that rising level signals back to the pituitary and hypothalamus to ease off, keeping each system within a healthy range. Because so much passes through this one small gland, a problem here can ripple outward into growth, energy, mood, fertility, and the body's response to stress.

Also calledhypophysismaster gland脑垂体腦垂腺脑下垂体

Place and route is the step where a chip stops being a wiring diagram and becomes a physical object. You start with a netlist — a list of pre-designed standard cells (AND gates, flip-flops, each with a fixed layout) and which pins connect to which. "Place" decides where each cell sits on the silicon die; "route" draws the metal wires that join them across stacked metal layers. Think of laying out a city: first you position thousands of tiny buildings, then you pave roads on multiple levels so every building can reach the others without gridlock.

Tools like Innovus or OpenROAD do this automatically, but "automatic" hides a brutal optimization. Cells that talk a lot should sit close, or wire delay blows your timing; pack them too tight and the router can't fit the wires, or the power density creates hotspots. So the engine juggles timing, area, power and routability at once, across millions of cells. The output is the GDSII layout — the exact polygons the foundry turns into photomasks, which a lithography tool then prints onto the wafer.

Also calledP&Rphysical designstandard cell布局布线佈局繞線

A place cell is a brain cell, found mostly in a seahorse-shaped region called the hippocampus, that fires a quick burst of electrical activity only when an animal is standing in one particular spot in its surroundings. Picture walking through your kitchen: one such cell might crackle to life only when you are by the sink, and fall silent everywhere else, while a different cell does the same job for the spot in front of the fridge. Together, thousands of these cells act like a living map, each one a tiny flag planted on a different patch of the world.

These cells matter because they are a big part of how the brain knows where you are and remembers places you have been. As an animal explores a new room, each place cell gradually claims its own location, called its place field, and the whole set rewires itself when the animal moves to a different room. This flexibility is a form of plasticity, the brain's ability to change its wiring with experience, and it links your sense of location tightly to memory, which is why a familiar smell or hallway can suddenly bring back where you once stood.

Also calledplace neuron位置神经元位置神經元
See alsohippocampus

Place recognition is a robot's ability to look at where it is right now and say, with confidence, whether it has been to this same spot before. It is the machine version of that human jolt of recognizing your own front door or a particular street corner. The robot compares its current view — a camera image or a laser scan — against a memory of views it has gathered along the way, and asks: does this match anything I have already seen? If a strong match turns up, it has recognized the place.

Comparing every new view against every stored one, pixel by pixel, would be far too slow, so robots boil each scene down to a compact fingerprint — a short summary that captures the gist of what is there: the pattern of corners, textures, or shapes. Two views of the same place produce similar fingerprints even from slightly different angles or lighting, while different places tend to produce different ones. Recognition then becomes a fast search for the stored fingerprint that most closely resembles the current one, rather than a slow image-by-image stare.

This ability is the heart of fixing a robot's drift. As a robot roams, tiny step-by-step errors quietly accumulate and its sense of position slowly slides off the truth. The moment place recognition announces I have been here before, the system gains a powerful clue: two points on its remembered path are actually the same place, so the whole path can be tugged back into shape — the correction known as loop closure. The danger is a false alarm: two different but similar-looking corridors can fool it, so good systems demand strong, double-checked evidence before trusting a match.

Also calledloop detection回环识别迴環辨識

The placebo effect is a real, measurable improvement that comes from a treatment with no active ingredient at all — a sugar pill, a saline shot, a fake procedure. What does the healing is not the pill but the expectation: you believe you're being helped, and your body and mind respond as if you were. Hand someone a chalk tablet, tell them it's a strong painkiller, and their pain can genuinely ease.

This isn't imagination or lying about feeling better — brain scans show real changes, like the body releasing its own natural painkillers. The effect is strongest for things shaped by the mind: pain, nausea, anxiety, fatigue. It can't shrink a tumor or mend a broken bone, but it can make a person feel and sometimes function noticeably better.

And this is exactly why serious drug trials need a control group. If everyone who took a new pill improved, you still wouldn't know whether the pill did it or the believing did. So researchers give half the people the real drug and half a dummy, with no one knowing which — only if the real drug beats the dummy has it truly earned its keep.

Also calledplacebo responsesugar pill effectnocebo effect安慰剂反应糖丸效应

Placement is the step where every standard cell finally gets a home. After floorplanning has carved out the core area and laid down the rows — long horizontal stripes, one cell-height tall, with power and ground rails along their edges — placement decides which (x,y) spot each cell lands in. Picture seating a few million guests in a stadium: you can't just drop them anywhere. Cells that chat constantly (a flip-flop feeding the gate next to it) want adjacent seats so their connecting wire stays short and fast; spread them across the die and the wire delay alone can blow your timing. So the tool isn't just packing boxes — it's solving a giant optimization that trades off wirelength, timing, and how crowded each region will get once the router shows up.

It happens in stages. Global placement is the rough first pass: an analytical engine (think of it as modeling the connections as springs and letting everything relax toward a low-energy spread) finds an approximately ideal position for each cell, steering away from timing-critical stretches and congested hot spots. At this point cells are allowed to overlap and sit slightly off the legal grid — it's a sketch, not the final seating chart. Detailed placement then refines that sketch locally, swapping neighbors, sliding cells, and resizing or buffering to recover the last picoseconds of timing. Finally legalization snaps every cell down onto a legal site — the discrete grid positions the rows allow — so that no two cells overlap and each sits cleanly on the row pitch, ready for clock tree synthesis and routing to come next.

Density matters here: the placer watches the utilization ratio, the fraction of the core area your cells actually consume. Push it too high and there's no room left for the wires the router still has to thread, so congestion explodes; leave it too low and you've wasted silicon you paid for. Good placement quietly sets up everything downstream — a sloppy one hands routing and timing closure a mess they may never fully dig out of.

Also calledcell placementglobal placementdetailed placementlegalization单元布局详细布局合法化單元佈局詳細佈局合法化

Imagine the core of your chip as a parking lot and your standard cells as cars. Placement utilization just answers: how full is the lot? It's the fraction of the available floor that your logic actually occupies — add up the area of every standard cell and divide by the area of the core region they're allowed to sit in. A utilization of 0.70 means 70 percent of the floor is cells and 30 percent is still open asphalt.

That empty 30 percent is not waste; it's the breathing room the router needs. Wires don't travel in a separate dimension — they run on metal layers stacked above the cells, and they need to drop down through vias to reach cell pins, so a floor packed wall-to-wall with cells leaves nowhere to thread the connections. Push utilization too high — past roughly 80 to 90 percent — and the router runs out of tracks, congestion spikes, and you get unroutable nets or a flood of DRC violations. That's why early floorplans usually target a comfortable 60 to 70 percent: you're deliberately leaving slack so that clock-tree buffers, hold-fixing cells, and late ECO changes all still have somewhere to land before routing and signoff.

It helps to be precise about which area you're dividing by. Utilization is measured against the core (the placeable region), not the whole die — the die also carries the I/O pad ring and margins, which aren't yours to fill. And when big hard macros (memories, PLLs) or placement blockages sit in the core, tools often report an effective utilization against the area that's actually left for standard cells, which can read much higher than the raw number you first set.

Also calledcore utilizationcell utilizationutil核心利用率單元利用率

A planet is a large world that circles a star, sweeping around it again and again. Earth is a planet, and so are its neighbors — Mars glowing rusty red, giant Jupiter, ringed Saturn. The key picture is a ball big enough for its own gravity to pull it round, looping a steady path around the Sun rather than drifting freely through space.

There's a quiet catch in the modern definition: a real planet has also "cleared its path," meaning it's the gravitational boss of its lane, having swept up or flung away the leftover rubble. This is the criterion that led to Pluto's reclassification in 2006, after astronomers found similar-sized icy bodies sharing its zone — most strikingly Eris, discovered in 2005 and at first thought even larger than Pluto — which forced them to define the word precisely. Pluto failed the test and was relabeled a dwarf planet. Size alone doesn't make a planet; dominance does.

For centuries people assumed planets must trace perfect circles, since the heavens were thought flawless. Then Johannes Kepler, poring over careful observations of Mars, found the truth: planets travel on ellipses — gently stretched ovals — speeding up when near the star and slowing when far. Nature's orbits are elegant, but they are not perfect rings.

Also called行星exoplanetdwarf planet矮行星系外行星大行星

Plate tectonics is the discovery that Earth's hard outer shell isn't one solid piece — it's cracked into a couple dozen enormous slabs, called plates, that drift slowly over the hotter, softer rock beneath. Picture the cracked shell of a hard-boiled egg, except the pieces are continents and oceans, and they creep along about as fast as your fingernails grow — a few centimeters a year.

Slow as that sounds, the action all happens at the edges where plates meet. Where two plates shove together, they crumple the ground upward into mountain ranges; where one dives beneath another, it melts and feeds volcanoes; and where they grind past each other, the rock locks, strains, and suddenly slips — and that jolt is an earthquake. So the same patient drift carves the Himalayas, lines the Pacific with volcanoes, and rattles California.

A common mix-up: the plates aren't the same as the continents. A single plate can carry a whole continent plus a slab of seafloor riding along with it, all in one piece. And the ground isn't floating on a sea of liquid magma — the rock below is solid, just hot enough to ooze and flow over thousands of years, like cold honey or a glacier of stone.

Also calledcontinental drifttectonic platesplate theory大陆漂移构造板块大陸漂移構造板塊

Pluripotency is the power to become any of the body's own cell types — nerve, muscle, blood, skin, gut, and all the rest — yet not, on its own, a whole organism. It sits one rung below the all-powerful totipotency of the fertilized egg. A pluripotent cell is like a master key cut to open every interior room of a building, but not the front gate that would let it build the building from scratch.

The benchmark for true pluripotency is the ability to give rise to cells from all three germ layers — the three foundational tissue layers that an early embryo organizes itself into, and from which every organ later forms. One layer eventually yields skin and nerves, another muscle, bone, and blood, and the third the gut and lungs. A cell that can produce descendants in all three has demonstrated the full breadth that pluripotency promises, not just a lucky few lineages.

Pluripotency is the prize that makes certain stem cells so coveted and so studied. A pluripotent cell is, in principle, a universal starting material from which any tissue might be grown for repair or for laboratory study. That same near-limitless flexibility is also why such cells must be handled with care: a cell that can become anything must be coaxed precisely toward the one thing you want, and away from forming disorganized growths.

Also calledpluripotent多能性

A pneumatic actuator is a muscle that runs on compressed air. Air is pushed into a sealed cylinder, and its pressure drives a piston back and forth; let the air out, and a spring or the opposite air port returns it. It is the same idea as a hydraulic actuator, but with air instead of oil — and that one swap changes its whole personality.

Because air squashes like a cushion, a pneumatic actuator is naturally springy and forgiving. It can move fast and light, it does not mind being bumped or held against a stop, and it gives a gentle, compliant push rather than a rigid shove — handy when a robot must touch delicate things or work near people. The flip side is that this same sponginess makes it hard to stop at an exact position in the middle of its stroke; pneumatics shine at snapping cleanly between two endpoints, like open and closed.

Control is done with valves that switch or throttle the airflow. The whole approach is cheap, clean, and lightweight — no oil to leak, just air — which is why pneumatics fill factory grippers, sorting machines, and many soft, muscle-like actuators. They do need a compressor and air lines, and they waste some energy whenever the used air is simply vented away.

Also calledair cylinder气缸氣缸

A pneumatic artificial muscle is a soft, inflatable actuator that shortens and pulls when you fill it with air — much like a real muscle tensing. The classic design, the McKibben muscle, is a rubber tube wrapped in a woven braided sleeve. Pump air in and the tube bulges fatter; the braid, unable to stretch sideways without getting shorter, forces the whole thing to contract along its length and tug on whatever it is attached to.

Unlike a rigid motor or piston, it has no hard gears or moving metal parts — it is squishy, light, and naturally compliant, giving softly when squeezed, just like flesh. That makes it a favourite of soft robotics, where machines are built from rubber and fabric to grip fragile objects, bend around obstacles, or sit safely against a human body. Many wearable assist suits and gentle grippers are powered this way.

The trade-offs echo a muscle's: it can only pull, not push, so muscles are often used in opposing pairs (one contracts while the other relaxes), and its soft, air-driven nature makes exact, repeatable positioning harder than with a precise motor. What you gain is safety, lightness, and a forgiving touch that rigid machinery struggles to match.

Also calledMcKibben musclePAM麦吉本肌肉麥吉本肌肉

A point cloud is simply a big bag of dots scattered in 3D space, where each dot marks one spot the robot has measured on the surface of something real. Imagine spray-painting a single glowing speck onto every place your finger touches an object — the chair, the floor, the coffee mug — and then floating all those specks in the air with nothing connecting them. Step back and the cloud of specks traces out the shape of the room and everything in it, even though it is just a list of points, not a solid model. Each point carries at least three numbers: how far left or right, how far up or down, and how near or far it sits, measured from the sensor.

Robots get point clouds from depth sensors. A lidar sweeps a laser around and times how long each pulse takes to bounce back, turning those times into distances and then into dots; a depth camera does much the same using infrared light. The result is the raw, unprocessed picture of geometry the robot starts from — there are no labelled objects yet, no surfaces, just thousands or millions of bare dots. Points can also carry extra data per dot, such as color borrowed from a camera or a brightness value, so a cloud can look like a ghostly 3D photograph of a scene.

Because a point cloud is raw and unstructured — the dots have no order, no built-in notion of which belongs to the table and which to the cup — most of the work in perception is turning it into something meaningful: smoothing out sensor jitter, stitching several scans together, grouping dots into surfaces, or matching the cloud against a known shape. It is the common starting material for mapping a building, recognizing an object, or letting a self-driving car understand the road around it.

Also called3D point cloud三维点云三維點雲

Poles and zeros are special numbers that act like the DNA of a system's behavior. Recall that a transfer function is usually written as a fraction — one expression on top, another on the bottom. The zeros are the values that make the top of that fraction equal zero, and the poles are the values that make the bottom equal zero. They sound like dry algebra, but each one is really a clue about how the system will move: how fast it responds, whether it overshoots, whether it rings like a struck bell, and crucially whether it stays under control at all.

Poles are the headline act. Each pole describes one natural way the system likes to move when left alone — a tendency to decay quietly, to drift slowly, or to oscillate. Engineers plot the poles as points on a map (the complex plane) and read the system's fate straight off their positions. Poles in the left half mean disturbances fade away, so the system is stable; poles in the right half mean disturbances grow, so it runs away; poles far to the left mean fast-decaying motion, while poles with a large imaginary part — high above or below the horizontal axis — mean lots of ringing. Move the poles and you change the personality of the response.

Zeros play a subtler, supporting role. Rather than creating new motions of their own, they shape and color the motions the poles set up — sometimes speeding the early response, sometimes causing it to dip the wrong way first before heading toward the target, sometimes muting a particular wobble. The art of control design is largely the art of placing poles and zeros where you want them: tune the controller, and you are really sliding these points around the map until the response looks just right.

Also calledpoleszeros极点零点極點零點

Population coding is the brain's way of representing a piece of information — a color you see, the direction your arm is reaching, a sound's pitch — not in any single neuron, but in the combined pattern of activity spread across a whole group of neurons working together. Think of a stadium crowd: no one person spells out a word, but when thousands of people each hold up a colored card, the picture they form together is clear and readable. In the same way, the brain reads meaning from the joint chatter of many cells at once, rather than listening to one cell alone.

This works because each neuron usually has a mild preference rather than a strict on-or-off rule. A cell in the part of the brain that controls movement, for example, might fire fastest when you reach straight up, a little less when you reach slightly to the side, and weakly when you reach down — and its neighbors each lean toward different directions. No single one of them can tell you exactly where your arm is going, but if you blend all their tilted votes together, the true direction pops out sharply. Sharing the job across a crowd makes the brain's signal far more precise and far more robust: a few cells can fall silent, fire erratically, or even die, and the overall message still comes through, the way a chorus stays on tune even if a few singers drop out.

Also calledpopulation codedistributed codingensemble coding群体编码分布式编码群體編碼分散式編碼

A port is a numbered door on a computer where a service waits for visitors. One machine has one network address, but thousands of these numbered doors — so many different services can run side by side, each behind its own door, without bumping into each other.

Some numbers are conventions everyone agrees on: 80 is the door for plain web traffic, 443 is for secure https, and 3000 is the door your dev server often opens while you build something.

That's what localhost:3000 means: localhost is 'this very computer', and :3000 is the door to knock on. Open it in a browser and you're talking to the app you just started — no internet required.

Also callednetwork porttcp portlocalhostport 80port 443port 3000:3000

A pose is the complete answer to the question "where is this thing, and which way is it facing?" It bundles two pieces of information together: position, meaning the exact spot in space (how far left, forward, and up), and orientation, meaning which way the object is turned (is it tilted, rotated, pointing north or east?). Knowing only one of these is never enough. A coffee mug on your desk has a location, but it also matters whether the handle points toward you or away; both facts together are its pose.

In full 3D, a free-floating rigid body has six degrees of freedom: three for position (left-right, forward-back, up-down) and three for orientation (the turns often called roll, pitch, and yaw). A pose pins down all six at once. This matters enormously in robotics, because a robot must know not just where its gripper hand is, but how that hand is angled before it can grab a cup without spilling it. A pose is always stated relative to some agreed reference point, called a frame: "the gripper is 30 cm in front of the robot's shoulder, tilted 45 degrees downward." Change the reference frame and the same physical object gets a different set of pose numbers, even though it has not moved at all.

Engineers often pack a pose into a single compact object, such as a homogeneous transformation matrix, so the computer can carry both the position and the orientation around as one tidy unit. That way a single piece of math can answer "where and how is it placed?" in one step, instead of juggling two separate descriptions.

Also calledposition and orientation位置与朝向位置與朝向

Pose-graph optimization is a way of finding a robot's most likely path by treating the whole journey as a network of connected points and gently nudging every point until all the connections are as happy as they can be. Each 'pose' is one snapshot of where the robot was and which way it faced at some moment, drawn as a dot. Between two dots the robot draws an edge that records a constraint: a measured belief like 'I moved roughly two meters forward and turned a bit to the left to get from here to there.' String many poses together and you get a graph — a chain of dots joined by these relative-motion edges.

Most edges link a pose to the one just after it, the ordinary step-by-step record of driving. But the special, powerful edges are the ones added by loop closure: 'this much-later pose is actually back at the same place as this much-earlier pose.' Now the graph is over-determined — there are more constraints than there is slack — and they will conflict, because each measurement carried a little error. Optimization is the act of sliding all the poses around at once to the single arrangement that violates the fewest constraints by the least amount, like a tangle of springs settling into the shape where the total tension is lowest. Every edge is a spring, and the answer is the resting pose of the whole web.

This 'graph SLAM' view became popular because it separates a messy problem into two clean jobs: building the graph (deciding which poses connect and how strongly) and then solving it (finding the best layout). The solving step can lean on fast, well-understood math because the graph is mostly local — each pose touches only a few neighbors — so even thousands of poses can be balanced in a fraction of a second.

Also calledgraph SLAMpose graph图 SLAM位姿图圖 SLAM

A position vector is the three numbers that say where a point sits relative to a frame's origin — typically written (x, y, z). Read them as a recipe for getting there from the origin: go x along the first axis, then y along the second, then z along the third, and you have arrived. That is all a position vector is: a set of step-by-step directions, in numbers, from the agreed starting corner to the spot you care about.

Calling it a 'vector' rather than just 'three numbers' is a reminder that it has both a direction and a length, and that it always rides on a particular frame. The point that is (0.3, 0.0, 0.5) metres in the camera frame might be (1.2, 0.4, 0.5) metres in the world frame — same physical point, different numbers, because the directions count from a different origin. So a position vector without a frame attached is like a street number with no street: you cannot find the door.

Position vectors are the raw material a robot reaches with. The arm controller is handed a target position vector for the gripper, the perception system outputs a position vector for each object it spots, and the navigation stack tracks the robot's own position vector on the map. Crucially, a position vector only captures where a point is, not which way it is turned — that rotational half of the story is orientation, and the two together make up a full pose.

Also calledpositionlocation vector位置矢量位移向量

Post-quantum cryptography is the down-to-earth answer to a future worry. A capable quantum computer running Shor's algorithm could break the public-key crypto that protects most of today's internet (RSA and elliptic-curve), because Shor turns code-breaking into a period-finding problem that quantum hardware handles efficiently. PQC's response is not to fight quantum with quantum. Instead it swaps in new classical algorithms — ordinary math, ordinary code — built on problems that neither classical nor quantum computers are known to crack quickly, such as finding short vectors in high-dimensional lattices.

The key thing to hold onto: PQC runs on the laptops, phones, and servers you already own. There is no quantum machine involved on your end. You are just replacing the locks (the algorithms that exchange keys and make signatures) with sturdier ones, while the rest of your secure connection works as before. After years of public scrutiny, standards bodies have selected a first set of these schemes, and software is steadily migrating to them.

Also calledPQCquantum-resistant cryptographyquantum-safe cryptography抗量子密码量子安全密码

A postsynaptic potential is a small, brief change in the voltage across the membrane of a neuron that is receiving a message. Neurons talk to each other across tiny gaps called synapses: the sending cell squirts out chemical messengers called neurotransmitters, and these drift across the gap and stick to matching catcher molecules, called receptors, on the receiving cell. That sticking pops open or closes tiny gated pores in the membrane, letting charged particles (ions) flow in or out. The flow nudges the receiving cell's voltage up or down a little, and that nudge is the postsynaptic potential. Think of it as the soft knock on the door that one neuron gives another, rather than the full shout of a nerve impulse.

These nudges come in two flavors. An excitatory postsynaptic potential pushes the cell's voltage toward firing, making it a bit more likely to send its own signal; an inhibitory one pulls it the other way, making firing less likely. Each single knock is usually too weak on its own to do much, so the receiving neuron acts like a tiny accountant, adding up the pushes and pulls arriving from thousands of synapses moment by moment. If the running total tips the voltage past a threshold, the cell fires off an all-or-nothing spike of its own. In this way, postsynaptic potentials are the votes that decide whether a neuron speaks up, and they sit at the heart of how brains compute, learn, and store memories.

Two features make them special. Unlike the fixed, full-sized spike that travels down a neuron, postsynaptic potentials are graded — they come in many sizes, depending on how much neurotransmitter landed — and they are local, fading out as they spread from the synapse instead of marching the whole length of the cell. This graded, fading quality is exactly what lets a neuron weigh and blend its many inputs rather than simply passing along the first message it receives.

Also calledPSPsynaptic potential突触电位突觸電位

Think of the chip as a tall apartment building where every room needs water at full pressure, all at once. The power delivery network is the plumbing: the mesh of metal wires that carries the supply voltage (VDD) and the return path to ground (VSS) from the chip's edge pins down to every single standard cell, so each transistor gets the clean voltage it needs to switch. You start building this skeleton at floorplan time, before a single logic cell is placed — because once the core fills up with cells, there is no room left to run fat power wires, just as you can't add a water main after the walls are up and the rooms are furnished.

Picture the geometry in layers. Thin horizontal rails run in the lowest metal directly over each row of standard cells, alternating VDD and VSS so a cell can tap power right above it. Those rails feed up through stacked vias to wider, lower-resistance straps in the upper, thicker metal layers, which cross the die in a regular grid — vertical stripes over horizontal stripes — often ringed around the whole core. The result is a redundant mesh with many parallel paths, so current to any given room can arrive from several directions at once instead of trickling down one long, skinny pipe.

The catch is resistance. Every wire has some, and when millions of cells draw current through it, Ohm's law bites: the voltage actually reaching a far-off cell sags below the ideal by V = I·R. This sag is called IR drop, and if the grid is too thin or too sparse, the local voltage droops enough that logic slows down or stops switching reliably — the far rooms get a weak dribble instead of full pressure. So PDN design is a balancing act: a denser, wider grid fights IR drop and electromigration, but it also steals metal tracks away from the signal wires that have to route through the same space.

Also calledpower gridpower/ground networkPG network电源网格供电网格電源網格供電網格

Clock gating quiets a block by holding its clock still, but the transistors are still connected to the supply, so they keep sipping a trickle of current even while idle. Power gating goes all the way: it flips the block's power switch fully OFF, like cutting the breaker to an empty wing of a house instead of just turning the lights off. With no supply rail energized, the idle logic stops leaking, which directly attacks leakage (static) power — the steady drain that flows just because transistors are powered up, and that has grown into a huge slice of a chip's total power at modern nodes.

The switch itself is a row of big transistors inserted between the real, always-on supply and the block's own local rail (the layout calls these virtual VDD or virtual ground). A header switch is a PMOS device sitting between VDD and the block's virtual VDD; a footer switch is an NMOS device between the block's virtual ground and true ground. When you assert the sleep signal, those switches turn off and the local rail floats, so almost no current flows. Two companions make this safe in practice: isolation cells clamp the now-floating outputs of the sleeping block to a known 0 or 1 so neighbors don't see garbage, and retention registers (or a save-and-restore scheme) hold the handful of state bits you must not lose, since cutting power otherwise wipes everything.

Power gating is one tool in a low-power toolbox. Multi-Vt design mixes in high-threshold cells that leak far less (at the cost of switching a bit slower) on paths that have timing slack to spare, while DVFS — dynamic voltage and frequency scaling — dials the supply voltage and clock frequency up or down to match the workload and so trims dynamic, switching power. Because all of this changes which parts of the chip are powered when, the design's power intent (where the domains are, which switches feed them, what to isolate, what to retain) is written up front in a UPF (IEEE 1801) or CPF file that the whole back-end flow — synthesis, place, CTS, route, and verification — reads and enforces.

Also calledpower switchingMTCMOSsupply gating电源门控電源閘控

Pre-grasp and approach is the careful run-up a robot's hand makes just before it actually touches an object — the part of the motion where it lines up its fingers, opens them to the right width, and glides in along a chosen path. Watch yourself pick up a coffee mug: you do not slap your hand straight at it. You first spread your fingers, swing your hand around to come at the handle from the open side, and slow down as you near it. A robot does the same in two named pieces. The pre-grasp is a waypoint pose parked a short distance in front of the object, with the gripper already oriented and pre-opened. The approach is the final, usually straight-line, glide from that waypoint in to contact.

Splitting the motion this way solves a real problem: the spot where the robot wants its fingers to end up is often crowded with the very object it is reaching for, plus the table, the bin wall, or neighbouring items. By first flying to a clear pre-grasp pose and only then approaching along a clean, collision-free line (often straight down a gripper's closing axis, or in along a suction cup's normal), the robot avoids swatting the target away, clipping a wall, or arriving at a good final pose but through an impossible path. The approach direction also sets which surfaces the fingers will land on, so a thoughtful pre-grasp is half of getting a stable grip.

In practice a grasp plan is not just a single target pose but a short recipe — pre-grasp pose, approach vector and distance, then close — and a motion planner is asked to reach the pre-grasp first and the approach second. If the straight-in approach is blocked or the pre-grasp is unreachable, the system rejects that grasp and tries another candidate, which is why these two steps are baked into almost every pick-and-place and bin-picking pipeline.

Also calledapproach phasepre-grasp pose接近阶段預抓取姿態

A precedent is a past court decision that guides how later, similar cases should be decided. Think of it as a footpath worn into a field: once the first walkers cross, everyone who follows tends to take the same line — and soon it would feel strange, even unfair, to wander off it. When a judge faces a dispute that looks like one already settled, she is expected to follow the earlier ruling rather than start from scratch.

Lawyers call this principle stare decisis — Latin for "to stand by things decided." Its great gift is predictability: because like cases are treated alike, a person can know roughly where they stand before they ever set foot in a courtroom, and two people with the same problem get the same answer. The law becomes something you can rely on, not a fresh coin-toss each time.

But a precedent is not a cage. Higher courts can overturn earlier rulings when the world has changed or the old decision was simply wrong, and judges can "distinguish" a case — show that the facts differ enough that the old rule shouldn't apply. So precedent is less a chain than a steadying hand: it holds the law steady without freezing it forever.

Also calledstare decisiscase lawbinding precedent先例遵循先例判決先例

Almost every filter runs on a heartbeat of two alternating steps, and once you see the rhythm you understand the whole machine. The first step is prediction: before any new sensor data arrives, the robot guesses where it must be now, based on what it just did. "I told my wheels to roll forward for a tenth of a second, so my belief about my position should slide forward by about that much." This step uses the motion model — the robot's internal story of how its commands turn into movement. Crucially, because no motion is ever perfect, prediction always makes the robot a little less sure: the belief slides forward and spreads out, like a dropped ink blot widening on paper.

The second step is the update, also called correction. Now a fresh measurement arrives, and the robot asks: how well does this reading match what I just predicted? It compares the actual sensor value with the value its prediction expected, and uses the gap between them to pull its belief toward the truth. A measurement that lands right where expected barely moves anything; a surprising one tugs the belief hard. Either way, the update sharpens the belief — it spreads out during predict and tightens back up during update, breathing wider then narrower with every cycle.

The reason this split is so powerful is that it cleanly separates two different kinds of knowing. Prediction is what the robot knows from its own actions; update is what the robot learns from the outside world. Keeping them as distinct steps lets a robot keep coasting on prediction alone when sensors briefly go silent — through a tunnel, under a couch, in a camera's blind spot — and then snap sharply back to certainty the moment a real measurement returns.

Also calledpredict and correcttime update and measurement update预测与校正时间更新与测量更新

Predictive coding is a theory that says the brain is not a passive camera that simply records whatever the senses send it. Instead, it is a tireless guesser: at every moment it is already predicting what it is about to see, hear, and feel, and then it compares that guess against the signals actually arriving from the eyes, ears, and skin. What travels up to the higher parts of the brain is mostly not the raw sensation, but the mismatch — the part the brain got wrong. That leftover surprise is called the prediction error. Picture reading a sentence and your eyes skip lightly over familiar words but snag hard on a typo: the typo is the error, the thing your brain did not expect, and that is exactly what grabs your attention.

How does it work? Imagine the brain as a stack of layers. Higher layers send their best guesses downward — "based on everything I know, the next sound should be this" — and lower layers, closer to the senses, send back only the difference between that guess and reality. If the guess was right, almost nothing needs to be reported, so the brain stays quiet and saves energy. If the guess was wrong, an error signal shoots upward, and the higher layers quickly adjust their next prediction to fit. Round after round, the brain tries to shrink its errors toward zero — which is just another way of saying it is trying to understand the world well enough that nothing surprises it.

Why does this matter? It reframes perception as a kind of controlled hallucination that the senses keep correcting, and it offers one tidy explanation for many puzzles at once: why we can read messy handwriting, why we sometimes hear a word that was never spoken, why we tune out a steady hum but jump at a new noise, and why attention feels like turning up the volume on the errors that matter most. The same idea links to powerful frameworks in artificial intelligence, where machines also learn by predicting and then correcting their mistakes.

Also calledpredictive processingprediction error coding预测加工預測加工

The prefrontal cortex is the front part of the frontal lobe, the cortex closest to the forehead. It does not move your muscles or read your senses directly; instead it sits on top of those systems and helps steer them toward goals.

It is most associated with what psychologists call executive function: planning ahead, holding information in mind for a moment, switching between tasks, weighing choices, and resisting tempting but unhelpful actions. Think of it less as a single command center and more as a conductor that keeps many other brain regions playing in time.

It is one of the last brain areas to fully mature, with development continuing into a person's mid-twenties, which is one reason careful long-term planning and impulse control keep improving well past the teenage years.

Also calledPFC前额皮质前額皮質

The prefrontal cortex is the wrinkled sheet of brain tissue right behind your forehead, and in cognition it acts like the brain's conductor and project manager — the part that holds a goal in mind, weighs choices, and keeps the rest of the brain pulling in the same direction. Think of an orchestra: dozens of musicians (vision, memory, emotion, movement) can each play, but without a conductor they would drift out of time. The prefrontal cortex is that conductor. It does not store your memories or move your hands itself; instead it decides what matters right now, plans the steps to get there, and stops you from blurting out or grabbing the first thing that catches your eye.

Three of its jobs stand out. First, reasoning and planning: it lets you think a few moves ahead, imagine outcomes you cannot see yet, and choose the sensible path over the tempting one — like resisting a snack now so you are not too full for dinner. Second, control, often called inhibition: it puts the brakes on automatic urges and habits so you can do the harder, smarter thing, such as staying quiet in a meeting or switching tactics when a plan stops working. Third, working memory: it briefly holds and juggles a small amount of information in mind — a phone number, the thread of a conversation, the step you are on in a recipe — so you can work with it before it slips away. Because these abilities mature slowly and are easily disrupted, the prefrontal cortex is the last brain region to fully develop (well into the mid-twenties) and is among the first to falter under stress, tiredness, or alcohol, which is why good judgment is the first thing to go when you are exhausted.

Also calledprefrontal executive functionPFC in cognition前额叶执行功能前額葉執行功能

The premotor cortex is a strip of the brain sitting just in front of the part that actually fires off your muscles, and you can think of it as a stage manager rather than the actor: it does not throw the punch or grab the cup itself, but it decides which movement should happen, how it should be shaped, and gets everything cued up and ready a fraction of a second before the body moves. It lives in the frontal lobe, the region behind your forehead, tucked right beside the primary motor cortex, which is the area that sends the final go signal down to the muscles.

What makes the premotor cortex special is how much it leans on the outside world. It is especially busy when a movement is guided by something you see, hear, or are told to do, rather than something you decide to do entirely on your own, in other words movements that are externally cued. A traffic light turns green and your foot finds the pedal; an arrow points left and your hand reaches that way; a coach says go and you start running. In each case the premotor cortex takes in that signal, picks the matching action from your repertoire, and prepares the muscles before the primary motor cortex finally pulls the trigger. It also helps when you have to reach around an obstacle or shape your grip to fit an oddly shaped object, because the right movement depends on what is in front of you.

Because it handles preparation rather than the raw command, damage to the premotor cortex usually does not leave a person fully paralyzed, the muscles still work. Instead movements become clumsy, poorly aimed, or hard to start when a cue is present, and people may struggle to fit the right action to the situation, a sign of how much of skilled movement is really about planning the next step rather than just contracting a muscle.

Also calledpremotor arealateral premotor cortex前运动皮层前運動皮層运动前皮质運動前皮質

The presumption of innocence is a simple promise the law makes to everyone accused of a crime: until the case against you is actually proven, you are treated as innocent. Picture a courtroom scale that does not start out balanced — it starts tipped in your favor, and the prosecution has to pile on enough solid evidence to tip it the other way.

This matters because it decides who has to do the work. You never have to prove you didn't do it; the state has to prove you did, and prove it convincingly — in serious criminal cases, beyond a reasonable doubt. If they fall short, you walk free, even if some doubt lingers. Better that than punishing people on suspicion alone.

A common mix-up: a 'not guilty' verdict does not mean the court declared you innocent or believed your story. It means the state failed to prove its case to the required standard. Innocence was the starting point all along — the trial was only ever a test of the prosecution's proof, not of your goodness.

Also calledinnocent until proven guilty未经证实有罪即无罪未經證實有罪即無罪presumptio innocentiae

A presynaptic terminal is the swollen tip at the very end of a sending neuron, the spot where one nerve cell hands its message off to the next. Think of a neuron as a long wire that carries an electrical signal; the presynaptic terminal is the little bulb at the wire's end, sitting just across a tiny gap from the cell it wants to talk to. Packed inside this bulb are dozens of tiny bubbles called vesicles, each one a sealed pouch filled with chemical messengers known as neurotransmitters — the actual words of the message.

When an electrical signal races down the neuron and reaches this terminal, it triggers a quick chain of events: channels in the terminal's wall open, calcium rushes in, and that calcium acts like a starting gun, telling the waiting vesicles to fuse with the outer membrane and dump their neurotransmitter into the gap. The chemicals drift across and land on the next cell, passing the message along. Because the terminal both stores the messengers ahead of time and releases them only on cue, it is the launch pad of nearly every signal your brain sends — and the precise place where many drugs, toxins, and medicines do their work.

Also calledaxon terminalsynaptic boutonnerve terminal轴突末梢軸突末梢突触小体

A primary key is the column in a database table whose value uniquely identifies each row — the one stable handle by which you can always point at exactly one record. Like a student ID or an order number, it answers the question 'which exact row do you mean?' with no ambiguity.

Two rules make it special: it must be unique (no two rows can share the same value) and it can never be empty. The database itself enforces this, so you can't accidentally end up with two customers wearing ID 42. Often it's a plain auto-incrementing number the database hands out for you, one per new row.

Why bother? Because names and emails change, and people share them, but a primary key is the one thing you can rely on to mean the same row forever. It's also what other tables point at when they need to reference this row — the anchor a foreign key grabs onto.

Also calledpkid columnunique identifier

A primary source is firsthand evidence — a trace left directly by the time a historian is studying, whether made by someone who was there or simply produced in that period. A soldier's letter home, a wedding photo, a peace treaty, a clay pot, a diary entry: these are the raw material of history, the closest we can get to touching the past directly. Think of it as a witness who left something behind, rather than a storyteller summing things up afterward.

This matters because everything we claim to know about the past has to rest on traces like these. A historian is a bit like a detective: the primary sources are the fingerprints and footprints at the scene, and the job is to read them carefully, weigh them, and piece together what most likely happened.

One common mix-up: "primary" does not mean "true" or "unbiased." A wartime poster, a politician's speech, a one-sided diary — all are primary sources precisely because they come from the period, and all can be slanted, mistaken, or self-serving. The skill is not blind trust but careful interrogation: who made this, when, for whom, and why?

Also calledfirsthand sourcefirst-hand evidenceprimary evidence原始史料第一手资料一手史料第一手資料

A prime number is a whole number bigger than 1 that can be split evenly only two ways: by 1, and by itself. Seven is prime — try to share seven cookies into equal piles and you're stuck unless you make one pile of seven or seven piles of one. Six is not prime, because it breaks neatly into 2 × 3.

Primes are the building blocks of all the other whole numbers. Every whole number bigger than 1 is either a prime itself or can be written as a product of primes — and apart from the order you write the factors, there's only one way to do it: 60 is always 2 × 2 × 3 × 5, never anything else. So primes are to arithmetic what atoms are to matter — the pieces everything else is assembled from.

One thing trips people up: the primes never run out. You might think that once numbers get huge they'd all be buildable from smaller pieces, but over 2,000 years ago Euclid proved there are infinitely many primes — no matter how far you count, there's always another waiting.

Also calledprime质数素数質數prime factor

A prismatic joint is a joint that lets one link slide straight along a single line, the way a drawer pulls in and out of a desk. It cannot rotate or wobble — it only travels back and forth along one direction. Like a revolute joint, it allows exactly one independent motion, so it too has one degree of freedom, but here the single number that describes its state is a distance (how far it has extended) rather than an angle.

If revolute joints are the hinges of robotics, prismatic joints are the telescoping rails and pistons. You see them anywhere a robot needs to push something out, raise a platform, or extend a reach in a perfectly straight line — a 3D printer's bed gliding forward, a forklift mast lifting, a CNC cutter tracking along its rail. They are valued precisely because straight-line motion is simple to control and predict; the part goes exactly where the slide points it.

Engineers label a prismatic joint with the letter P. Robots often mix the two types: a SCARA arm, for instance, uses revolute joints to position the hand over a spot and then a prismatic joint to plunge straight down onto it. By combining R and P joints, designers get both the wide sweep of rotation and the clean, direct push of sliding.

Also calledprismaticsliding jointlinear jointP joint滑动关节直线关节

A probabilistic roadmap, usually shortened to PRM, is a reusable 'road network' of safe positions that a robot builds once and then drives across many times. Think of how a city's road map is surveyed and drawn up just once, after which any driver can plan a trip between any two addresses on it. A PRM does the same for a robot: in a first, slower phase it scatters many random poses across the space of everything the robot could do, keeps only the collision-free ones, and joins nearby safe poses with short links that are also checked to be collision-free. The result is a graph — dots (safe poses) joined by edges (safe motions) — that captures the navigable shape of the free space.

Once that roadmap exists, answering a planning request is fast. To go from some start pose to some goal pose, the planner simply connects each of them to the nearest dots already on the roadmap, then runs an ordinary graph search such as Dijkstra's algorithm or A* over the network to find a route. Because the expensive work of sampling and collision-checking was done up front, each new query is cheap — which is why a PRM is called a multi-query planner: build the map once, reuse it for many different start-and-goal pairs.

This pays off precisely when the world holds still and the robot must make many trips through it — a robot arm picking from fixed bins all day, or a mobile robot patrolling an unchanging building. The drawback is the mirror image of that strength: if the obstacles move, the roadmap's edges may no longer be collision-free and much of it must be rebuilt. For one-off plans through a changing or unknown space, a single-shot method like the rapidly-exploring random tree is usually the better fit.

Also calledPRMprobabilistic roadmap method概率路标图

Probability is a number that pins down how likely something is, on a fixed scale from 0 to 1. Zero means it simply cannot happen; 1 means it is certain; one-half means a coin-flip, equally likely either way. A fair die landing on a six sits at 1/6 — about 0.17 — a small but real chance you can feel in your bones every time you roll.

Why trust a single number to capture luck? Because over the long run it comes true. Flip a fair coin ten times and you might get seven heads; flip it ten thousand times and the share of heads creeps remarkably close to one-half. Probability is the promise hidden in that drift — the steady frequency a thing settles into when you give chance enough room to average out.

The common trap is the 'gambler's fallacy': after five reds at roulette, black feels overdue. It isn't. The wheel has no memory, and each spin carries the same odds as the first. Probability describes the long crowd of trials, never a debt that the next single try is forced to repay.

Also calledchanceoddslikelihood概率機率或然率

Procedural memory is the kind of memory you show by doing rather than by remembering. It holds the skills and habits you have practiced — riding a bike, tying your shoes, touch-typing, swimming — and it lets you carry them out smoothly without thinking through each step. The word "implicit" means hidden or unspoken: this knowledge lives in your hands and body, not in your conscious mind, which is why it is so hard to put into words. Try to explain in full detail how you keep your balance on a bicycle, and you will struggle — yet your legs and inner ear know exactly what to do.

It works very differently from the memory for facts and events, which you can recall and describe out loud ("Paris is the capital of France"; "I had toast this morning"). Procedural memory is built slowly, through repetition, and it leans on brain regions deep below the thinking surface — especially the basal ganglia, a cluster near the brain's center that helps automate movement, and the cerebellum, which fine-tunes timing and coordination. Because it is stored apart from conscious, fact-based memory, it can survive even when that other system is damaged: some patients who can no longer remember meeting you yesterday can still get steadily better at a new skill they practice, all without any memory of having practiced it.

This separation is why a well-learned skill feels automatic and durable. Once procedural memory is laid down, it tends to last for years with little upkeep — the familiar saying "it's like riding a bike" captures exactly this. The trade-off is that such memories form gradually and resist quick change, so building them takes patient, repeated practice rather than a single read-through.

Also calledskill memoryimplicit memorymuscle memory内隐记忆技能记忆內隱記憶技能記憶

A process is a program that's actually running right now — not the file sitting on your disk, but a live instance of it with its own slice of memory, its own to-do list, and its own ID number. Double-click an app and you've just started a process; quit it and the process ends.

Your computer is running hundreds at once: your browser, your editor, background helpers, the system itself. The operating system is the juggler here — it gives each process a turn on the CPU, keeps their memory walled off so one crashing program can't scribble over another, and cleans up when they finish.

The neat part: you can run the same program twice and get two separate processes that don't share anything. That's why you can have two browser windows behaving as if the other doesn't exist — they're two instances of one program, living quite independent lives.

Also calledrunning programtaskpid

When a robot tries to track something it cannot see directly — its true position, its real speed — it leans on two pictures of the world, and each comes with its own kind of fuzziness. One picture is a prediction: "based on how I was moving, I should now be roughly here." The other is an observation: "my sensor just told me I'm over there." Neither is perfect, and the two flavors of imperfection have names. Process noise is the slop in the prediction — all the little ways the real world refuses to follow the tidy rule the robot used. Measurement noise is the slop in the observation — all the little ways the sensor mis-reports what it sees.

Process noise comes from the prediction step relying on a simplified model of how things move, and reality always wandering a bit outside that model: a wheel slips, a gust shoves the drone, a motor pushes a touch harder than commanded. It is uncertainty in the motion itself — the gap between "how I assumed I'd move" and "how I actually moved." Measurement noise, by contrast, is uncertainty in the looking: a GPS jittering by a few meters, a camera blurring, a thermometer that wobbles around the true temperature. The robot's actual state may be perfectly steady, yet the sensor still hands back a slightly different number each time it checks.

Telling these two apart is the heart of how filters like the Kalman filter work, because the filter must decide how much to trust its own prediction versus a fresh sensor reading. If it believes the motion model is reliable but the sensor is jumpy, it leans on the prediction and shrugs off the noisy reading; if the sensor is crisp but the motion is unpredictable, it leans on the measurement instead. Get the balance of these two noises right and the estimate stays smooth and accurate; get it wrong and the robot either chases every sensor twitch or stubbornly ignores the real world.

Also calledsystem noise and sensor noise过程噪声与观测噪声系统噪声

No two chips off the line are identical, and none of them runs in a perfectly controlled room. The transistors come out a little faster or a little slower than the textbook value (that's the manufacturing spread), the supply voltage sags or spikes a bit, and the silicon runs anywhere from freezing cold to scorching hot. A process corner is a deliberately pessimistic recipe that pins all three of those knobs to a worst-case (or best-case) setting at once — Process, Voltage, Temperature, hence PVT — and says: the chip must still work here. Think of it like stress-testing a bridge not at the average traffic load but at the heaviest truck on the hottest day with the cheapest batch of steel. If it survives the corners, you trust it survives everything in between.

The corners get short names from how the transistors turn out. SS means slow-slow silicon (slow NMOS and slow PMOS), FF means fast-fast, TT is the typical center, and SF / FS describe skewed cases where one transistor type came out fast and the other slow. You pair each with a voltage and a temperature. The intuition for which corner bites: setup checks (is the data fast enough to arrive before the clock edge?) are usually worst in the slow, low-voltage corner because everything is sluggish; hold checks (does the data stay put long enough?) are usually worst in the fast, high-voltage corner because signals race ahead. Temperature used to be simple — hotter meant slower — but at modern low-voltage nodes that can invert, so cold silicon is sometimes the slow case. That is exactly why you don't reason about one corner by hand; you let the tool sweep all of them.

Checking one corner at a time would take forever and miss interactions, so signoff uses MMMC — multi-mode multi-corner. A mode is an operating scenario the chip runs in (normal function, scan test, a low-power sleep state, a turbo state), and each mode cares about a different clock and constraint set. MMMC builds the full grid of every mode crossed with every relevant corner and analyzes them together in one run, after routing, with the real extracted parasitics in the timing model. Closing timing means there is no failing path in any cell of that grid — only then has the design genuinely met timing across the whole envelope of silicon, supply, and temperature it will ever face.

Also calledPVT cornerprocess cornerscorner case (timing)P/V/T cornerPVT 工艺角PVT 製程角

A process node is the name of a chip-manufacturing generation — "7nm," "5nm," "3nm" — that tells you which era of transistor a chip was built with. Think of it like a printing press's resolution: a finer press lays down crisper, smaller letters, so you fit more words on a page. A finer node prints smaller transistors, so you cram billions more onto the same sliver of silicon, and each newer generation aims to do it denser, faster, and on less power.

Here's the twist designers know: the nanometre number stopped matching any real measurement long ago — the gap was already wide by the FinFET era around 22nm. It's now a relative label — TSMC's "5nm" and Intel's older "7nm"-class node can land at similar transistor density. What actually advances are the pitch dimensions (gate, metal, fin) and the device architecture, like the move from planar to FinFET to gate-all-around nanosheets. So "3nm" marks roughly the 2022–2023 leading edge, not a 3-nanometre gate.

Also calledtechnology nodenmnode7nm3nm制程节点製程節點

A progenitor cell is a partly-committed cell — one step down the ladder from a stem cell, already heading toward a destination. A stem cell is like a fresh university student who could still choose almost any major; a progenitor cell is a final-year student who has picked their field and is on track to one specific career. It has narrowed its options but has not finished training.

Two traits set progenitors apart from the stem cells above them. They divide only a limited number of times, rather than renewing themselves indefinitely, and they are biased toward producing one particular tissue type — a blood-cell progenitor makes blood cells, a muscle progenitor makes muscle. They are the busy middle managers of tissue building, mass-producing the specialized cells a tissue needs.

Progenitors matter for regeneration because they are the workhorses that actually refill a tissue day to day, and because they can sometimes be expanded and used more safely than fully unrestricted stem cells. Understanding exactly where a cell sits on this ladder is key to steering it toward the repair you want.

Also called祖细胞祖細胞

A proof is an airtight chain of reasoning that shows a mathematical statement is true — not just probably, not just for every case anyone has checked, but with total certainty, forever. Each link follows from the one before by pure logic, like a row of dominoes where knocking the first guarantees the last must fall. Once a proof is sound, the result is settled for all time; no future experiment or counterexample can ever overturn it.

This is what makes mathematics unlike almost everything else. A scientist can test a claim a million times and still be proven wrong on the million-and-first; a mathematician who has proved that there are infinitely many prime numbers knows it the way you know two plus two is four. The whole edifice is built by starting from a few plain assumptions and deducing everything else, step by careful step.

A common mistake is to think that checking lots of examples counts as proof. It doesn't. A pattern can hold for the first billion numbers and then quietly break — and history is full of such traps. Examples can convince you a thing is likely true and hint at why, but only a proof can promise it holds in every single case, including the ones too large to ever check.

Also calledmathematical proofdeductive proofQ.E.D.证明證明数学证明

Proof of stake is a way to secure a blockchain not by burning electricity, but by putting money on the line. Instead of miners racing to solve puzzles, participants lock up some of the chain's own coins as a deposit, called a stake. The network then picks one of them to propose the next block, and others to check it. The right to add to the ledger is bought with a bond, not with brute-force computation.

The genius is in the penalty. A participant — here called a validator — only earns rewards while playing by the rules, and their staked deposit can be partly destroyed if they try to cheat, for example by approving two conflicting versions of history. This automatic punishment is called slashing. So honesty is the profitable choice and dishonesty literally costs the attacker their own money, which is what deters bad behavior without any energy-hungry puzzle.

Compared with proof of work, proof of stake aims for the same outcome — leaderless agreement that is expensive to subvert — at a tiny fraction of the energy cost, since validating a block is cheap once you hold a stake. Ethereum switched from proof of work to proof of stake in 2022, cutting its energy use by over ninety-nine percent. The security now rests on capital at risk rather than computing power consumed.

Also calledPoS权益证明權益證明

Proof of work is a way of deciding who gets to add the next block by making it costly to even try. Each participant races to solve a hard numeric puzzle that has no shortcut — you can only find the answer by guessing over and over, billions of times a second. Whoever stumbles on a valid answer first wins the right to publish the next block. It is, in effect, a costly numeric lottery where buying more tickets means burning more electricity.

The puzzle is built from cryptographic hashing. A miner takes the block's data plus a changeable number called a nonce, runs it all through a hash function, and hopes the result comes out below a target value — like rolling dice and needing a number under a tiny threshold. There is no clever trick: the only strategy is to keep changing the nonce and re-hashing until you get lucky. But once someone finds an answer, everyone else can check it in a single instant. Hard to produce, trivial to verify.

This asymmetry is what secures the chain. Because each block embeds the previous block's hash, rewriting an old transaction would force an attacker to redo that block's work and every block after it, faster than the entire honest network is extending the chain — an astronomically expensive task. Proof of work is how Bitcoin lets a leaderless network agree on history: the longest chain, representing the most accumulated work, is the one everyone accepts as true.

Also calledPoW工作量证明工作量證明

These are the three building blocks inside a PID controller, and each one answers a different question about the error — the gap between where you want to be and where you actually are. The Proportional term asks 'how big is the error right now?', the Integral term asks 'how much error has piled up over time?', and the Derivative term asks 'how fast is the error changing?'. Each term has its own tuning knob, called a gain, that sets how loudly its answer is allowed to speak in the final correction.

The Proportional (P) term is the muscle of the moment: it produces a push in direct proportion to the present error, so a big gap means a big shove and a small gap a gentle one. On its own, though, P often stalls just short of the goal — it relaxes as the error shrinks, and a small steady error can linger forever, like a spring that pulls hard at first but settles a little below the mark. The Integral (I) term fixes exactly that: it keeps a running total of every bit of error left over, second after second, and that growing sum eventually becomes large enough to wipe out even a tiny stubborn gap — patient where P is impatient. Its weakness is being slow and prone to overshoot, since it has to build up before it bites.

The Derivative (D) term looks not at the error itself but at its speed and direction of change — it anticipates. If the error is closing fast, D senses the rush and pushes back early, acting like a shock absorber that smooths out overshoot and damps oscillation before it starts. The catch is that measuring rate of change magnifies any jitter in the sensor, so too much D makes a system twitchy and nervous. In short: P reacts to the present, I remembers the past, and D predicts the near future — and tuning is the art of balancing the three so they cooperate instead of fighting.

Also calledP termI termD term比例项积分项微分项

Proprioception is your body's quiet sense of itself — knowing where your arms, legs, and other parts are and how they are moving, even with your eyes shut. Close your eyes and touch your nose, or walk up stairs in the dark without looking at your feet: you can do it because your body is constantly reporting the angle of each joint and the stretch of each muscle. It is the unseen sense that lets you type without watching your fingers and keeps you steady when you stand still.

This sense comes from tiny receptors buried inside your muscles, tendons, and joints. Special structures called muscle spindles sit among the muscle fibers and detect how much a muscle is stretched and how fast; other sensors in the tendons measure how hard the muscle is pulling. These detectors send a steady stream of signals up your nerves to the spinal cord and brain, which blend them into a moment-by-moment map of your body's shape and motion. Because this happens automatically, you rarely notice proprioception — until it fails, after which simple acts like walking or reaching can suddenly require careful, deliberate effort.

Also calledposition sensebody awarenesssixth sense本体感觉肌肉运动知觉本體覺肌肉運動知覺

Robots learn about the world through two very different kinds of sensing, and the names sound fancier than the idea behind them. Proprioceptive sensing is when a robot senses its own body — where its joints are bent, how fast a wheel is spinning, how much its battery is drained. Exteroceptive sensing is when a robot senses everything outside its body — a wall ahead, a person walking by, how bright the room is. The simplest way to remember it: proprioceptive means inside-looking, exteroceptive means outside-looking.

You have both senses too. Close your eyes and touch your nose with a fingertip — you can still do it, because your body knows where your own arm is without looking. That inner sense of your own posture is proprioception. Now open your eyes and spot a cup across the table — that is exteroception, sensing the world out there. A robot's joint angle sensors and wheel counters are its inner sense; its cameras, microphones, and distance scanners are its outward sense.

Robots need both because each covers the other's blind spot. Inner sensing is fast, cheap, and reliable, but it cannot tell the robot that the floor is icy or that someone moved the furniture. Outer sensing reveals the changing world, but it is noisier and easily fooled by glare, fog, or shadows. Good robots blend the two: the inner sense keeps the body coordinated, while the outer sense keeps the robot aware of where it actually is and what is around it.

Also calledinternal vs external sensing本体感受外感受

A protein is a long chain of small building blocks called amino acids, folded up into a specific 3D shape. That shape is the whole point: it lets the protein do a real job inside your cells — speeding up chemical reactions, holding your tissues together, carrying signals, or fighting off invaders.

Your DNA is basically the instruction list for which amino acids to string together, in what order. Once the chain is made, it folds — often in fractions of a second — into a precise twisted, knotted shape. Change the shape and you usually change (or break) the job, which is why a single wrong amino acid can cause disease.

For decades, predicting how a chain would fold from its sequence alone was one of biology's hardest puzzles. In 2020 an AI system called AlphaFold cracked it well enough to predict shapes for nearly every known protein — a breakthrough that won a share of the 2024 Nobel Prize in Chemistry.

Also calledpolypeptideamino acid chain氨基酸链胺基酸鏈多肽
See alsoDNAenzyme

Public-key cryptography gives each person a matched pair of keys: a public key they can share freely, and a private key they keep secret. The two are mathematically linked so that what one key does, only the other can undo. This solves a problem that stumped people for centuries — how to communicate securely with someone you have never met and never shared a secret password with.

The pair works two complementary ways. For privacy, anyone can use your public key to lock a message that only your private key can open, like a mailbox with a slot the whole world can drop letters into but only you have the key to empty. For proof of identity, you use your private key to sign something, and anyone can use your matching public key to verify the signature is really yours — without ever learning the private key itself.

On a blockchain this is the foundation of ownership. Your account is essentially a public key (often shortened into an address), and control over its funds is simply control over the matching private key. To send coins you sign the transaction with your private key; the whole network checks it against your public key and accepts it as authentically yours. No bank account, no password reset, no middleman — whoever holds the private key holds the funds.

Also calledasymmetric cryptography公钥密码学非对称加密非對稱加密

The publish–subscribe pattern, often shortened to pub/sub, is a simple and powerful way for programs to share information without being wired directly to one another. Instead of one program calling another by name, the producer of some data just posts it to a named channel, called a topic, and any program that cares about that topic quietly listens in and receives a copy. The producer is the publisher; each listener is a subscriber. The beauty is that neither side needs to know who the other is, how many there are, or whether anyone is listening at all.

A good everyday picture is a magazine. The publisher prints an issue and sends it out under a title — say, a weekly on gardening. Subscribers signed up for that title receive every issue at home; the magazine never needs to track each reader's daily whereabouts, and readers never phone the office to ask for content. New readers can subscribe and old ones can cancel without disturbing anyone else. In a robot, a camera node might publish images to a topic, while a face-detector, a recorder, and a display all subscribe to the same topic and each get every frame — and you can add a fourth listener later without touching the camera's code.

This loose coupling — programs joined through topics rather than tied to each other — is exactly why pub/sub is the backbone of robot software like ROS. It lets a robot's many parts be developed, started, stopped, and replaced independently, and it makes it easy to tap into a stream of data just to watch or debug it without disturbing the flow.

Also calledpub/subpublish-subscribe发布订阅發布訂閱

A pull request — a 'PR' — is how you say 'here are my changes, can we add them to the project?' You've done work on your own branch, and a PR proposes folding those changes into the main one, so the team can look before anything is final.

It's really a conversation. Teammates review your changes line by line, leave comments, suggest tweaks, and you push fixes — all in one place. Nothing gets merged until someone gives it a thumbs-up. It's the polite knock before you walk into the shared codebase.

The name comes from the request to 'pull' your changes in. On GitHub and GitLab they look almost identical, though GitLab calls them 'merge requests' — same idea, different label.

Also calledprmerge requestmr

To find out what state a qubit is in, engineers attach a small readout resonator to it and bounce a microwave signal off it. But that readout line is also an open door: the qubit can leak its energy out through the same path and relax before you even finish the measurement. This unwanted leak is called Purcell decay, and it shortens the qubit's lifetime (T1). A Purcell filter is a tiny circuit placed between the qubit and the outside world that acts like a smart gate, letting the readout signal pass while turning the qubit away.

The trick is frequency. The readout photons and the qubit live at different microwave frequencies, usually a few hundred megahertz to a gigahertz apart. A Purcell filter is built to be transparent at the readout frequency, so measurement photons flow out fast and the result arrives quickly, but to look like a mirror at the qubit frequency, so the qubit's energy is reflected back instead of escaping. Common designs use an extra resonator, a notch, or a short transmission-line stub tuned to the band you want to block.

The payoff is that you get fast readout and a long-lived qubit at the same time, two goals that normally fight each other. The catch is that the filter only protects a narrow band, so on a chip with many qubits at crowded, slightly different frequencies, one filter cannot shield them all perfectly. Designing and tuning these filters, and fitting them into the limited space and wiring of a real chip, is ongoing engineering work, not a solved problem.

Also calledPurcell filter珀塞尔滤波器珀塞爾濾波器

A Purkinje cell is one of the largest and most striking nerve cells in the brain, found in the cerebellum — the wrinkled structure at the back of your head that helps you move smoothly and keep your balance. Its most famous feature is a huge, beautifully branched receiving antenna called a dendritic tree: thousands of tiny twigs spreading out from a single trunk, almost like a fan or a flattened oak tree pressed between two panes of glass. That last part matters — the whole tree is squashed nearly flat into a single plane, so neighboring Purkinje cells stack side by side like pages in a book without their branches tangling together.

Each Purkinje cell uses this enormous flat tree to listen to an astonishing number of incoming signals — often a hundred thousand or more connection points from other cells — and then boils all of that chatter down into a single, well-timed output. It is one of the brain's main calming, or inhibitory, voices: when it fires, it tells the cells it talks to to quiet down. By gathering huge amounts of sensory and movement information and sending out precisely tuned 'hush' signals, Purkinje cells act as the cerebellum's master coordinators, fine-tuning the timing and smoothness of your movements so that reaching for a cup or walking across a room feels effortless instead of jerky.

Because they are so big, so regular, and so easy to recognize under a microscope, Purkinje cells have been favorite subjects for scientists since the 1800s, and much of what we understand about how single neurons compute came from studying them.

Also calledPurkinje neuron浦肯野神经元蒲肯野细胞浦肯野神經元蒲肯野細胞

A pyramidal neuron is one of the main workhorse brain cells of the cortex — the thin, wrinkled outer sheet of the brain where much of our thinking, sensing, and planning happens. Its name comes from the shape of its cell body, the central bulb that holds the cell's life-support machinery: instead of being round, that body is triangular, like a tiny pyramid pointing toward the brain's surface. From the pointed top sprouts one thick branch, and from the wide base spread several more, all of them bushy with even finer twigs that catch incoming signals. With this distinctive triangular outline, pyramidal neurons are some of the easiest brain cells to recognize under a microscope.

What makes them especially important is that they are projection neurons — cells whose job is to send messages far away rather than just to their immediate neighbors. Each one grows a single long output cable, called an axon, that can stretch across the brain or all the way down the spinal cord, sometimes for many centimeters. Along this cable the neuron fires brief electrical pulses to pass its message on, often to a completely different brain region or even out to the muscles. So while smaller local cells mostly chat within one patch of tissue, pyramidal neurons are the long-distance lines that let widely separated parts of the nervous system talk to one another, carrying the commands behind movement, perception, and thought.

Also calledpyramidal cellprojection neuron锥体细胞投射神经元錐體細胞投射神經元
See alsoaxon
Q

A quadrotor is a flying robot lifted by four propellers, usually arranged at the four corners of an X or a square frame. It is the shape most people now picture when they hear the word drone. Each propeller, spun by its own little motor, grabs the air and throws it downward; by Newton's old rule that every push has an equal push back, that downward blast of air shoves the craft upward. Four of them together produce enough lift to hold the whole machine in the air. The beauty of the design is that it has no swashplates, tail rotor, or complicated tilting blades like a real helicopter — every propeller is fixed, and the only thing the robot ever changes is how fast each one spins.

That single, simple control knob — four spinning speeds — is enough to fly anywhere. To climb, speed up all four together; to descend, slow them all. To lean and slide forward, the back two are sped up and the front two slowed, so the craft tips nose-down and its lift now also pushes it ahead. To spin in place, you exploit a subtler trick: two propellers turn clockwise and two counter-clockwise so the twist each one drags against the air normally cancels out, but speeding up the clockwise pair while slowing the others leaves a leftover twist that rotates the whole body. Every move a quadrotor makes is really just these four numbers being nudged up and down many times a second.

Because tiny changes in those four speeds tip the craft instantly, a quadrotor cannot actually be flown by a human reacting in real time — it would wobble and flip in a fraction of a second. An onboard computer reads its tilt and turn-rate sensors hundreds of times per second and constantly re-balances the four motors, while the pilot or autopilot just asks for 'go forward' or 'hold here.' This blend of mechanical simplicity and fast electronic balancing is exactly why quadrotors became the dominant small drone for photography, racing, inspection, and research.

Also calledquadcopterfour-rotor drone四旋翼无人机四軸飛行器

Quadrupedal locomotion is moving on four legs, the way a dog, horse, or cat does. Compared with walking on two legs, having four is a big gift to balance: with all four feet on the ground the robot rests on a wide, sturdy base — like a table that does not wobble — so even a beginner machine can stand and creep along without toppling. This is why many of today's most capable mobile robots, from delivery and inspection machines to research platforms, are four-legged.

The four legs also unlock a rich menu of ways to move, each a different gait. The robot can creep slowly, lifting just one foot at a time so three always stay down and it is rock-steady; it can trot, moving diagonal pairs of legs together at a brisk, balanced jog; or it can bound and gallop, briefly throwing all four feet off the ground at speed like a running horse. Slow gaits keep it stable by always leaving enough feet down; fast gaits trade that steadiness for speed and must rely on momentum to stay upright between footfalls.

Designers borrow heavily from animals because nature already solved this problem over millions of years. Modern quadruped robots copy the springy, shock-absorbing legs of dogs and goats so they can trot over gravel, recover from a shove, and scramble up slopes. The four-legged shape hits a practical sweet spot — far more stable and easier to control than two legs, yet far lighter, simpler, and more agile than six or eight — which is why it has become the workhorse body plan for robots that must roam rough, real-world terrain.

Also calledfour-legged locomotionquadruped walking四足行走

After sampling has chopped a continuous signal into discrete moments in time, quantization is the second slice: each sample's voltage gets rounded to the nearest rung on a fixed ladder of allowed values. An N-bit converter has 2^N rungs, so a 12-bit converter offers 4096 of them. Think of weighing yourself on a scale that only reads whole kilograms: your true weight is some smooth number, but the readout has to commit to the closest mark, and the little bit it throws away is gone for good. That discarded remainder is the quantization error.

Because a real signal almost never lands exactly on a rung, every sample carries a small rounding error somewhere between minus half a step and plus half a step. Across a busy signal those errors look random, so they behave like a faint hiss added on top of your audio or data — a noise floor you can never scrub away, only push lower by adding more bits. Each extra bit halves the step size, which is why resolution and noise are two sides of the same coin: the finer the ladder, the quieter the hiss.

Working out the power of that uniform rounding error against a full-scale sine wave gives the famous ideal figure: SNR is about 6.02*N + 1.76 dB. Read it as roughly 6 dB of signal-to-noise headroom per bit. A 16-bit audio converter tops out near 98 dB, a 12-bit data converter near 74 dB — and that is the best case, before real-world thermal noise, jitter, and rung-spacing errors eat into it. So when someone says a converter is 'effectively 11 bits' (ENOB), they mean its real measured SNR matches what an ideal 11-bit quantizer would give.

Also calledquantizingamplitude quantization幅度量化幅度量化

A quantum is the smallest possible amount of something — the tiniest "chunk" that can exist, with nothing smaller in between. Energy, for example, doesn't flow like water from a tap; it comes in discrete little packets, like coins of a fixed size rather than an endless smooth stream.

The idea was born in 1900 when physicist Max Planck realized he could only explain how hot objects glow if energy came in these set-sized packets, not in any amount you please. That single insight cracked open a whole new science — quantum physics — describing how the universe behaves at its smallest scales.

When you have more than one, you say "quanta." So a beam of light is made of countless quanta of energy, each one indivisible — you can have one or two, but never half.

Also calledquantaquantum of energyenergy packetPlanck quantumenergy quantum
See alsophoton

Quantum advantage is the moment a quantum computer does some task faster, cheaper, or more accurately than the best possible classical computer running the best known classical method. It is the practical payoff everyone is waiting for: not just that a quantum machine can run, but that it actually beats the alternative on a job worth doing. Think of it as the point where switching tools is genuinely worth it, rather than a curiosity.

It helps to split the idea in two. A narrow demonstration shows a quantum machine winning on a carefully chosen, often contrived problem — one picked because it is hard for classical computers and natural for quantum hardware, even if no one needs the answer (random-circuit sampling is the usual example; this kind of narrow win is also called quantum supremacy). A useful advantage means winning on a problem people actually care about, like a chemistry, materials, or optimization question. The first has been argued for; the second has not been clearly achieved.

Two honest cautions. First, the bar moves: several claimed advantages have shrunk or vanished once classical researchers found cleverer algorithms or bigger supercomputers to match them, so any single claim deserves a careful look at what classical baseline it was compared against. Second, advantage is problem-specific — a quantum computer is not simply faster across the board. It needs a task whose structure lets carefully arranged amplitudes interfere so the right answer is read out more often, and in today's NISQ era, with noisy hardware and no large-scale error correction yet, the set of such tasks where quantum truly wins is still small and contested.

Also calledquantum supremacy

Imagine you are trying to find the lowest point in a vast, foggy landscape of hills and valleys, where the lowest valley is the best answer to your problem. A classical search might walk downhill and get stuck in the first small dip it finds. Quantum annealing is a different style of quantum computing that tries to settle into that lowest valley by starting in a simple, easy-to-prepare quantum state and then slowly tuning the system so that its lowest-energy configuration encodes the answer you want. If you change things slowly and gently enough, the system tends to stay in its lowest-energy state the whole way, ending up in the good solution at the end. Quantum effects like tunneling can sometimes help it pass through a barrier rather than having to climb over it.

Unlike the gate model of quantum computing (the kind that runs circuits of H, CNOT, and other gates), an annealer does not run arbitrary programs. Instead, you encode an optimization problem as an energy function and let the hardware relax toward low energy. This makes it a specialized tool, well suited to certain combinatorial optimization and sampling problems, rather than a general-purpose computer. D-Wave is the company that commercialized this approach, building machines with thousands of qubits aimed at these problems.

Be careful with the hype here. Whether quantum annealing actually beats good classical algorithms (like simulated annealing or modern specialized solvers) is genuinely debated, and clear, broad speedups have been hard to demonstrate. It does not 'try all answers at once,' and it is not known to give the kind of exponential advantage that Shor's algorithm gives for factoring. Treat it as a promising, problem-specific approach whose practical edge is still being worked out, not as a proven shortcut for hard optimization in general.

Also calledadiabatic optimization (related)AQO绝热量子优化(相关)絕熱量子優化(相關)

Imagine you have a hard 'best arrangement' puzzle, like splitting a group of people into two teams so that the fewest friendships get cut between them. QAOA is a recipe for using a small quantum computer, working hand in hand with an ordinary one, to hunt for good arrangements. The quantum part prepares a state of the qubits and then nudges it back and forth between two steps: one step that rewards arrangements scoring well on your puzzle, and one step that gently stirs the qubits so different possibilities can mix and interfere. You repeat this pair of steps a few times (p rounds), each round controlled by a couple of tunable angles. Then you measure the qubits, which gives you one candidate answer, and you check its score on a normal computer.

Here is the honest part. QAOA does not 'try every arrangement at once.' What the angles control is how the amplitudes interfere so that, when you measure, good arrangements come out more often than bad ones, on average. So you run it many times and keep the best result you saw. A classical optimizer adjusts the angles between runs to push that average up. It is called 'approximate' because it aims for a good-enough answer, not a guaranteed-best one, and with few rounds the quality is limited. QAOA is one of the most studied algorithms for today's noisy, small machines, and it is genuinely interesting, but as of now no one has shown it beating strong classical optimization solvers on a real, useful problem.

Also calledQAOA

Quantum chemistry is the job of predicting how molecules behave — their energies, shapes, and reactions — by accounting for the quantum-mechanical behavior of their electrons. Electrons do not sit in fixed orbits like tiny planets; they spread out, interfere, and stay correlated with one another, and it is exactly this correlation that determines whether two molecules will bond, how strong that bond is, and how much energy a reaction releases. If you can compute a molecule's energy accurately, you can predict a lot of useful chemistry: which catalyst speeds up a reaction, which material makes a better battery electrode, which drug candidate binds to its target.

The catch is cost. The information needed to describe correlated electrons grows extremely fast with the number of electrons, so classical computers are forced to use clever approximations, and those approximations break down precisely for the hard, interesting cases — molecules with many electrons jostling in a tangle, like the nitrogen-fixing enzyme nitrogenase or transition-metal catalysts. A quantum computer is appealing here because its qubits are themselves quantum systems that can represent these correlated states more naturally, rather than approximating them. The hope is to compute certain molecular energies that classical machines cannot reach.

Be careful with the hype, though. This is a promising application, not a solved one. Today's machines are noisy and small (the NISQ era), so current work leans on hybrid methods like VQE, which run a quantum circuit to estimate energy while a classical optimizer adjusts it. Useful quantum advantage in chemistry will likely need error-corrected hardware that does not yet exist, and even then the speedup applies to specific hard molecules — not to all of chemistry, and not by 'trying every configuration at once.'

Also calledelectronic structure calculation

A quantum circuit is the most common way to write down a quantum program. Picture a piece of sheet music turned sideways: each qubit is a horizontal line, or wire, that you read from left to right as time moves forward. Along each wire you place gates, drawn as little boxes, which transform the qubits. At the far right you usually draw a measurement symbol, where you finally read out a 0 or 1 from each qubit. So a circuit is just a recipe: start the qubits in a known state (often |0>), apply a chosen sequence of gates, then measure.

The gates are not arbitrary scrambles. Each one is a reversible, unitary operation, which means in principle you could run it backward. Some gates act on a single wire (like H, which puts a qubit into a balanced superposition of |0> and |1>); others, like CNOT, span two wires and can entangle them so the qubits stop having independent stories. A small set of gates such as {H, T, CNOT} is universal: with enough of them you can build, to any desired accuracy, any computation a quantum computer can do, the same way a few logic gates suffice to build any classical chip.

The honest part is what happens at the end. The whole point of arranging gates carefully is to make the amplitudes of the wrong answers cancel out and the amplitudes of the right answer add up, through interference, so that when you measure you are likely to read out something useful. A circuit does not quietly try every answer and hand you the best one; you get a single random outcome each run, weighted by Born-rule probabilities, and you typically repeat the circuit many times to see the pattern. Designing the gate sequence so that interference favors the answer you want is exactly the hard and interesting work of quantum algorithm design.

Also calledquantum gate modelcircuit model

Quantum EDA is the toolkit a designer uses to turn a quantum chip from a sketch on a whiteboard into a precise drawing a foundry can fabricate, and to predict how that drawing will actually behave once it is cold. In ordinary chip design, electronic design automation software has decades of polish: you describe a circuit, and the tools place it, route the wires, simulate it, and warn you before anything goes wrong. Quantum chips need the same kind of help, but the stakes hide in different places — here the thing you most need to predict is not a logic delay but a frequency, because a qubit or a resonator is essentially a tiny tuned circuit, and being half a percent off its target frequency can wreck a chip.

The core job is going from geometry to physics. You draw shapes — capacitor pads, meandering inductors, junctions, ground planes — and the tools run an electromagnetic field simulation to compute the capacitances and inductances those shapes create. From those numbers, parameter extraction estimates the quantities that matter: each qubit's frequency, its anharmonicity, how strongly it couples to its readout resonator and to its neighbors. A frequency planner then lays out which qubit should sit at which frequency across the whole chip so that control tones and two-qubit gates do not collide. In effect the software lets you tune the design in a model before you ever spend weeks fabricating and cooling a real one.

The honest catch is that this field is young and far less standardized than classical EDA. Much of it is stitched together from general-purpose electromagnetic solvers, research scripts, and a few open tools, with no single dominant platform and no universally trusted flow. The models are good but not perfect: simulated frequencies still drift from measured ones by amounts that matter, partly because fabrication itself scatters the real devices, so designers lean on calibration against measured chips rather than trusting simulation alone. It is a real and fast-improving accelerator, not yet the push-button confidence that mature semiconductor tools provide.

Also calledquantum design automationsuperconducting circuit design toolsqubit design tools量子设计自动化量子芯片设计工具量子設計自動化量子晶片設計工具

Qubits are fragile. Stray heat, noise, and the simple passage of time keep nudging them off course, so any long quantum computation will accumulate errors. The obvious fix from ordinary computing — keep spare copies and vote on the answer — is off the table, because the no-cloning theorem says you cannot copy an unknown quantum state. Quantum error correction is the clever way around this: instead of copying one qubit, you spread its information across many physical qubits, so that a single protected logical qubit lives in the pattern they share rather than in any one of them.

The hard part is that simply looking at a qubit destroys the very state you are trying to save — measurement collapses it. QEC sidesteps this by never asking 'what value is this qubit?' Instead it asks gentle relationship questions, like 'do these two qubits still agree?' Those checks (called syndrome measurements) reveal whether an error crept in, and roughly where, without ever revealing — and thus without disturbing — the encoded data itself. The machine reads the error report, applies a correction, and the logical qubit survives intact.

This is what stands between today's noisy machines and a genuinely reliable quantum computer. It does not make anything faster; it buys reliability, and at a steep price — many physical qubits, often hundreds or thousands, to protect each logical one. It also only works once your hardware's error rate drops below a certain threshold, after which adding more qubits actually suppresses errors instead of multiplying them.

Also calledQECquantum error correction code量子纠错码量子糾錯碼

Think of the quantum Fourier transform as a way of asking, 'What rhythms are hiding in this pattern?' A classical Fourier transform takes a signal and tells you which frequencies it's built from. The QFT does the same job, but on the amplitudes that describe a quantum state instead of on a list of numbers in memory. If a quantum state holds some hidden repeating structure, like a period that repeats every r steps, the QFT reshapes the amplitudes so that the periodic information lines up where a measurement is likely to reveal it.

Here is the honest, important part. The QFT is fast in a specific, narrow sense: it can be built from far fewer quantum gates than the classical Fast Fourier Transform needs arithmetic operations, roughly the square of the number of qubits versus n times log n operations over a list of 2^n numbers. But that does NOT mean you get to read out the whole transform. Measuring the state still gives you just one outcome, drawn by the Born rule from the transformed amplitudes. The QFT is powerful only because, inside the right algorithm, it makes the amplitudes interfere so that useful structure, like a hidden period, becomes the likely thing you see. On its own, with no clever surrounding algorithm, it does not hand you a faster spreadsheet of frequencies.

This is why the QFT matters mostly as a subroutine, not a standalone tool. It is the engine inside quantum phase estimation, and it is the step in Shor's algorithm that extracts the period needed to factor large integers, which is what makes Shor a threat to RSA and ECC. Outside of problems with this kind of hidden periodic or algebraic structure, the QFT gives you no general speedup over classical computing.

Also calledQFT

A quantum gate is an operation that transforms the state of one or more qubits. Think of it as the quantum cousin of a classical logic gate like AND or NOT — but with two important differences. First, a quantum gate is always reversible: from the output you can always recover the input, because the gate is a unitary operation (it rotates the qubit's state without ever erasing information). Second, a quantum gate can do things a classical gate cannot, like put a qubit into a superposition of 0 and 1, or link two qubits into an entangled state where their outcomes are correlated.

Gates come in small pieces that you chain together to build a circuit, much like wiring logic gates into a larger function. Single-qubit gates rotate one qubit's state — for example, the Hadamard gate turns a definite 0 into an equal mix of 0 and 1. Two-qubit gates, like the controlled-NOT (CNOT), let one qubit influence another, which is how entanglement is created. A small set such as {H, T, CNOT} is universal, meaning you can approximate any quantum computation by composing enough of these gates. Crucially, the gate only reshapes the amplitudes inside the state; you still learn nothing until you measure, and measurement gives a single 0 or 1 with a probability set by the Born rule.

The power of a quantum algorithm does not come from a gate magically testing every possibility at once. It comes from carefully chosen sequences of gates that steer the amplitudes so that wrong answers cancel out and right answers reinforce — interference — before the final measurement. Designing useful gate sequences is hard, and on today's NISQ hardware gates are noisy and imperfect, which is why running deep circuits reliably remains a major challenge.

Also calledquantum logic gateunitary gate量子逻辑门量子邏輯閘酉门酉閘幺正门

Classical information is built from bits, each firmly a 0 or a 1. Quantum information is built from qubits, and a qubit's state is described by amplitudes, written |psi> = alpha|0> + beta|1>, where |alpha|^2 and |beta|^2 are the probabilities you'll read 0 or 1. So while you store and reason about a qubit using these continuous amplitudes, the moment you measure it you get just one ordinary bit back, 0 or 1, and the delicate state collapses. The richness lives in how you set up and combine qubits before that final readout, not in some hidden answer you can simply look up.

Quantum information is the study of what those amplitudes, and the entanglement between qubits, let you do that bits alone cannot. Three honest examples: quantum teleportation moves a qubit's exact state from one place to another using a shared entangled pair plus a phone call of two classical bits (it is not faster-than-light and copies nothing); superdense coding runs the trick in reverse, sending two classical bits by physically transmitting a single qubit when an entangled pair was shared in advance; and quantum key distribution lets two people detect any eavesdropper because measuring a quantum signal unavoidably disturbs it. These are real, proven capabilities of information itself, separate from the question of whether a quantum computer runs an algorithm faster.

A defining rule shapes all of this: the no-cloning theorem says you cannot make a perfect copy of an unknown quantum state. That single fact is why quantum information feels so different from the classical kind you copy and paste every day. It is what makes quantum key distribution secure, what forces teleportation to consume the original rather than duplicate it, and a constant reminder that a qubit is a fragile thing you can transform and measure, but never freely back up.

Also calledQI量子信息量子資訊

Think about ripples on a pond. When two waves meet, they add where their crests line up and cancel where a crest meets a trough. Quantum interference is the same idea, but the things doing the adding and cancelling are amplitudes: the numbers a quantum computer carries for each possible outcome. The catch that makes them quantum is that amplitudes can be negative or complex, not just positive like a probability. So two paths leading to the same answer can reinforce each other, or they can wipe each other out.

This cancelling and reinforcing is the actual engine of quantum algorithms. You do not get speed by having the machine quietly try every answer at once and hand you the right one. Instead, you arrange the circuit so that, by the time you measure, the amplitudes pointing at wrong answers have largely cancelled and the amplitudes pointing at the right answer have piled up. The probability of reading any outcome is the square of its amplitude (the Born rule), so steering amplitude toward the answer is what makes the answer likely to appear. Build the interference well and you win; build it badly and you just get noise.

This is also why quantum computers are not magic general-purpose accelerators. Interference only helps when the problem has structure you can exploit to make the wrong-answer paths cancel. Shor's algorithm uses the quantum Fourier transform to make periods interfere into view, which is why it threatens RSA; Grover's search uses interference too, but only buys a quadratic (square-root) speedup, not an exponential one. For many everyday problems there is no clever interference pattern to set up, so a quantum computer offers no advantage at all.

Also calledinterference of amplitudes

Quantum key distribution is a way for two people — call them Alice and Bob — to create a shared secret key, with security that rests on physics rather than on a hard math problem. Alice sends a stream of single qubits, each prepared in one of a few possible states; Bob measures them; and afterward they compare notes over an ordinary public channel to distill a string of bits only they know. That key is then fed into normal encryption to scramble their actual messages.

The clever part is how they catch a spy. In quantum mechanics, you cannot measure an unknown qubit without disturbing it, and you cannot copy it perfectly (the no-cloning theorem). So an eavesdropper, Eve, who intercepts and measures the qubits inevitably leaves fingerprints: she introduces errors in the bits Alice and Bob share. By sacrificing a random sample of their key and checking the error rate, Alice and Bob can tell whether anyone was listening. If the errors are low enough, they keep the key; if not, they throw it away and try again. Eve cannot quietly steal the key — listening is detectable.

Be clear about what QKD does and does not do. It secures the exchange of a key, not the rest of your computing world, and in practice it needs a separately authenticated channel (otherwise Eve could impersonate Bob), plus real hardware over real distance, which limits range and rate. It is also a different thing from post-quantum cryptography: QKD uses quantum physics to share keys, while post-quantum cryptography is ordinary classical algorithms designed to resist attack by a future quantum computer. They solve overlapping problems by completely different means.

Also calledQKD

Before you look at a qubit, it can sit in a superposition: a blend of both 0 and 1 at once, described by two amplitudes. Measurement is the act of looking, and it forces a decision. The instant you measure, the qubit snaps to a definite 0 or a definite 1, and the blend you had a moment ago is gone for good. Think of a spinning coin: while it spins it is neither heads nor tails, but the moment you slap it flat on the table you get exactly one face, and the spin is over.

Which outcome you get is genuinely random, but the odds are not arbitrary. The Born rule says the probability of reading 0 or 1 equals the square of that outcome's amplitude. So an amplitude is not the chance itself; you square its size to get the chance. Importantly, you only learn one classical bit from the whole event, and the measurement destroys the original superposition rather than revealing it. You cannot peek at the amplitudes directly, you cannot read them off without disturbing them, and you cannot copy the state and try again.

This is the heart of why a quantum computer is not a machine that 'tries all answers at once' and then hands you the best one. The hidden superposition holds rich information, but reading it out collapses everything to a single bit governed by chance. A useful quantum algorithm has to arrange its amplitudes so that, through interference, the right answer becomes the overwhelmingly likely thing to see when you finally measure. The measurement is the narrow doorway every quantum result has to squeeze through.

Also calledmeasurementreadoutBorn rule测量測量读出讀出玻恩定则玻恩定則

Picture a sealed box with a single job: you hand it an input, and it tells you "yes, this is a solution" or "no, it isn't." A quantum oracle is that box, built so a quantum algorithm can ask it questions. It doesn't hand you the answer in plain sight, though. Instead it quietly marks the right inputs — usually by flipping the sign (the phase) of a solution's amplitude, or by flipping an extra answer bit — leaving everything else untouched. Think of it as an invisible-ink stamp: the solutions get stamped, but you still can't simply read which ones until you do more work.

Because a quantum computer can hold many inputs in superposition at once, a single oracle query can stamp all the matching inputs together. This is where the hype usually creeps in, so be careful: that one query does NOT reveal the answer. The marks are hidden in amplitudes you can't see directly, and measuring at this point would just give you a random input. Algorithms like Grover's then use rounds of interference (amplitude amplification) to slowly turn those phase marks into a large, readable probability — which is why Grover still needs about the square root of N queries to search N items, a real but only quadratic speedup, not a magic one-shot lookup.

Oracles matter because they let us measure an algorithm's cleverness by query complexity: how few times it must consult the box to succeed. This is a clean way to compare quantum and classical approaches on the same problem. The catch — and the honesty here is important — is that the oracle is an abstraction. In a real machine it isn't free: someone has to build it out of ordinary reversible (unitary) gates that actually compute the yes/no check, and that construction has its own cost. Counting queries tells you how efficiently an algorithm uses the box, not the full price of running it.

Also calledoracleblack-box functionphase oraclebit-flip oracle谕示器諭示器黑箱函数黑箱函數相位谕示器相位諭示器

A quantum processor is the chip at the heart of a quantum computer. Like a classical CPU it is a piece of fabricated silicon, but instead of billions of transistors it holds an array of physical qubits, plus the small circuits that connect them, control them, and read them out. Almost all of today's quantum processors only work when chilled to a fraction of a degree above absolute zero inside a special fridge, so when people say 'the quantum computer' they usually mean this tiny chip and the room-sized machine wrapped around it.

Zoom in and a QPU is really a system of parts working together. The qubits sit in a grid; couplers let neighbouring qubits interact so the machine can do two-qubit operations; readout resonators act like little tuning forks that tell the control electronics what state each qubit is in; and a forest of control lines carries microwave or voltage pulses from outside the fridge down to each device. The whole thing is built layer by layer on a substrate using chip-fabrication tools borrowed from the classical semiconductor industry.

It helps to be honest about scale and role. A QPU is not a faster CPU and will not replace your laptop; it is a special-purpose device that may one day accelerate a narrow set of problems. Today's chips hold from tens to roughly a thousand or more physical qubits, and those qubits are noisy and error-prone. The hardest engineering problems are not 'more qubits' but wiring all those control lines in, getting enough good chips off the line (yield), and fitting every qubit's frequency in without two of them colliding (frequency crowding).

Also calledQPUquantum chip量子芯片量子晶片

Quantum simulation means using one quantum system that you can control to imitate another quantum system you want to understand. The hard part of chemistry and materials science is that electrons obey quantum mechanics, and the math describing many electrons together grows impossibly fast on ordinary computers: every time you add a particle, the number of possibilities to track roughly doubles. The idea, which Richard Feynman raised in the early 1980s, is that nature already does this bookkeeping for free, so if you build a controllable quantum device whose pieces follow the same quantum rules as your molecule, you can let physics do the heavy lifting and then measure the result. Think of it less like a calculator and more like a wind tunnel: instead of computing airflow from scratch, you build a small, controllable stand-in and watch how it behaves.

There are two flavors. In analog simulation you tune a device (such as cold atoms in a laser grid) so its natural behavior directly mirrors the system of interest. In digital simulation you break the target system's evolution into a sequence of quantum gates on a general-purpose quantum computer. Either way, the same honest limits apply: you only get to read out measurement outcomes, each with a probability set by the Born rule, and you usually have to repeat the experiment many times to build up a useful picture. Quantum simulation is widely seen as the most credible near-term payoff of quantum hardware precisely because the device speaks the same language as the problem, but on today's noisy machines it is still mostly a research tool rather than a finished product.

Also calledquantum simulatorsimulating quantum systems量子模拟器量子模擬器模拟量子系统模擬量子系統

A quantum state is the complete description of a quantum system at a moment in time. Think of it as the system's full "address": once you know the state, you know everything physics allows you to know about that system. For a quantum computer, the state tells you exactly what each qubit is doing and, crucially, how the qubits relate to one another. We write it as a vector, often called |psi>, living in an abstract mathematical space (a Hilbert space). A single qubit's state is just a blend of the two basic outcomes, |0> and |1>, with two numbers (amplitudes) saying how much of each.

The catch is how fast this grows. One qubit needs two amplitudes. Two qubits need four. Three need eight. In general, n qubits need 2^n complex amplitudes to write down completely, because the state can describe every combination of the qubits at once and how those combinations interfere. This is where quantum computing's huge state space comes from, and also why simulating a quantum computer on an ordinary computer gets impossibly expensive past a few dozen qubits: even storing the list of numbers would fill more memory than exists.

It is tempting to read that big number as "the computer holds all 2^n answers and checks them in parallel," but that is the wrong picture. You never get to read out all those amplitudes. When you measure, the state collapses and you get just one outcome, with a probability set by the size of its amplitude. The real skill in quantum computing is arranging the amplitudes so that, through interference, the answer you want ends up large and the wrong answers cancel out. The large state space is the raw material; useful interference is what turns it into a result.

Also calledstate vector|psi>wavefunction态矢量波函数態矢量波函數

Quantum supremacy is the moment a quantum computer does some specific task that no classical computer could finish in any reasonable amount of time — even if that task is contrived and completely useless. Think of it less like winning a marathon and more like a stunt that proves your new engine can rev higher than any other engine ever built. It does not matter that the stunt goes nowhere; the point is to show that the machine can reach a regime classical hardware simply cannot follow.

The tasks used so far are narrow on purpose. The best-known demonstration asked a quantum processor to sample from the random patterns produced by a fixed sequence of random gates — a problem chosen precisely because it is brutally hard to simulate on a classical computer and easy for the quantum device to just do. The result was a strong signal that the hardware works as advertised, but it solved no practical problem: nobody needs those random samples for anything. Such claims are also moving targets, because cleverer classical algorithms and bigger supercomputers can sometimes shrink the gap after the fact.

So read 'quantum supremacy' as a hardware milestone, not a promise. It says: this device can do at least one thing beyond classical reach. It does not say the device is useful, fault-tolerant, or ready to break encryption or design drugs. We are still in the NISQ era — noisy machines with no large-scale error correction — so the leap from a contrived sampling stunt to a genuinely useful advantage is still very much unfinished work.

Also calledquantum computational supremacy

Despite the science-fiction name, quantum teleportation does not beam any object across a room. It is a protocol for moving the unknown state of one qubit from a sender (call her Alice) to a receiver (call him Bob) without sending the qubit itself. Think of it less like a transporter and more like a very careful relay: Alice and Bob first share a pair of entangled qubits, prepared in advance. Later, when Alice has a mystery qubit whose state she does not know, she can hand that state over to Bob using only their shared entanglement plus two ordinary classical bits sent over a normal channel like the internet or a phone line.

Here is the mechanics, in plain terms. Alice interacts her mystery qubit with her half of the entangled pair and measures both, getting one of four possible two-bit outcomes. That measurement destroys the original state on her side, which is why teleportation does not violate the no-cloning rule: there is never a second copy, just a transfer. She sends those two bits to Bob, who applies one of four simple fixups to his entangled qubit. Once he does, his qubit now carries the exact state Alice started with. Crucially, Bob's qubit is useless until his classical bits arrive, so nothing travels faster than light and no information is delivered by entanglement alone.

Why bother, if you still have to send classical bits? Because the qubit's full state, an infinite continuum of possible amplitudes, is conveyed using only that shared entanglement and two bits, and no quantum channel between Alice and Bob is needed at the moment of transfer. That makes teleportation a core building block of quantum networks and future repeaters: rather than pushing fragile qubits down a long, lossy fiber, you distribute entanglement first and teleport states across it on demand.

Also calledstate teleportation量子态传输量子態傳輸

Quasiparticle poisoning is one of the sneakier ways a superconducting qubit suddenly forgets what it was doing. In a superconductor, the electrons that carry the lossless current travel as bound pairs called Cooper pairs. Now and then a pair gets broken, leaving two lonely unpaired electrons. Each of these stray broken pieces is called a quasiparticle, and when one wanders across a Josephson junction it can dump or steal a chunk of the qubit's energy. The result is an abrupt, hard-to-predict error: a qubit that was holding a 1 flips to 0, in the middle of a calculation, for no reason the control software can see.

Where do the strays come from? Partly from heat, but mostly from stray energy leaking in. A single stray infrared photon, a flash of cosmic radiation, or radioactivity in the chip's own packaging carries far more than enough energy to snap a Cooper pair, and once a few pairs break they can cascade and break more. Because each event is random and rare, it shows up as occasional glitches rather than a steady hiss, which makes it both maddening to chase and dangerous for error-correcting codes that assume errors stay independent and small.

Engineers fight back on three fronts. They shield the chip from light and radiation with light-tight cans, filtered wiring, and sometimes radiopure materials. They use gap engineering, deliberately making one side of a junction a slightly stronger superconductor so quasiparticles roll downhill away from the sensitive spot. And they add quasiparticle traps, small patches of normal metal or lower-gap superconductor that act like drains, soaking up strays before they reach a junction. None of this is fully solved, and a single cosmic-ray hit can still knock out many qubits at once, which is an active worry for anyone scaling up.

Also calledQP poisoning准粒子中毒準粒子污染

A classical bit is a tiny switch: it is either 0 or 1, and that is the whole story. A qubit is the quantum version of that switch, and it has a richer kind of in-between. Before you measure it, a qubit can be in a superposition of 0 and 1 at once. It helps to picture not a switch but a dial: the qubit can point in many directions, and the direction encodes how much of '0' and how much of '1' it carries. A qubit is the fundamental unit of quantum information, and any controllable two-level quantum system can serve as one: the spin of an electron, two energy levels of an atom, the polarization of a photon, or a superconducting circuit.

Here is the part that everyone gets wrong, so read it slowly. Superposition does not mean the qubit secretly holds both answers and a quantum computer 'tries all of them at once.' The amounts of 0 and 1 are described by two numbers called amplitudes, written |psi> = alpha|0> + beta|1>. When you measure, you do not see the amplitudes; you get a single plain 0 or 1, with probability equal to the amplitude squared, and the superposition collapses to whatever you saw. So one qubit, read out, gives you exactly one bit, just like its classical cousin. The power of quantum computing comes not from holding many answers but from arranging the amplitudes of many qubits so that wrong answers cancel out and the right ones add up before you measure.

Real qubits are also delicate. Their amplitudes drift and leak into the environment in a process called decoherence, measured by times labeled T1 and T2, which is why today's machines are small and noisy and need error correction to scale. Holding 'a bit of 0 and a bit of 1' is easy to say and genuinely hard to keep.

Also calledquantum bitqbit量子比特量子位元量子位

A qubit is supposed to be a two-level system: a 0 and a 1 you can flip between. But the artificial atoms on a superconducting chip actually have a whole ladder of energy levels (0, 1, 2, 3...), and you only want to use the bottom two. Anharmonicity is the gap between the steps of that ladder being uneven. If every step took the same amount of energy, a control pulse aimed at 0->1 would also nudge 1->2, and your qubit would quietly leak out of the space you can compute in.

Concretely, anharmonicity is the difference between the energy needed for the 0->1 transition and the energy needed for the 1->2 transition. You design the device so these two are at noticeably different frequencies. Then a control pulse tuned to the 0->1 frequency mostly leaves the higher levels alone, because they simply do not resonate with it. The bigger this difference, the faster and cleaner you can drive the qubit without spilling population into level 2 and beyond.

There is a real tradeoff baked in. The popular transmon design is made deliberately flat (E_J >> E_C) to make it shrug off charge noise, and that same choice makes the anharmonicity small, only around 200 MHz negative. So engineers cannot just blast short, hard pulses; they shape them carefully to dodge the nearby 1->2 transition. Designs like fluxonium chase a much larger anharmonicity to ease this, but pay for it with other complications. No single answer has won.

Also calledanharmonicity非谐度非諧度

Qubit connectivity describes which qubits on a chip can directly talk to each other. Two-qubit gates only work between qubits that share a physical coupling, so the chip's wiring forms a graph: each qubit is a dot, and a line is drawn wherever a direct gate is possible. In today's superconducting chips that graph is sparse — a qubit might be connected to just two, three, or four neighbors, not to everyone.

If your algorithm needs a gate between two qubits that aren't directly linked, the compiler has to move the quantum information across the chip first, hopping it through intermediate qubits with extra SWAP operations. Every SWAP is itself made of gates, so it adds time and adds error. A well-matched topology — common shapes are a square lattice or IBM's heavy-hex layout — keeps the qubits a program actually pairs up close together, so it needs fewer of these detours.

More connectivity sounds strictly better, but it isn't free. Packing more couplers around each qubit crowds the chip with control lines and pushes neighboring qubits closer in frequency, which worsens crosstalk and frequency crowding — qubits accidentally nudging or leaking into one another. So connectivity is a genuine architecture tradeoff: designers deliberately keep the graph sparse (heavy-hex is partly a choice to reduce crowding) and pay for it in SWAPs, rather than chase all-to-all wiring that no one has built at scale.

Also calledcoupling mapcoupling graphqubit topology连接拓扑耦合图連接拓撲耦合圖

A qubit package is the little metal box, with all its connectors and clamps, that holds the quantum chip and connects it to the rest of the machine. The bare chip cannot be wired up by itself: something has to grip it, carry microwave signals on and off it, give it a clean electrical ground, and shield it from stray fields. The package is that something — think of it as the socket and case for the chip, the same role a motherboard socket plays for an ordinary processor, except here it also has to behave well at temperatures near absolute zero.

Getting signals on and off the chip is the central job. One popular approach is a 3D quantum socket: a lid studded with spring-loaded pins (pogo pins) presses straight down onto pads on the chip, launching each microwave line vertically instead of routing it across the crowded chip surface. The package also shapes the electromagnetic environment around the chip. An empty metal box is a microwave cavity, and like any cavity it has its own resonant tones, called box or cavity modes. If one of those modes lands near a qubit frequency, it can leak energy out of the qubit and shorten its life, so the box is sized, walled off, and damped to push those modes far away. Thermal hygiene matters too: the package must bolt tightly to the cold stage so the chip actually reaches base temperature, and not act as an antenna funnelling heat or noise inward.

None of this is solved once and forgotten. As chips grow, the package has to bring in more and more lines without those lines crosstalking or without the enclosure sprouting new unwanted modes, and every added pin and seam is another place for loss, a bad contact, or a stray resonance to creep in. Good packaging quietly protects a good chip; sloppy packaging can ruin one. It is an unglamorous but real frontier in scaling quantum processors, and no single package design has emerged as the obvious winner.

Also calledqubit enclosurequantum chip packagequantum socket量子比特封装盒量子插座量子位元封裝盒量子插座

Qubit yield is the fraction of qubits on a chip that actually come out good enough to use. Building a quantum processor is a lot like baking a tray of identical cookies: you set out to make a hundred the same, but they emerge slightly different, and some are burnt or misshapen. A qubit counts as a keeper only if it lands inside spec on several things at once — its frequency is close to where you designed it, it holds a quantum state long enough (good coherence), and its tiny junction works at all. If even one of those misses, that qubit is dead weight, and the share that pass is your yield.

Yield matters because the usable size of a processor is set by the qubits that survive, not the ones you drew. The trouble is that the failures often multiply rather than add. A larger chip needs more qubits, more junctions, and more couplers all working together, so if each element passes with some probability, the chance of the whole chip being flawless drops fast as it grows — roughly like that per-element pass rate raised to the power of the element count. Worse, qubits are not independent: two neighbors that happen to land on the same frequency can spoil each other even though both are individually fine, so on a packed chip the effective yield can fall faster than a simple part count suggests.

This single number quietly drives much of quantum chip engineering today. It is why teams push for tighter, more repeatable fabrication, why they tune frequencies after fab by aging or laser-trimming junctions, and why they split big designs into small pre-tested tiles joined into multi-chip modules so a dud costs one tile instead of the whole processor. Honest status: yields good enough for a few dozen to a few hundred qubits are achievable with screening and tuning, but reaching the millions of high-quality qubits that large-scale error correction would need — without hand-picking every one — is still an open manufacturing problem, not a solved one.

Also calledqubit fabrication yieldworking-qubit yield量子比特成品率合格量子比特比例量子位元良率量子位元成品率

A query is a single request you send to a database — to fetch some data, or to change it. It's one question or one instruction: 'show me all unpaid invoices', or 'mark order 42 as shipped'. The database does it and hands back the answer.

Most queries you write in SQL. A read query asks for rows back (SELECT … WHERE …); a write query adds, edits, or removes them. Either way, one query is one round-trip: you ask, the database answers, done.

Queries are also where speed lives or dies. A query that scans every row in a million-row table is slow; the same query, helped by an index, can feel instant. So when an app drags, the queries are often the first place to look.

Also calleddb querylookuprequest
R

A race condition is a bug where the outcome depends on which of two things finishes first — and since you can't control the timing, the result changes from run to run. It works nine times out of ten, then fails for no visible reason, which makes it one of the most maddening bugs to pin down.

Picture two people sharing one bank account, each withdrawing $100 at the very same instant. Both check the balance ($150), both see 'enough', both withdraw — and now the account is overdrawn. Neither did anything wrong alone; the trouble is that they 'raced' to act on the same number before either finished.

These bugs hide whenever two pieces of work run at the same time and touch the same thing — two threads, two requests, two clicks. The fix is to make sure only one can act at a time, or to design so the order genuinely doesn't matter. They're hard precisely because they often vanish the moment you slow things down to look.

Also calledracetiming bugdata raceconcurrency bug

Radial glia are long, slender cells found in the brain while it is still being built, before birth and in early development. Each one stretches like a taut rope all the way from the inner surface of the developing brain to the outer surface, spanning the full thickness of the growing wall. In a brain that is busy assembling itself, freshly made nerve cells (neurons) need to travel from where they are born, deep inside, to the exact layer where they will live and work. Radial glia are the climbing ropes for that journey: a young neuron grips the side of one of these cells and crawls along it, like a person hauling themselves up a fixed line, until it reaches its proper place.

Beyond serving as scaffolding, radial glia do a second, equally important job: many of them are themselves the parent cells, called neural progenitors, that divide to produce neurons in the first place. So a single radial glial cell can both give birth to a new neuron and then act as the rail that neuron travels along, which is a remarkably tidy two-in-one arrangement. The order in which these cells produce neurons, layer after layer, is part of how the brain's orderly architecture gets laid down. Once development winds down, most radial glia retire from this role: some disappear, while others transform into other support cells of the mature brain, such as star-shaped astrocytes.

Why does this matter? The whole layered structure of the cerebral cortex, the wrinkled outer sheet that handles thought, perception, and language, depends on neurons reaching the right floors of the building in the right sequence. When radial glia are disturbed and neurons end up in the wrong layers, the result can be malformations of the brain linked to epilepsy and intellectual disability. Studying radial glia therefore helps scientists understand both how a healthy brain is constructed and what goes wrong when that construction is derailed.

Also calledradial glial cellsneural progenitor放射状胶质放射状神经胶质细胞放射狀神經膠質細胞

Some atoms are restless. Deep in their core sits the nucleus, and in certain atoms that nucleus holds too much energy to stay still — so it throws a bit of itself away to settle down. That spontaneous flinging-off of energy and particles is radioactivity. Picture an over-wound clockwork spring that, every so often and entirely on its own, lets out a sharp little kick.

What comes flying out takes three classic forms, named after the first three Greek letters. Alpha is a heavy, slow chunk that even a sheet of paper can stop. Beta is a fast, light particle (an electron) that a few millimetres of aluminium can block. Gamma is pure high-energy light, so piercing it takes thick lead or concrete to tame. The atom usually changes its identity in the bargain — one element quietly turning into another.

Here's the part that trips people up: you can never say when a single atom will decay, only how fast a whole crowd of them will. That pace is the half-life — the time for half the atoms in a sample to decay. It can be a blink or billions of years, and nothing you do, no heat, no pressure, no chemistry, can hurry it or slow it down.

Also calledradioactive decaynuclear decayalpha decaybeta decaygamma radiation放射性衰变核衰变放射性衰變

RAM is your computer's fast, temporary workspace — the place where every program you have open right now keeps the stuff it's actively using. When you launch an app, open a file, or load a web page, it gets pulled off the slow disk and into RAM so the CPU can reach it almost instantly. Think of it as the desk you're working at: the bigger the desk, the more things you can spread out and juggle at once.

The catch is that RAM is forgetting by design. It only holds data while the power is on — turn the computer off (or it crashes) and everything in RAM vanishes. That's why unsaved work disappears: saving copies it from the fleeting desk to the disk, where it stays put. This is the difference between memory (RAM, fast but temporary) and storage (the disk, slower but permanent).

When you hear 'this laptop has 16 GB,' that number is the size of the desk. Run too many heavy programs at once and the desk fills up; the system starts shuffling things back to the slow disk to make room, and everything feels sluggish. More RAM mostly means you can keep more going at the same time without that slowdown.

Also calledmemorymain memoryworking memory

A rapidly-exploring random tree, almost always called an RRT, is a method that finds a path by growing a branching tree outward from the robot's starting pose until a branch reaches the goal. It works in repeated little steps: pick a random target somewhere in the space of poses the robot could take, find the point already on the tree that sits closest to that target, and reach a short step from that point toward it — adding a new twig only if the motion stays collision-free. Because random targets land all over the space, the tree is pulled to grow fastest into the wide-open regions it has not yet explored, fanning out quickly to fill the free space, which is exactly where the name comes from.

An RRT is built for a single query in a possibly unknown or cluttered space: you grow one tree, from one start, until it touches the goal, then trace the branch back to read off the path. This makes it a natural fit for mobile robots and arms that must plan a fresh motion on the spot. The plain version is fast and good at finding some valid path, but it makes no promise the path is short — the route it returns is often jagged and roundabout, a first way through rather than a good one.

RRT* (said 'RRT-star') is the upgrade that fixes this. Each time it adds a new point, it also looks at the nearby points already in the tree and rewires their connections whenever routing through the new point would reach them more cheaply. Over many iterations this quiet rewiring keeps straightening and shortening the tree's paths, so RRT* is asymptotically optimal: the longer it runs, the closer its path creeps to the true shortest one. You trade extra computation for steadily better paths — plain RRT when you just need any safe path quickly, RRT* when you can afford to let it polish the route.

Also calledRRTRRT*RRT-star快速搜索随机树

Rate coding is one of the brain's basic ways of carrying information: a neuron tells the rest of the brain how strong or important something is by how fast it fires. A neuron speaks in brief electrical blips called spikes (also known as action potentials), and in rate coding the message lives in how many spikes it sends per second — its firing rate — rather than in the exact instant each spike arrives. A faster machine-gun rattle of spikes means a louder, brighter, or more intense signal; a slow, lazy trickle means a weak one. It is a bit like a dimmer switch reporting brightness by how rapidly it ticks, not by the precise timing of any single tick.

To read a rate, you have to count over a stretch of time (or average across many similar neurons), so rate coding trades speed for steadiness: it is robust and easy to interpret, but a little slow, because counting spikes in a window of tens or hundreds of milliseconds takes time. This scheme was first described over a century ago — Edgar Adrian found that pressing harder on a frog's muscle made its sensory nerves fire faster — and it remains one of the best-understood codes in the brain. You can see it at work when a brighter light makes a retinal neuron fire faster, when a stronger touch speeds up a skin sensor, or when a muscle contracts harder as its motor neurons ramp up their rate.

Rate coding is often contrasted with temporal coding, the idea that the precise timing or pattern of spikes — not just their count — also carries meaning. The two are not rivals so much as complementary: the same spike train can convey a slow, reliable estimate of intensity through its rate while also packing finer, faster detail into its exact timing. Which one matters most depends on the brain region, the kind of stimulus, and how quickly the animal must act.

Also calledfrequency codingrate codefiring-rate code发放率编码發放率編碼速率编码速率編碼

Rationalism is the conviction that the surest road to knowledge runs through reason — through careful thinking — and not through the senses alone. The eyes and ears bring in raw material, but the mind, a rationalist says, is what truly weighs, orders, and grasps the truth. Picture a detective who solves the case not by gathering one more clue, but by sitting quietly and reasoning out what must have happened: that armchair is the rationalist's favorite seat.

Its boldest claim is that some truths can be known by thought alone, with no need to go and look. That nothing can both exist and not exist at once, that two plus three makes five — you don't run experiments to check these; you simply see, with the inner eye of reason, that they could not be otherwise. The most famous rationalist, René Descartes, doubted everything he possibly could until he hit bedrock: the very act of doubting proved he was thinking, and thinking proved he existed — "I think, therefore I am."

It helps to clear up a common mix-up. Rationalism is not the opposite of emotion, and it doesn't mean ignoring the senses entirely — a rationalist happily uses observation. The real contrast is with empiricism, the rival view that experience is the only true source of knowledge. Rationalists answer: experience alone can never give us certainty, so reason must supply the rest.

Also calledcontinental rationalismCartesian rationalism唯理论唯理主义笛卡尔主义唯理論笛卡兒主義

The reachable workspace of a robot arm is the full region of space its hand (the end-effector — the gripper or tool at the tip) can touch, in at least one way, by some combination of its joint movements. It is the answer to a very physical question: stand the robot down and let it flail through every pose it can adopt — what is the complete set of points the very tip of it can reach?

Crucially, reachable means it can get the tip there somehow, even if only at an awkward angle. It does not promise the arm can approach that point from any direction it likes — only that the point is touchable at all. So the reachable workspace tends to be a generous, blobby volume, often shaped like a thick shell or a partial sphere around the arm's base, bounded on the outside by how far the arm stretches and on the inside by parts it simply cannot fold back to (and by its own body, the table, or obstacles in the way).

Knowing this volume is the first thing you check when placing a robot in a factory or a kitchen: is the object I want it to grab actually inside the region it can reach? Anything outside is, quite literally, out of reach, no matter how cleverly you command the joints.

Also calledreachable spacework envelope可达空间可達空間

Reactive astrogliosis is what happens when the brain's star-shaped support cells — called astrocytes — switch into emergency mode after the brain or spinal cord is hurt or sick. Normally astrocytes are quiet housekeepers: they feed neurons, tidy up leftover chemical signals, and help hold the tissue together. But when there is an injury — a blow to the head, a stroke that cuts off blood, an infection, or a slow disease like Alzheimer's — nearby astrocytes react. They swell up and grow bigger (this thickening is called hypertrophy), they sprout more of their branchy arms, and at the worst-hit spots they even multiply into extra cells (proliferation). The whole transformation, mild or severe, is named gliosis.

Think of astrocytes as a neighborhood's repair crew rushing to a fire. Near the edges, where the damage is light, a few workers simply roll up their sleeves and work harder — the tissue still looks mostly normal. But right at the heart of the damage, the crews pour in, pile up, and weave themselves into a dense wall: a glial scar. This scar is a double-edged response. In the short term it is protective — it walls off the injured zone, soaks up harmful substances, plugs leaks, and stops the damage from spreading to healthy tissue. Over the long term, though, that same dense scar can become a roadblock: it physically and chemically blocks injured nerve fibers from regrowing across it, which is one big reason the adult human brain and spinal cord heal so poorly. Because reactive astrocytes appear wherever the nervous system is under stress, doctors and scientists treat gliosis as a reliable fingerprint of injury and disease.

Also calledastrocyte reactivityglial scarring胶质瘢痕膠質瘢痕星形胶质细胞反应星形膠質細胞反應

A readout resonator is a small microwave circuit etched onto the chip right next to a qubit, whose only job is to tell you whether that qubit is a 0 or a 1. Think of it as a tiny tuning fork glued to the qubit: it rings at one fixed microwave frequency, but the exact pitch shifts a little depending on the qubit's state. You never poke the fragile qubit directly; you ping the resonator and listen to how its tone comes back.

Here is how that works. The resonator is built so it shares a faint coupling with the qubit, and that coupling pulls the resonator's frequency up or down by a small amount set by the qubit being in 0 versus 1. You send a brief microwave pulse down a feedline, it bounces off the resonator, and the reflected (or transmitted) signal comes back with a slightly different phase and amplitude for each qubit state. An amplifier chain warms that signal up and a computer decides which state it saw. Because each qubit gets its own resonator at its own frequency, many of them can hang off one shared feedline and be measured at once by sending a comb of tones, a trick called frequency multiplexing.

The honest catch: the readout is never perfect and never instant. The probe tone can itself disturb or even destroy the qubit's state if it is too strong or lasts too long, so designers fight a constant tradeoff between speed and gentleness. Resonators also open a side door through which the qubit can leak its energy away and decohere, which is why a separate filter is usually added to plug that leak. And as chips grow, fitting dozens of distinct resonator frequencies into the usable band without overlaps becomes one of the real layout headaches.

Also calledreadout cavity读出腔讀出腔

The reality gap is the gap between how a robot behaves in a computer simulation and how it behaves in the real world. Engineers often practice and train a robot inside a simulator first — a kind of detailed video game of the robot and its surroundings — because it is fast, cheap, and safe: you can run a thousand attempts overnight without breaking a single motor. But when you take the skill that worked perfectly in the simulation and drop it into a physical robot on a real floor, it often stumbles, slips, or fails outright. That drop-off in performance is the reality gap.

The gap opens up because no simulation captures every messy detail of the real world. The simulator might assume the floor has a certain friction, the motors respond instantly, the camera never blurs, and there is no dust, glare, wobble, or worn-out gear — but reality is full of exactly those imperfections. A robot tuned to the clean, predictable physics of the simulation can be caught off guard by them. Roboticists try to shrink the gap in two main ways: making simulations more realistic, and deliberately randomizing the simulation (varying friction, lighting, weights, and delays across many runs) so the robot learns to cope with a wide range of conditions and is less thrown by whatever the real world actually serves up.

Also calledsim-to-real gap仿真到现实鸿沟仿真到現實鴻溝

In robot learning, the reality gap is the drop in performance you see when a skill that was trained in simulation is moved onto a real robot. The robot learned its behavior — its policy, the rule that turns what it senses into what it does — inside a simulator, where the physics are tidy and predictable. Then that exact same policy is loaded into a physical machine, and it suddenly does worse: it slips, hesitates, overshoots, or fails outright at the very task it had mastered in the simulator. That falloff between simulated competence and real-world competence is the reality gap, and it is the central reason a policy that looks finished still can't be trusted on hardware.

The gap exists because no simulation copies reality perfectly. The simulator may assume a fixed floor friction, instant motor response, a never-blurry camera, and no dust, flex, or worn gears — while the real robot lives among all those imperfections at once. A learned policy quietly tunes itself to whatever the simulator happened to assume, so even small mismatches between the two worlds throw it off, and the mistakes can compound as the robot drifts into states it never practiced. The wider the gap, the more a perfect simulation score overstates how the robot will really behave.

The reality gap is what every transfer technique is fighting. You shrink it from two directions: make the simulation more faithful by measuring the real robot and correcting the model, and make the policy more robust by randomizing the simulation so it learns to cope with a whole spread of conditions rather than one idealized world. A policy trained to survive a hundred different simulated frictions barely notices the single real friction it eventually meets.

Also calledsim-to-real gap仿真现实差距模擬現實落差

To rebase is to pick up your branch's commits and replay them, one by one, on top of the latest version of another branch — as if you'd started your work just now instead of last week. The result is a clean, straight line of history with no 'merge' detours in it.

It solves a real annoyance. While you were building your feature, main moved on. A merge would join the two lines and leave a visible fork-and-rejoin in the history; a rebase instead rewrites your commits so they sit neatly on the new tip of main, as though the divergence never happened. Same final code, tidier story.

The one rule to tattoo on your arm: never rebase commits you've already shared. Rebasing rewrites history — it gives your commits brand-new IDs — so doing it to work others have pulled will tangle everyone's copies. Rebase your own private branch before sharing it; merge when the work is already public.

Also calledgit rebaserebase ontolinear history
See alsomergebranch

A receptive field is the specific patch of the world that a single sensory neuron is "listening to." Touch a tiny spot on your fingertip and one nerve cell may fire faster; touch the skin a centimeter away and that same cell stays quiet, because that spot lies outside its receptive field. The idea works for every sense: for a touch neuron it is a small area of skin, for a vision neuron it is a small region of the visual scene, and for a hearing neuron it is a narrow band of pitches. In short, a receptive field is the region of stimulus space that, when activated, changes how often that neuron sends signals.

Receptive fields matter because they are how the brain divides up the world into manageable pieces. Each neuron reports on its own little territory, and the brain stitches these reports together into a full picture, the way many small camera pixels build one image. The fields are not all the same size: your fingertips and the center of your vision are covered by neurons with tiny fields, giving sharp, detailed sensing, while your back or the edges of your vision have neurons with large fields and coarser resolution. Many receptive fields also have an inner and outer zone that push against each other, so a neuron fires most strongly to an edge or a contrast rather than to flat, uniform input, which helps the brain pick out shapes and borders.

Also calledsensory receptive field感受域感覺野

A recession is when an economy shrinks instead of grows — for months on end, not just a bad week. Factories make less, shops sell less, and companies stop hiring and start letting people go. Picture a town where the big plant cuts a shift: those workers spend less at the diner, so the diner trims hours too, and the chill spreads from one street to the next. That spreading, self-feeding cold snap, across the whole economy, is a recession.

It's a normal — if painful — part of the business cycle, the economy's natural rhythm of booms and busts. After a long expansion, growth eventually stalls and reverses; later it bottoms out and climbs again. What makes a recession more than an ordinary wobble is that the decline is significant, lasts a while, and is broad-based — hitting output, jobs, incomes, and spending all at once, not just one struggling industry.

You'll often hear a tidy rule: two straight quarters of falling GDP equals a recession. It's a handy rough signal, and in many countries it really is the official criterion their statistical agencies use. But the United States dates its recessions differently — through the National Bureau of Economic Research's business-cycle dating committee, which weighs three things above all: how deep the slump is, how widely it spreads, and how long it lasts. By that American measure a recession is a judgment about the whole picture, not a single number tripping a switch.

Also calledeconomic downturnslumpcontraction衰退经济下行景气衰退

Reciprocal inhibition is the nervous system's trick of relaxing one muscle at the exact moment it tells the opposing muscle to tighten. Muscles usually work in pairs that pull a joint in opposite directions — like the biceps on the front of your upper arm, which bends the elbow, and the triceps on the back, which straightens it. The one doing the intended job is called the agonist; its opponent is the antagonist. Whenever the spinal cord commands the agonist to contract, it simultaneously sends a quiet hush to the antagonist, telling it to let go. The result is smooth, easy motion instead of two muscles fighting each other to a standstill.

It works because the wiring in the spinal cord is built to do both things at once from a single trigger. When a command (or a sensory signal, such as a muscle being stretched) excites the motor neurons driving the agonist, a branch of that same circuit reaches a small relay cell — an inhibitory interneuron — that switches off the motor neurons of the antagonist. So one input has two outputs: go for one muscle, stop for its partner. This is the same mechanism behind the knee-jerk reflex, where tapping the tendon below the kneecap makes the thigh muscle snap the leg out while the muscle that bends the knee is hushed so it cannot resist.

Reciprocal inhibition matters because almost every movement you make — walking, reaching, writing, gripping — depends on it happening automatically, hundreds of times, without any thought. It is also why certain stretching methods work: gently contracting the muscle opposite the one you want to lengthen triggers the body to relax that target muscle, letting it stretch a little further.

Also calledreciprocal innervation交互神经支配交互神經支配

A recurrent network is a group of neurons wired in loops, so that their signals flow not just forward but also back onto each other. Picture a room full of people who keep whispering to the neighbors who just whispered to them: a comment can travel around the circle and return to where it started. Instead of a one-way relay where a signal passes through and is gone, a recurrent network lets activity circle back, so the cells can keep talking to themselves long after the original nudge has faded.

This feedback wiring lets the network do two things a simple forward chain cannot. First, it can sustain activity — a brief input can set off a loop of firing that keeps going on its own, which is one way the brain seems to hold a thought, a phone number, or a plan in mind for a few seconds. Second, it can amplify or sharpen signals: each neuron feeds a little excitement back to its partners, so a faint pattern gets reinforced and stands out, while loops of inhibition can quiet competing patterns. The same machinery can also cause trouble — if the loops are too strong and nothing brakes them, runaway feedback can build into the synchronized storm of a seizure.

Recurrent loops appear almost everywhere in the brain, from the cortex to the hippocampus, and they are central to how circuits remember, decide, and generate rhythms. The idea also crossed into artificial intelligence: the recurrent neural networks used to process speech and text borrow this same trick of feeding their own output back as new input, so that what happened a moment ago shapes what the network does next.

Also calledrecurrent circuitreentrant network反馈网络回饋網路循环网络循環網路

Recursion is when a function solves a problem by calling itself on a smaller piece of the very same problem. Instead of one big loop, it says 'handle a little bit, then hand the rest back to me' — over and over, each call chewing off a slightly smaller bite, until there's nothing left to do.

Think of standing in a long line and wanting to know your place. You can't see the front, so you tap the person ahead and ask 'what number are you?' They don't know either, so they ask the person in front of THEM, and so on — until someone at the very front says 'I'm number 1.' That answer flows back down the line, each person adding one, until it reaches you.

The part that keeps it from spinning forever is the base case: the simplest version of the problem that has an answer right away, with no further self-call. 'Person at the front is number 1' is the base case. Forget it, and the function calls itself endlessly and crashes — a 'stack overflow.' Every recursion needs a way to get smaller, and a place to stop.

Also calledrecursiverecursive functionself-referencebase case
See alsoruntime

Recursive Bayesian estimation is the master recipe for keeping a robot's belief up to date as time ticks forward. "Bayesian" means it follows one simple rule of reasoning: start with what you already believe, then revise it in proportion to how well new evidence fits. "Recursive" means it does this over and over in a loop, and — this is the clever part — each round only needs the answer from the round before, not the entire history of everything that ever happened. The robot never has to re-chew its whole past; it just carries forward one running summary, its current belief, and keeps refreshing it.

Each cycle has two beats. First the robot predicts: it takes its old belief and pushes it forward using what it knows about its own motion — "I commanded the wheels to roll forward, so my belief should shift ahead too." Because motion is never exact, this step always smears the belief out a little, making the robot less certain. Then the robot corrects: a fresh sensor reading comes in, and the robot pulls its belief toward whatever the measurement suggests, sharpening it back up. Predict loosens, measure tightens; the belief breathes out and in with every step.

Almost every famous estimator in robotics — the Kalman filter, the particle filter, and their many relatives — is just one concrete way of carrying out this same abstract loop. They differ only in how they store the belief and how they crunch the math, not in the underlying logic. Grasp the predict-then-correct rhythm of recursive Bayesian estimation, and you have the skeleton key to the entire family.

Also calledBayes filterrecursive Bayes filter贝叶斯滤波贝叶斯滤波器

The recursive Newton–Euler algorithm is a fast, organized recipe for computing inverse dynamics — that is, for working out exactly how much torque each joint of a robot arm needs to produce a desired motion. Its cleverness is that instead of solving one giant tangle of equations all at once, it walks along the chain of links in two passes, handling one link at a time. Think of an arm as a row of people holding hands: information flows out from the shoulder to the fingertip, then a tally is carried back from the fingertip to the shoulder.

The first pass moves outward, from the base of the arm to the tip. Starting from how the base is moving, it computes, link by link, how fast each successive link is turning and accelerating — because each link sits on top of the motion of the one before it. Once it reaches the end-effector, the second pass turns around and sweeps back inward, from tip to base. On this return trip it adds up the forces and torques each link must exert on its neighbor, accumulating the load as it goes, until every joint's required torque has been worked out.

Why bother with this two-pass structure? Because it is remarkably efficient. The straightforward way of writing out a robot's full equations of motion grows explosively as you add joints, but the recursive Newton–Euler approach scales gently and in proportion to the number of joints — fast enough to run hundreds or thousands of times per second on real hardware. That speed is exactly what lets a robot's controller compute its torques on the fly while it moves, which is why this algorithm is a workhorse buried inside most modern robot-control software.

Also calledRNEA牛顿-欧拉递推法newton-euler recursion

Redshift is what happens to light when its source is rushing away from you: the waves get stretched out, sliding toward the longer, redder end of the rainbow. You already know this trick with sound — an ambulance siren drops to a lower pitch the instant it speeds past you. Light does the same thing, only instead of a deeper note you get a redder color.

This turns out to be one of astronomy's most powerful tools. By splitting a star's or galaxy's light into its colors and measuring how far the pattern has shifted toward red, astronomers can gauge how fast that object is receding. For nearby objects this is a straightforward speed; for very distant galaxies the shift instead reflects the stretching of space itself, which we'll get to in a moment. Either way, the bigger the redshift, the faster the retreat.

Its most famous moment came in the 1920s, when Edwin Hubble noticed that almost every distant galaxy is redshifted, and the farther away a galaxy sits, the faster it flees. The only honest explanation was staggering: the whole universe is expanding, carrying the galaxies apart like raisins in a rising loaf of bread. A common mix-up: the galaxies aren't simply flying through space away from us — space itself is stretching, and the light waves stretch right along with it.

Also calledcosmological redshiftHubble redshift宇宙学红移宇宙學紅移z

Redundancy resolution is how a robot chooses among the many ways it could do the same task when it has more joints than the task strictly needs. Your own arm is the perfect example: keep your hand pinned flat on a table and you can still raise and lower your elbow, swinging it through the air while the hand stays put. The hand's job is fully specified, yet the arm still has a leftover freedom to play with. A robot with that same extra freedom faces a choice every instant — and redundancy resolution is the rule it uses to make that choice sensibly.

The leftover freedom is a gift, not a nuisance, because it lets the robot pursue a second goal for free while still nailing the main task. With its hand glued to the right spot, the arm can quietly reshape its elbow to dodge an obstacle, stay clear of a kinematic singularity (a stuck pose), keep its joints away from their limits, or simply move in the way that costs the least effort. Redundancy resolution is the recipe for picking, out of infinitely many valid arm shapes, the one that also serves whatever secondary aim you care about most.

Mechanically, these extra motions live in what is called the null space — the set of joint movements that shuffle the arm around without moving the hand at all. Redundancy resolution works by letting the main task fully determine the hand's motion, then using whatever null-space freedom remains to satisfy the secondary goals. That is how a graceful, human-like robot arm reaches into a cluttered shelf: hand locked on target, elbow weaving politely around everything in the way.

Also calledkinematic redundancy resolutionredundancy resolution冗余解算冗餘解算

To refactor is to improve the structure of code — make it clearer, simpler, easier to change — without changing what it actually does. Same inputs, same outputs; only the insides get tidier.

It's cleaning the kitchen, not changing the recipe. The dish that comes out tastes exactly the same, but now the knives are where you expect them, the counter is wiped, and the next person can cook without hunting for everything.

Good refactoring is small and continuous: rename a confusing variable, split one giant function into a few clear ones, delete code nobody uses. Because behavior shouldn't change, a solid set of tests is your safety net — if they still pass afterward, you know you didn't quietly break anything.

Also calledrefactoringclean up coderestructure

A reflex arc is the short, hardwired loop in your nervous system that turns a sudden stimulus into an instant reaction, without waiting for you to think about it. When you touch a hot stove and yank your hand back before you even feel the pain, that pull-away is a reflex arc doing its job. It is built for speed: the goal is to protect you in the split second before slower, conscious thought could catch up.

The path has just a few links, like the simplest possible chain of dominoes. First, a sensor in the skin or muscle detects the trigger (heat, a stretch, a tap). It sends a signal up a sensory nerve to the spinal cord. There, the message is handed off, often through a single connecting cell, straight to a motor nerve that drives a muscle to act. Because the loop turns around at the spinal cord and never has to travel all the way up to the brain for a decision, the whole response can happen in a fraction of a second. Your brain usually finds out about it only afterward.

Reflex arcs matter because they are the nervous system's safety reflexes and balance-keepers, handling jobs too urgent or too constant to leave to conscious control, such as blinking, the knee-jerk kick a doctor tests with a small hammer, or steadying your posture. They show, in their simplest form, the basic plan the whole nervous system is built on: sense something, process it, then move.

Also calledreflex pathway反射通路反射通路

The refractory period is the short stretch of time right after a neuron fires when it cannot easily fire again. A neuron signals by producing an action potential — a brief electrical spike that races down the cell. Once that spike has passed a spot on the neuron, that spot needs a moment to recover before it can spike a second time. Think of a camera flash: right after it goes off, you have to wait while it recharges before you can take another bright photo. The refractory period is that recharge pause built into the cell's electrical machinery.

It comes in two flavors. During the absolute refractory period — the first instant after firing — a new spike is simply impossible, no matter how strongly you push the cell. This is because the tiny gates in the membrane that let the spike happen, called sodium channels, are temporarily locked shut and must reset. Then comes the relative refractory period, when firing is possible again but harder than usual: you need a stronger-than-normal nudge to trigger a spike, because the cell is still settling back to its resting state. As the channels finish resetting, the neuron gradually returns to full readiness.

This brief unavailability is not a flaw but a useful feature. It caps how rapidly a neuron can fire, setting an upper speed limit on its signaling. Just as importantly, because the just-fired patch of membrane is momentarily unable to spike, the action potential is forced to travel forward, away from where it came, rather than doubling back. The refractory period is what keeps nerve signals marching in one clean direction down the wire.

Also calledrecovery period不反应期不反應期恢复期恢復期

Regenerative medicine is the effort to restore lost or damaged tissue and organ function by regrowing or replacing living cells, instead of just easing the symptoms with a drug or a device. Most of modern medicine props up a failing body part or quiets the pain; regenerative medicine tries to fix the part itself. Think of the difference between bracing a cracked wall and actually rebuilding it.

It draws on a few big tools: cells that can become many tissue types, scaffolds that give new tissue a shape to grow into, and signals that tell cells what to do. The body already heals wounds and renews skin and blood every day, so the strategy is to coax, guide, or supply that natural repair power where it falls short, rather than inventing healing from scratch.

Some of this is everyday clinical reality, such as bone-marrow transplants and skin grafts; much of it is still early research with real promise but unproven results. Honest framing matters here, because the gap between a striking lab result and a safe, approved therapy is wide and often takes many years to cross.

Also called再生医学再生醫學regenerative biology

Regenerative medicine ethics is the moral map of the field — the set of hard questions about what we should and should not do, separate from what we technically can. The science can run far ahead of our agreement on its limits, so this is the conversation, with no single owner, about where to draw the lines: a compass for new powers, not a rulebook handed down.

The recurring tensions are concrete. Using human embryos as a source of cells troubles many on moral grounds. Editing the germline — changes that pass to a person's children — raises the stakes to all future generations. There are questions of fairness when therapies are dazzling but unaffordable, of hype and false hope sold to the desperate, and of truly informed consent when a treatment is barely understood.

This matters because the choices are not just personal but societal, settled through laws, regulators, and public debate rather than by any one lab. Taking the ethics seriously is part of doing the science responsibly — not a brake bolted on afterward, but part of the engine.

Also called再生医学伦理再生醫學倫理bioethics of regenerative medicine

A regex is a tiny pattern language for describing what text you're looking for — then finding, matching, or replacing it in bulk. Instead of searching for one exact word, you describe its shape: "a digit, then more digits" or "anything that looks like an email".

It's wonderfully compact. The pattern \d+ means "one or more digits"; \w+ means "a word"; ^ anchors to the start of a line and $ to the end. A few symbols can replace a whole afternoon of manual find-and-replace.

It's also famously cryptic — a dense regex can look like a cat walked across the keyboard. The trick is to build it up a piece at a time and test as you go, rather than trying to read a long one all at once.

Also calledregexpregular expressionpattern matchinggrep

Think of a register as a tiny whiteboard inside the chip — wide enough to hold one number, and the whole row gets rewritten in a single stroke. Where a single flip-flop remembers just one bit, a register lines up N of them side by side so they can hold an N-bit value together: an 8-bit register holds a byte, a 32-bit register holds a typical machine word. It is the chip's short-term memory — the place a value lives between the moment it's computed and the moment something downstream consumes it.

What makes a register more than a loose handful of flip-flops is that they all share one clock. On each active clock edge every bit captures its input at (nominally) the same instant and holds it steady until the next edge, so the whole word updates together — you never see half-old, half-new bits, as long as each input is stable across the flip-flop's setup-and-hold window around that edge. Between edges the inputs can swing around as much as they like through the surrounding combinational logic; only the value present at the edge gets captured. That clean "sample once per tick, then freeze" behaviour is exactly what lets a pipeline pass data forward one stage per cycle without the stages tripping over each other.

In practice you rarely instantiate flip-flops by hand. In RTL you describe a register by assigning to a signal inside a clocked process, and synthesis infers the flip-flops for you. Real registers usually carry a few extras: a reset to force a known starting value (either synchronous, applied on a clock edge, or asynchronous, applied immediately), and often a clock-enable so the register holds its current value on cycles when you don't want it to load — letting the rest of the design stall or skip without disturbing what's stored.

Also calledregisterhardware registerdata registerparallel register寄存器暫存器

Register-transfer level, or RTL, is the level at which engineers actually "write" a chip. Instead of drawing millions of individual transistors, you describe the chip's behavior as data flowing between storage cells called registers — what gets computed, and where it lands on each tick of the clock. It feels like coding: you write logic in a hardware description language such as Verilog or VHDL, much as a programmer writes software — except every line describes real hardware.

The key idea is the clock. On each clock edge, registers snapshot their inputs and hold them steady; between edges, combinational logic crunches those values to prepare the next snapshot. So an RTL line like `q <= a + b` means "on the next tick, register q takes the sum of a and b." You check the design by simulation, then a synthesis tool translates it down into a netlist of actual logic gates and flip-flops — the bridge from your code to silicon.

Also calledHDLVerilogVHDLhardware description language寄存器传输级暫存器傳輸級

Reinforcement learning is how a machine learns the way you'd train a puppy: not by being shown the right answer, but by trying things and being rewarded or scolded for the results. The learner — called an agent — takes an action, sees what happens, and pockets a reward or a penalty. Over thousands of attempts, it drifts toward whatever earns the most reward. Nobody ever tells it the correct move; it has to discover that by playing.

This is what makes it so powerful for games and robots. A program learning to play chess or a video game gets a single signal — you won, you lost, you scored — and must figure out for itself which of its many moves actually helped. A robot learning to walk gets rewarded for staying upright and moving forward, and stumbles its way to a working gait. The agent is always caught between two urges: exploit the trick it already knows, or explore something new that might pay off even better.

The landmark moment came in 2013–2015, when DeepMind's DQN learned to play dozens of Atari games from nothing but the raw pixels on screen and the score — and beat human experts at many of them, using the same algorithm, network design, and settings for every game (with a fresh copy trained separately on each one). The common misconception is that the machine was 'programmed to win.' It wasn't: it started out flailing randomly, and learned purely from the consequences of its own fumbling.

Also calledRL强化学习強化學習trial-and-error learningreward-based learning

REM sleep is the stage of sleep where most vivid dreaming happens, named for the way your eyes dart quickly back and forth beneath closed lids — rapid eye movement. Here is the strange twist: your brain is buzzing with activity that looks almost like being awake, yet your body lies completely still. Picture a movie playing at full volume in a theater whose doors are locked from the outside: inside your head a rich, story-like dream unfolds, while your muscles are switched off so you cannot act it out. Each night you cycle in and out of REM several times, with longer stretches toward morning, which is why your most memorable dreams often come just before you wake.

That whole-body stillness is the headline feature, called muscle atonia — a near-total loss of muscle tone that briefly paralyzes your arms, legs, and trunk so you do not physically run, punch, or leap while dreaming. The brainstem, the stalk at the base of the brain, sends signals that actively clamp down on the muscles, while regions tied to vision, emotion, and memory light up. (Your eyes and breathing muscles are spared, which is why the eyes still move and you keep breathing.) Scientists think REM helps the brain sort and store memories, process emotions, and fine-tune its wiring, especially in early life — newborns spend far more of their sleep in REM than adults do. When this safety brake fails, people can physically act out their dreams, a condition called REM sleep behavior disorder.

Also calledrapid eye movement sleepparadoxical sleepdream sleep快速眼动期异相睡眠快速眼動期異相睡眠

A remote center of compliance is a clever spring-loaded gadget you bolt between a robot's wrist and its gripper so that, when the held part is pushed sideways or tilted by something it bumps into, it gives way gently and in just the right manner instead of fighting back. Think about pushing a key into a stiff lock: your fingers do not hold the key in a death grip. They let it wobble and slide a little until it finds the hole, then it slips in. An RCC device builds that same forgiving give into the robot's hand, so a slightly misaligned part can self-correct as it touches its target rather than jamming or scraping.

The trick hidden in the name is where the giving-way pivots from. Inside the device are angled flexible elements (rubber blocks or thin metal beams) arranged so that the natural point of rotation and sliding lands out in front of the gripper — typically right around the tip of the part being inserted, which may be centimetres away from the device itself. That far-away balance point is the "remote center." Because the part pivots about its own tip, a small sideways force during insertion produces mostly a sideways shift (correcting position) and a small twisting force produces mostly a tilt (correcting angle), so the two corrections stay largely separate instead of getting tangled up and making the jam worse. Each contact nudge cleanly undoes one kind of misalignment.

RCC devices are passive, meaning they use no motors, sensors, or computer control at all — they are just shaped springs, so they react instantly and never lag. That made them the classic, cheap fix for peg-in-hole assembly (inserting pins, bearings, and connectors) long before robots had fast force sensing. The trade-off is that the geometry is tuned for one part size and one approach direction; change the job and you often swap the device. Modern robots increasingly get similar forgiving behaviour through software (active compliance), but the RCC remains a beautifully simple demonstration of letting mechanics, not computation, absorb the error.

Also calledRCCRCC device顺应中心順應中心

Repolarization is the recovery phase of a nerve cell's electrical signal — the moment when the cell, having briefly flipped its inside from negative to positive, swings back toward its normal negative resting state. Picture a neuron at rest as a tiny battery whose inside is kept slightly negative compared with the outside. When a signal called an action potential fires, that charge suddenly reverses and the inside shoots positive; repolarization is the bounce-back, the part of the spike where the voltage drops back down and the cell returns to its usual negative value, ready to fire again. If depolarization is the upstroke of the signal, repolarization is the downstroke.

What makes it happen is a careful changing of the guard among tiny gates in the cell's outer wall called ion channels, which let electrically charged particles (ions) in or out. During the rise, gates that let positive sodium in snap shut, and a beat later, gates that let positive potassium out swing open. As potassium rushes outward, it carries positive charge away with it, so the inside grows negative again and the membrane voltage falls back toward rest. Potassium tends to overshoot slightly, dipping the cell even more negative than usual for a brief stretch, which helps stop the same signal from doubling back, so messages travel cleanly in one direction.

Repolarization matters because it resets the cell. Without this swift return to a negative baseline, a neuron could not fire a clean, separate signal again, and rapid trains of impulses — the basis of thought, sensation, and movement — would smear into one long jumble. In heart muscle the same recovery sets the rhythm of each beat, which is why drugs or genetic faults that slow repolarization can cause dangerous irregular heartbeats.

Also calledrepolarisation复极復極膜复极化膜復極化

A repository — 'repo' for short — is your project's folder, but with git watching over it. Alongside your files, it quietly stores the project's entire history: every saved version, who changed what, and why.

A repo can live in two places at once. There's the copy on your own machine (the 'local' repo, where you actually work), and often a copy on a service like GitHub (the 'remote' repo, where the team shares and backs things up). You sync between them as you go.

Turning a plain folder into a repo is a one-time step: run git init, and from then on git tracks everything inside. That hidden .git folder it creates is where all the history lives — leave it alone and let git do its thing.

Also calledrepogit repocodebase

Resistance is how strongly a material fights the flow of electric current — the electrical equivalent of friction. Picture water pushed through a pipe: a wide, smooth pipe lets it gush, but pinch the pipe and the same push delivers only a trickle. Resistance is that pinch. It is measured in ohms, and the more a wire resists, the less current a given voltage can drive through it.

Where does the held-back energy go? It turns into heat — which is exactly how a toaster, a kettle, or an old-style light bulb works, deliberately using high resistance to warm up or glow. How much a wire resists depends on its material (copper resists little, nichrome resists a lot), its length (longer means more), its thickness (thinner means more), and its temperature (most metals resist more when hot). Thin, long, hot wires are the stubborn ones.

Also calledelectrical resistanceohmsΩ电阻

REST is a popular, tidy style for building web APIs — a set of habits, not a piece of software. The core idea is lovely and simple: treat everything your service offers as a 'resource' that lives at a URL, and use ordinary HTTP verbs to act on it. The URL says what; the verb says do what.

So /users/42 names one user, and the verb decides the action: GET to read them, POST to create one, PUT to update, DELETE to remove. Same address, different verb, different meaning. Once you see the pattern, a well-designed REST API feels like reading nouns and verbs in a sentence — guessable, even before you read the docs.

It's called RESTful when an API follows these conventions. REST isn't a law and people argue endlessly about the fine print, but its plainness is the whole point: no special protocol to learn, just the everyday HTTP the web already speaks.

Also calledrestfulrest apirestful api

The resting membrane potential is the small, steady voltage that sits across the thin outer skin of a neuron whenever the cell is quiet and not firing. Picture the neuron as a tiny battery that is always charged and waiting: the inside of the cell is slightly negative compared to the fluid just outside it, by roughly seventy thousandths of a volt — written as about minus seventy millivolts. The minus sign simply means the inside is the negative end. This is the neuron's normal, ready state, the calm baseline it returns to between signals.

This voltage exists because charged particles called ions — mainly potassium, sodium, and chloride, plus large negatively charged proteins — are spread unevenly across the membrane, and the membrane is choosy about which ones it lets through. At rest the membrane leaks potassium far more easily than sodium, so positive potassium drifts outward and leaves the inside a little negative. A tireless molecular pump, the sodium–potassium pump, works in the background to keep the imbalance from running down, pushing sodium out and potassium back in. The result is a stored difference in charge, like water held behind a dam.

Why it matters: this poised, slightly negative state is what makes fast signaling possible. Because the neuron is already charged like a cocked spring, a strong enough nudge can briefly flip the voltage and send a pulse racing down the cell — the action potential. Without a stable resting potential to fall back to, neurons could not reliably fire, reset, and fire again, which is the basic rhythm behind every thought, sensation, and movement.

Also calledresting potentialVrest静息电位靜息電位

The reticular activating system is a loose, net-like web of nerve cells running through the brainstem — the stalk at the base of the brain that connects it to the spinal cord. Think of it as the brain's master dimmer switch: instead of turning thinking on or off, it sets how bright or dim your overall alertness is, from deep dreamless sleep at one end to wide-awake, sharply focused attention at the other.

It works by gathering a constant trickle of signals from your senses and your body, then fanning that activity upward to wake up the rest of the brain, especially the thinking surface called the cortex. When this system fires steadily, the cortex stays switched on and you feel conscious and aware; when it quiets down at night, the cortex powers down and you drift toward sleep. This is also why a sudden loud noise can jolt you awake — it spikes the dimmer back up in an instant.

Because it controls the basic on-and-off of being awake at all, the reticular activating system is essential to consciousness itself. Damage to it from injury or stroke can leave a person in a coma, unresponsive even though the rest of the brain may be largely intact — which is why doctors watch it closely after serious head trauma.

Also calledRASascending reticular activating systemARAS上行网状激活系统上行網狀激活系統

A reuptake transporter is a tiny protein machine sitting in the outer skin (membrane) of a neuron that grabs used chemical messengers out of the gap between cells and pulls them back inside, so the message stops. When one neuron talks to the next, it squirts out chemical messengers called neurotransmitters into a narrow gap (the synaptic cleft) — like spraying a scent across a small room. The reuptake transporter is the cleanup crew with a vacuum: it sucks those messenger molecules back out of the gap and into the cell that released them, clearing the air so the room is fresh for the next message.

This matters because a signal is only useful if it can also be switched off. If the messengers lingered in the gap forever, the receiving neuron would keep firing and the signal would smear into meaningless noise — a phone that never hangs up. By rapidly recovering the messengers, the transporter ends each signal cleanly and recycles the molecules so the cell can reuse them instead of building new ones from scratch, which saves time and energy. Different transporters are tuned to different messengers, with specialized pumps for dopamine, serotonin, norepinephrine, and others.

Reuptake transporters are also a major target for medicines and drugs. Many antidepressants work by partly blocking the serotonin transporter, so serotonin stays in the gap longer and its calming or mood-lifting signal is amplified; stimulants like cocaine and amphetamine act on the dopamine transporter, which is part of why they so strongly affect mood, alertness, and addiction. Understanding the transporter therefore helps explain both how the brain keeps its chemical conversations crisp and how a single small protein can become the doorway through which powerful drugs reshape feeling and behavior.

Also calledneurotransmitter transporterreuptake pump再摄取泵神经递质转运体再攝取泵神經遞質轉運體

A revolute joint is a joint that lets one link spin around a single fixed line, like a door swinging on its hinge. It does just one thing — rotate about one axis — and nothing else: the link cannot slide back and forth or tilt sideways, only turn. Because it allows exactly one independent motion, we say it has one degree of freedom. The single number that describes its state is simply the angle it has turned to, the way a clock hand is fully described by where it points.

Revolute joints are by far the most common joints in robots, for the same reason hinges are everywhere in daily life: rotation is easy to build and easy to power. An electric motor naturally spins, so you can couple one straight onto a revolute joint and the link turns. A typical robot arm is mostly a stack of revolute joints — shoulder, elbow, wrist — each adding one more way for the arm to bend, so that together they sweep the hand through a wide reach of positions and orientations.

Engineers often draw or label a revolute joint with the letter R. An arm described as RRR, for example, is one made of three revolute joints in a row. Knowing each joint is purely rotational keeps the geometry simple: the robot's overall pose is just the list of all those turning angles.

Also calledrevoluterotary jointhinge jointR joint回转关节旋转关节

A revolution is the sudden, root-and-branch overthrow of a society's political or social order — not a tinkering with the rules, but a tearing-up of the whole rulebook. Picture a building condemned and demolished rather than renovated room by room: when the French stormed the Bastille in 1789, or Russian workers and soldiers swept away the Tsar in 1917, they weren't asking for a better king. They were ending kingship itself, and putting something fundamentally new in its place.

What sets a revolution apart is its pace and its depth. Reform inches forward — extending the vote, easing a tax, passing a law — leaving the basic shape of power intact. A revolution does both at once: it moves fast, often violently, and it goes all the way down, transforming who rules, how, and on whose behalf. That is why revolutions feel like a clock suddenly jumping hours, while ordinary change merely ticks.

A common misconception is that every uprising or coup is a revolution. A palace coup just swaps the faces at the top; a riot may burn out without changing anything. A true revolution remakes the deep structure of society — its classes, its institutions, its idea of who counts as a citizen — which is also why revolutions so often disappoint, devour their own leaders, or harden into the very tyranny they overthrew.

Also calledpolitical revolutionsocial revolutionuprising革命起义起義

A reward function is the scorekeeper that tells a learning robot how well it is doing. After each action it spits out a single number — a reward — that is high when things go right and low (or negative) when things go wrong. Knock the cup over: minus ten. Place it gently on the shelf: plus a hundred. The robot's only mission is to rack up as much total reward as it can over the whole task, so this little number quietly defines what the robot is even trying to achieve. Change the reward and you change the robot's goal.

The catch is that the robot takes the reward function utterly literally, with no common sense to fill in what you meant. If you reward a cleaning robot only for 'cup on the shelf' and forget to penalize a smashed cup, it may learn to fling the cup up there and count breakages as a fair price. Designers therefore sweat over reward functions, because a robot will cheerfully exploit any loophole — a habit researchers call reward hacking. Getting the reward right is often harder, and more important, than the learning math that chases it.

Also calledreward signal奖励信号報酬函數

A reward prediction error is the brain's way of measuring surprise about good things — the gap between the reward you expected and the reward you actually got. Imagine you bite into a sandwich expecting it to be plain, and it turns out delicious: that pleasant jolt of "better than I thought" is a positive prediction error. If instead it tasted worse than you hoped, that little sting of disappointment is a negative prediction error. And if it was exactly as good as expected, there is no error at all — no surprise, nothing new to learn. The brain cares less about reward itself than about whether reward beat or missed its prediction.

This signal is carried mainly by dopamine, a chemical messenger released by a small cluster of cells deep in the midbrain. When something turns out better than expected, these cells fire a quick burst, releasing extra dopamine; when something turns out worse than expected, they briefly go quiet, dipping below their usual steady trickle. A reward that arrives exactly on schedule, fully predicted, produces almost no change. In effect, dopamine is not simply a "pleasure signal" but a teaching signal that announces the size and direction of the surprise.

Why does this matter? Because that surprise is exactly what learning needs. The brain uses the prediction error to update its expectations: a positive error nudges you to repeat and value whatever led to the good outcome, while a negative error tells you to lower your hopes and try something else. Over many repetitions, predictions get sharper and errors shrink toward zero, which is how habits, cravings, and skilled choices form. The same machinery, when hijacked, helps explain addiction and is mirrored in the "reward signals" used to train artificial intelligence.

Also calledRPEreward prediction-error signal奖励预测误差獎勵預測誤差

Reward shaping is the trick of sprinkling in small, helpful rewards along the way so a robot can learn a hard task without flailing in the dark. The trouble with a bare reward function is that for many jobs the robot only earns points at the very end — a maze solved, a peg inserted — and until then everything scores zero. By blind trial and error it could fumble for a very long time before stumbling onto that single payoff. Shaping hands out little hints — a tiny bonus for getting closer to the exit, for lining the peg up straighter — so the robot gets warmer-and-warmer feedback and climbs toward the goal instead of wandering blind.

The delicate part is adding those hints without secretly changing what the robot should ultimately do. Done carelessly, breadcrumbs can backfire: reward a robot just for moving toward a goal and it might learn to jog in place near the finish, milking the proximity bonus forever instead of crossing the line. The safe recipe, called potential-based shaping, only ever rewards genuine progress between states, which mathematically guarantees the best behavior stays exactly the same — the robot just finds it far faster. Shaping changes the speed of learning, not the destination.

Also calledshaped reward塑形奖励獎勵塑造

The reward system is the brain's built-in encouragement network, a set of connected regions that lights up when something good happens and pushes you to go after more of it. When you take a bite of food while hungry, win a game, hear praise, or get a like on a message, this circuit releases a chemical messenger called dopamine that produces a flash of wanting and satisfaction. Think of it as the brain's coach, cheering on the actions that keep you alive and well, food, water, warmth, friendship, and quietly nudging you to repeat them.

At the heart of this system is a pathway running from a deep midbrain spot, the ventral tegmental area, up to a hub called the nucleus accumbens, with strong links to the prefrontal cortex behind your forehead, the planning and decision part of the brain. Dopamine here does something cleverer than just signaling pleasure: it mostly tracks surprise. When a reward is bigger or arrives sooner than expected, dopamine surges and your brain marks the action that led to it as worth repeating; when a reward is smaller than expected, the signal dips. This teaching signal is how habits form, how you learn which choices pay off, and why the cue before a reward, the smell of dinner, a ringtone, can start to feel exciting all on its own.

Because the reward system is so powerful, it can be hijacked. Drugs, gambling, and some apps flood or trick this circuit far more strongly than ordinary pleasures, which is why they can drive compulsive, hard-to-stop behavior. The same machinery that helps a person work toward a goal is, when overstimulated, central to addiction, and when it works too weakly it is linked to the loss of motivation and joylessness seen in depression.

Also calledreward circuitmesolimbic dopamine pathway奖赏回路中脑边缘多巴胺通路獎賞迴路中腦邊緣多巴胺通路

An RGB-D camera is a camera that captures two things at once for every pixel: its ordinary color (the R, G, and B stand for red, green, blue) and its depth — how far that exact spot is from the lens (the D). So instead of a flat picture, each point in the image also knows its distance, as if every pixel in your photo could whisper how many centimeters away it sits.

It gets the depth without a tape measure using one of a few tricks. Some models project an invisible pattern of infrared dots onto the scene and watch how the pattern bends over near and far surfaces (structured light). Others use two slightly separated cameras and compare the small shift between their views, the way your two eyes judge distance (stereo), or they time how long an infrared flash takes to bounce back (time-of-flight). The result, lined up with the color image, is a colored 3D snapshot.

For robots this is a cheap, compact way to grasp the layout of a room or a tabletop: where the cup is, how tall the box is, how far the wall stands. Compared with LiDAR it is usually cheaper and gives rich color too, but it typically works best indoors and over shorter ranges, since bright sunlight and faraway or shiny objects can confuse its depth reading.

Also calleddepth camera3D camera深度相机深度相機
See alsoLiDAR

Rigid-body dynamics is the study of how solid objects move and turn once you account for the pushes, pulls, and twists acting on them — and crucially, how heavy they are and how that weight is spread out. The word "rigid" is the key simplification: we pretend the object never bends, squishes, or stretches, so every part of it stays a fixed distance from every other part. A robot's forearm, a thrown wrench, a spinning top — all are treated as solid chunks that can slide and spin but never deform. This little white lie makes the math far simpler while still describing real motion remarkably well.

Once you assume rigidity, a body's whole motion splits neatly into two stories: where its center of mass travels (translation), and how it rotates around that center (rotation). Translation follows Newton's familiar idea that force equals mass times acceleration — push harder, or push something lighter, and it speeds up faster. Rotation has a twin rule, in which twisting effort (torque) fights against the body's resistance to spinning (its moment of inertia). Knowing both stories lets you predict how an object will tumble through space.

For robots this is the foundation that turns clumsy guessing into precise control. A robot arm is a string of rigid links connected at joints, and to make its hand arrive smoothly at the right spot, the controller must know how each link's mass will resist, swing, and tug on its neighbors. Rigid-body dynamics gives the equations for all of that. It is the bedrock beneath a walking robot keeping its balance, a drone holding steady in a gust, or an arm whipping a part into place without overshooting.

Also called刚体力学rigid body dynamics

A rigid-body transformation is a way of moving an object through space that never bends, stretches, or warps it. Imagine picking up a solid wooden block and carrying it to a new spot, perhaps turning it as you go. The block ends up somewhere new and maybe facing a new way, but its shape is untouched: every corner is still the same distance from every other corner. That distance-preserving quality is exactly what makes the motion "rigid."

Any such motion is built from just two ingredients combined: a rotation (a turn about some axis) and a translation (a straight slide from one place to another). Together they can take an object from any starting pose to any ending pose. Crucially, no rigid transformation can ever change the object's size, squash its angles, or flip it into a mirror image; if a motion did any of those, it would no longer count as rigid. This is why it is the natural language for describing how real, solid robot parts move.

Their real power shows up when you chain them. The transformation from a robot's shoulder to its elbow, followed by the one from elbow to wrist, followed by wrist to fingertip, can all be composed into a single transformation from shoulder straight to fingertip. Doing them one after another, and folding the steps into one, is how a robot computes where its hand is from the angles of all its joints.

Also calledrigid motion刚体运动剛體運動

Rise time and settling time are two stopwatch numbers that describe how quickly a controlled thing reacts when you ask it to change. Imagine you nudge a thermostat from 20 to 25 degrees. Rise time answers "how fast does it get close?" — it measures the time the temperature takes to climb from low to nearly its new target (commonly from 10 percent to 90 percent of the jump). Settling time answers a different, more patient question: "how long until it stops wobbling and stays put?" — the time until the value gets inside a small tolerance band around the target, say within 2 percent, and never strays back out.

The two numbers can pull in opposite directions, and that tension is the heart of tuning a controller. A system can rise very fast by charging hard at the target, but a hard charge tends to overshoot and then bounce above and below before calming down, which makes settling time long. A gentler approach rises slowly but slides smoothly into place with little wobble, so it settles sooner relative to how quickly it arrived. Engineers pick a balance based on what the machine is for: a camera autofocus wants a quick rise even with a tiny wobble, while a crane lowering a load wants a calm settle even if it takes its time getting there.

Both are measured against a step input — a sudden, clean jump in the command — because that is the harshest, most revealing test of how a system handles change. Reporting rise time and settling time together gives a fair picture: one tells you the speed of the first move, the other tells you the cost of that speed in lingering wobble.

Also calledtransient response timing上升时间调节时间整定时间安定時間

A robot is a programmable machine that can sense the world around it, decide what to do, and then physically act on that decision by moving or changing something. The key word is physical: unlike an app or a chatbot, which only push pixels and text around, a robot has a body and reaches out into the real world — gripping, rolling, flying, welding, or carrying. A washing machine follows a fixed timer and notices nothing, so it is just an appliance; a robot vacuum that feels a wall, plans a path, and steers around your shoe is closer to the real idea.

Three abilities together make something a robot: sensing (cameras, touch, distance, or position give it information), deciding (a program or a learned model turns that information into a choice), and acting (motors and joints carry the choice out in the physical world). Take away the sensing and you have a blind puppet that only repeats a script; take away the acting and you have a piece of software, not a robot. The same loop scales from a tiny toy up to a factory arm or a self-driving car.

Because the word covers such a huge range, it helps to think in families rather than one fixed image: arms bolted to a factory floor, wheeled or legged machines that roam, drones that fly, humanlike figures, and squishy soft robots. What unites them all is that loop of sense, decide, and act inside a body.

Also calledrobotic system机器人系统機器人系統

Autonomy is how much a robot can get a job done on its own, without a person stepping in to steer it. A highly autonomous robot decides for itself how to handle whatever it meets; a low-autonomy one waits for a human to tell it nearly every move. Think of two ways to get somewhere: drive the car yourself, holding the wheel the whole time, versus tell a taxi the address and let it figure out the route. Both reach the destination; only one runs without your constant input.

Autonomy is not all-or-nothing — it is a dial, not a switch. The same robot can be more autonomous at easy parts of a task and lean on a human for the hard or risky parts. A warehouse robot might navigate aisles entirely by itself but call a person when a package is jammed; a surgical robot may hold perfectly steady on its own while a surgeon makes every cut. What matters is who is making the decisions, moment to moment, and how often a human must intervene.

More autonomy is not automatically better; it is a trade-off. Autonomy lets a robot work in places people cannot easily reach, far away or underwater or in danger, and frees humans from dull or exhausting supervision. But it also demands that the robot handle surprises safely on its own, which is genuinely hard, so designers grant only as much autonomy as the robot can be trusted to use well.

Also calledautonomy自主自主能力

The robot equation of motion is the single master formula that links the twisting forces (torques) a robot's motors apply at its joints to the motion those torques produce — the positions, speeds, and accelerations of every joint. Think of it as the robot's law of nature, written down. Feed in how hard each motor is pushing, and the equation tells you how the robot will move; or work it backwards — decide how you want it to move, and it tells you exactly how hard each motor must push.

What makes it tricky, and beautiful, is that the joints are all coupled — none of them moves in isolation. Swing the shoulder and the elbow gets dragged along; speed up one joint and it tugs sideways on the others. The equation bundles these effects into a few named pieces: a mass term capturing how heavy and sprawled-out the arm is in each pose, velocity terms (the Coriolis and centrifugal effects) capturing how fast motion stirs up sideways tugs, and a gravity term capturing the steady downward pull the motors must constantly hold against. Because the arm's heaviness changes shape as it folds and unfolds, these pieces are not fixed numbers but quantities that shift with every pose.

This equation is the engine room of robot control. A controller that knows it can plan a motion and pre-calculate the precise torque pattern to achieve it, instead of jerkily correcting after the fact. It is what lets a surgical robot move with butter-smooth precision, a humanoid catch itself mid-stumble, or a factory arm trace a fast path without wobbling. Solve it one way and you predict motion from torque; solve it the other way and you find the torque needed for a desired motion.

Also calleddynamic model动力学方程运动方程

Robot ethics is the study of what is right, fair, and safe when machines start sensing, deciding, and acting in the real world among people. The moment a robot can choose — which way to turn, what to grab, whom to let pass — its choices begin to affect human lives, and ordinary moral questions follow it everywhere: Who is responsible if it harms someone? May it watch and record the people around it? Can a person trust what it tells them? Robot ethics is simply the careful asking and answering of these questions before, during, and after a robot is built.

The hardest knot is responsibility. A hammer never decides anything, so if it hurts you we blame the hand that swung it. But a self-driving car or a delivery robot makes thousands of small decisions on its own, which can blur the line between the people who designed it, the company that sold it, the owner who switched it on, and the machine itself. Most thinkers agree a robot is not a moral person and cannot truly be blamed; the duty of care stays with the humans and organizations behind it. Ethics works to keep that chain of responsibility clear instead of letting it vanish into the machine.

Beyond blame, robot ethics watches over privacy (a robot's cameras and microphones can quietly gather a lot about your home), agency (who is really in control — the person or the autonomy?), fairness (a robot that works well for some people but fails others), and dignity (whether it is kind to treat a frail person with a machine instead of a human). These are not afterthoughts. Asked early, they change how the robot is designed; asked too late, they show up as scandals, recalls, and broken trust.

Also calledroboethics机器人道德機器人道德

Robot localization is a robot figuring out where it is on a map it already has. Imagine waking up in a hotel and being handed the floor plan, but with no dot saying you are here. You glance around — a window on your left, a long hallway ahead, an exit sign to the right — and match what you see against the plan until only one spot fits. That match, the robot's best guess of its position and which way it is facing, is what localization delivers. In robotics this guess of position-plus-heading is called the robot's pose.

It works by comparing two things: what the robot's sensors report right now, and what the map says it should see from each possible spot. A laser scanner might report a wall two meters ahead and a doorway to the left; the robot asks, of all the places on this map, which ones would produce that exact view? Usually several spots roughly fit, so the robot does not keep a single answer but a spread of likely poses, and every time it moves and senses again, the spread tightens around the true location. Wheel counters and motion sensors say how far it rolled, while the laser or camera corrects the drift that those counters slowly accumulate.

The reason it matters is that almost nothing else a robot does works without it. A delivery robot cannot route to room 304, a warehouse robot cannot stop at the right shelf, and a vacuum cannot avoid cleaning the same strip twice unless each first knows where it stands. Crucially, localization assumes the map is already given and trusted; the harder cousin where the robot must build the map and locate itself at the same time is SLAM.

Also calledpose estimation in a known map位置估计定位

Robot mapping is the act of a robot building a record of what its surroundings look like, by stitching together everything its sensors pick up as it travels. Think of a surveyor walking a plot of land, jotting down where each fence, tree, and ditch sits until the loose notes add up to a usable map. A robot does the same, only its notes are streams of sensor readings — laser distances, camera images, sonar echoes — and the finished map is a digital model of the space it can store, reuse, and reason about later.

The catch that makes mapping its own distinct skill is this: a single sensor sweep only tells you what is around the robot at one instant, from one spot. To build a whole map you must take readings from many spots and fuse them into one consistent picture, and to do that you need to know where the robot was standing for each reading. Mapping in its pure form assumes those positions are already known and trustworthy — say, the robot is carried along a precisely measured track, or its location is pinned down by some outside system. Given trusted positions, the work is to transform each scan into a common frame of reference and lay them on top of one another so walls line up and the picture holds together.

The result can take different shapes depending on what the robot needs. It might be an occupancy grid that shades in where space is blocked or free, a landmark map that records only a handful of standout features like corners and poles, or a richer three-dimensional model. In practice, of course, a robot rarely knows its own positions perfectly ahead of time, which is exactly why pure mapping so often gets bundled with localization into the joint problem of SLAM.

Also calledmappingmap building建图地图构建

The Robot Operating System, almost always called ROS, is a free, open-source toolbox for building the software that runs a robot. Despite the name, it is not an operating system like Windows or Android that boots up your computer. It is more like a set of shared workshop tools and an agreed-upon language that sit on top of a normal operating system, so that the many small programs inside a robot can talk to each other and reuse work other people have already done. Without something like ROS, every team would have to reinvent how a camera program hands a picture to a navigation program, over and over.

The core idea is to break a robot's brain into many little programs, called nodes, each doing one job: one reads the camera, one finds obstacles, one plans a path, one drives the wheels. ROS gives these nodes a common post office so they can pass messages back and forth without each program needing to know exactly where the others are running or how they were written. On top of that plumbing, ROS bundles thousands of ready-made parts the community has shared — drivers for real motors and sensors, mapping and navigation libraries, and tools that let you watch the data flow or replay a recorded run. Because so much is reusable, a small team can stand up a working robot in weeks instead of years.

ROS comes in two big eras: the original ROS 1, which made the ideas popular in research labs, and the newer ROS 2, rebuilt to be more reliable for real products, to coordinate many robots at once, and to handle the demands of safety and security. Today ROS is the closest thing the field has to a common foundation, taught in universities and used in everything from warehouse robots to research humanoids.

Also calledROSROS 2

Robot safety is the whole effort of making sure a robot does not hurt the people, property, or environment around it. A robot can be heavy, strong, and fast, and it does not get tired or distracted the way a person does — which is its virtue and also its danger. Safety work asks, calmly and in advance: what could go wrong here, how badly, and how do we make that unlikely enough to live with? It covers the machine, the workspace, the people, and the rules they all follow.

The disciplined version of that question is called risk assessment. Engineers list each hazard — a fast-moving arm, a sharp tool, a heavy load that could drop, software that might misbehave — and for each one weigh how likely harm is and how severe it would be. Then they reduce the risk in order of preference: first design the danger out if you can, then add guards and protective stops, and only last fall back on warning signs and training. The goal is never zero risk, which is impossible, but risk driven down to a level judged acceptable for that use.

So that every builder is not reinventing this from scratch, the field shares written safety standards — agreed-upon documents that spell out good practice. For industrial robot arms, ISO 10218 sets the baseline requirements for the robot and its installation, and the companion document ISO/TS 15066 deals specifically with collaborative robots, even putting numbers on how much force or pressure contact with a person may involve before it becomes harmful. Following such standards does not make a robot magically safe, but it captures hard-won lessons so that each new installation does not have to learn them through accidents.

Also calledISO 10218ISO/TS 15066功能安全

A robot simulator is a piece of software that builds a pretend world inside the computer where a virtual copy of a robot can move, sense, and bump into things — all without any real hardware. It imitates the laws of physics, so the simulated robot has weight, its joints feel torque, objects fall and collide, and wheels can slip. It also fakes the robot's sensors, generating make-believe camera pictures, distance readings, and touch signals as if the virtual robot were really looking around. To the robot's control software, a good simulator can look almost indistinguishable from reality.

The reason this matters is that real robots are slow, expensive, and breakable. Testing a new walking gait on a physical humanoid might mean it falls and snaps a part; testing it a thousand times in simulation costs only electricity and a few minutes, and a crash just resets the scene. Engineers use simulators to try out risky maneuvers safely, to run a behavior overnight across thousands of randomized situations, and increasingly to train learning-based robots that need millions of practice attempts no real machine could survive. It is the flight simulator of robotics: pilots practice emergencies that would be reckless to rehearse in a real plane.

The catch is the gap between the pretend world and the messy real one — often called the sim-to-real gap, or reality gap. No simulator captures every detail of friction, lighting, sensor noise, or a slightly bent part, so a robot that works flawlessly in simulation can still stumble in the real world. Good practice is to use the simulator to develop and stress-test quickly, then confirm and tune the final behavior on the real machine.

Also calledrobot simulation仿真模擬

Robot taxonomy is simply the family tree of robots — a way of sorting the huge variety of machines we call robots into a few clear groups by what their body looks like and how it moves. Just as we might sort vehicles into cars, boats, and planes before talking about any one of them, naming a robot's type tells you a lot at a glance about where it works and what it can do.

The common groups are: a manipulator (a fixed arm bolted to the floor, like the ones welding cars in a factory); a mobile robot (a machine that drives or walks around on the ground, such as a delivery rover or a robot vacuum); an aerial robot (a flying machine, like a drone); a humanoid (a robot shaped roughly like a person, with a torso, two arms, and often legs); and a soft robot (a body made of bendy, squishy materials instead of hard metal joints, so it can squeeze and flex like an octopus arm).

These groups are a starting map, not strict walls — a real machine can blend them, like a mobile robot that also carries an arm. The point of the taxonomy is to give beginners a shared vocabulary, so that saying 'it's a mobile manipulator' instantly paints a picture of the kind of robot you mean.

Also calledrobot classificationtypes of robots机器人类型機器人類型

A robot's workspace is the full region of space its working tip can actually reach — the invisible bubble of all the spots its hand, gripper, or tool can get to without the robot tearing itself apart. Think of standing in one place and sweeping your arm around: the curved volume your fingertips can touch is your personal workspace. A robot has exactly the same kind of limit, set by how long its segments are and how far each joint is allowed to swing. Anything inside the bubble it can serve; anything outside it simply cannot reach, no matter how cleverly it twists.

Engineers split this bubble into two nested zones. The bigger one is the reachable workspace: every point the tip can touch in at least one way. The smaller one tucked inside it is the dexterous workspace: the points the tip can reach from every direction, arriving at any angle you like. The difference matters in practice. A welding robot might be able to touch a far corner (reachable) but only with its torch pointing the wrong way, so it cannot actually do the weld there (not dexterous). Near the very edge of the reachable bubble the arm is stretched almost straight and loses nearly all its freedom to reorient, which is why useful work happens comfortably inside, not at the fingertips of the reach.

Knowing the workspace shape is one of the first things a designer figures out, because it decides where the robot can be placed and what jobs it can take on. The shape depends entirely on the robot's build: a SCARA arm carves out a flat puck-shaped region, a classic six-jointed arm sweeps a rounded hollow shell, and a delta robot owns a shallow dome above its work surface. Lay out a factory cell well and every part to be handled sits inside the dexterous zone; lay it out badly and the robot keeps straining at its limits, stalling, or refusing the move.

Also calledwork envelopereachable workspace工作范围可达空间

Robotics middleware is the software layer that sits in the middle — between a robot's many separate programs, and the hardware below them — and lets all those pieces find each other and talk. The word middleware just means software that lives in the middle and does the plumbing rather than the headline job. Think of it as the wiring, pipes, and switchboard of a building: you never admire the pipes, but without them the kitchen, bathroom, and heating could not share water and power. Middleware is the invisible connective tissue that the visible robot programs depend on.

It quietly handles three chores that would otherwise be painful. First, messaging: it carries data from a program that produces it (say, a camera) to whichever programs want it, packaging and delivering each message. Second, discovery: when a new program starts up, middleware helps it automatically find the other programs already running, so nobody has to hard-code addresses by hand. Third, hardware abstraction: it hides the messy, brand-specific details of a particular motor or sensor behind a clean, standard interface, so the rest of the code can say drive forward without caring which company made the wheels. Swap in a different sensor of the same kind, and the programs above barely notice.

Because middleware takes care of this plumbing, robot builders can focus on behavior — perceiving, planning, acting — instead of re-solving how bytes travel between programs every time. The messaging core inside ROS is the most famous example of robotics middleware, but the idea is general and shows up under many names across the field.

Also calledmiddleware通信中间件通訊中介軟體

The robotics software stack is the layered chain of programs that turns raw sensor readings into the precise commands that move a robot. A robot's body is just metal and motors; this software is its mind. Like a stack of pancakes, it is built in layers, and information flows from the bottom up: each layer takes what the one below it produced, makes sense of it, and hands a more useful result to the layer above.

The classic layers are perception, planning, and control. Perception takes in data from cameras, lidar, and other sensors and figures out what is around the robot and where things are — turning a flood of pixels and distances into a tidy picture of the world. Planning then decides what to do about it: which path to drive, where to reach, in what order to act. Control finally translates that plan into the exact electrical signals that drive each motor, moment by moment, while constantly checking the result and correcting.

Thinking in this layered way matters because it lets a big, hard problem be split into smaller pieces that teams can build and improve one at a time. The same skeleton — sense, then decide, then act — underlies almost every robot, from a warehouse rover to a self-driving car, even though the details inside each layer change enormously from one machine to the next.

Also calledrobot software pipelineperception-planning-control pipeline机器人软件管线機器人軟體管線

Robust control is a way of designing a robot's controller so that it keeps working well even when your math model of the robot is wrong — as long as the wrongness stays within known limits. Every model is a simplified story: the real arm might be a little heavier than the blueprint says, a joint might have more friction on a cold morning, or a gripper might be holding a payload you didn't measure exactly. Instead of pretending these numbers are perfect, robust control assumes they live somewhere inside a fenced-in range of uncertainty, and then designs one fixed controller that is guaranteed to stay stable and perform acceptably for every possibility inside that fence.

Think of it like packing for a trip when you don't know the exact weather, only that it will be somewhere between cool and warm. You don't pack a different outfit for each degree; you pack one outfit that works across the whole forecast band. A robust controller is that one outfit: it may not be the absolute best for any single exact condition, but it never falls apart anywhere in the expected range. Engineers describe the uncertainty as a bounded set around the nominal model, then use design tools (such as H-infinity methods) that mathematically prove the worst case inside that set is still safe.

The trade-off is the price of that safety. Because a robust controller is tuned to survive the worst plausible mismatch, it is often a little cautious — slightly slower or less aggressive — than a controller tuned to one perfect model. That conservatism is the whole point: in robotics, where a fast but fragile controller can mean a dropped part or a collision, a dependable controller that never surprises you is usually worth more than a brilliant one that only works on paper.

Also calleduncertainty-tolerant control鲁棒控制器強健控制

The rock cycle is the planet's slowest recycling program. Every stone in your garden is just rock caught at one moment in an endless journey, forever being made, broken, buried, and remade. Rocks come in three families — igneous, born when molten rock cools and hardens; sedimentary, pressed together from sand, mud, and shells; and metamorphic, cooked and squeezed into a new form deep underground — and any one can, given time, turn into any other.

Picture a single mountain peak. Wind and rain crumble it grain by grain; rivers carry the grit to the sea, where it settles, piles up, and hardens into sedimentary rock. Bury that rock deep enough and heat and pressure bake it into metamorphic rock; push it deeper still and it melts, only to rise, cool, and harden as fresh igneous rock — perhaps the start of a brand-new mountain. The whole loop runs on two engines: the Sun, which drives the weather that wears rock down, and Earth's inner heat, which lifts and melts it from below.

The common misconception is that rocks are permanent — "solid as a rock." On a human lifetime they are. But over millions of years there are no final forms and no fixed order: a rock can skip steps, repeat them, or melt back to the start. The atoms in a pebble today may have been seafloor mud, then slate, then granite, many times over.

Also calledgeologic cyclelithologic cycleigneous rocksedimentary rockmetamorphic rock岩石圈循环岩石圈循環

A rollup is the most popular kind of layer 2: it executes transactions on its own faster chain, bundles many of them together, and "rolls them up" into a single compressed batch that it posts to the main blockchain. By doing the heavy computation off the base chain but anchoring the data and the final say to it, a rollup can run far cheaper and faster while still inheriting the base chain's security. This is the design most cited as the practical path through the scalability trilemma.

The crucial trick is that a rollup publishes enough transaction data on the base chain that anyone could, in principle, reconstruct and re-check the rollup's whole history. The base chain therefore guarantees that the data is available and unalterable, even though it never executes those transactions itself. Two families differ in how they convince the base chain the off-chain results are correct: optimistic rollups assume the batch is honest and allow a challenge period in which anyone can submit a fraud proof, while zk-rollups attach a cryptographic validity proof that mathematically demonstrates correctness up front.

Picture an accountant who does a month of bookkeeping on her own desk, then files one signed summary page with the official registry, while keeping every receipt available for audit. The registry does not redo her arithmetic, but it stores her summary permanently and can verify her work if challenged. That is a rollup: most of the labor happens off to the side, but the truth is nailed down on the chain everyone already trusts.

Also called卷叠捲疊

A rotary encoder is a small sensor that watches a spinning shaft and reports how far it has turned. Every robot joint, wheel, and motor needs to know its own angle — otherwise the robot is moving blind, like trying to point at something with your eyes shut. The encoder answers the question "how much have I rotated?" by reading marks on a disk that turns with the shaft; often the disk's pattern blocks and unblocks a tiny beam of light, though some encoders read magnetic or electrical patterns instead.

There are two main kinds, and the difference matters. An incremental encoder only counts steps as the shaft turns — it sends out a tick for each small slice of rotation, so the robot adds the ticks to track movement. It is cheap and precise, but it has no memory: switch the power off and on, and it has no idea what angle it is at until something tells it. An absolute encoder, by contrast, gives each position its own unique code, like every spot on the dial having its own house number. The moment you power it up, it already knows exactly where the shaft is sitting.

The tradeoff is the usual one between cost and convenience. Incremental encoders are simpler and cheaper, so they are everywhere, but they need a known starting point — many robots do a little "homing" wiggle at startup to find it. Absolute encoders cost more and are a bit more complex inside, but they never lose their place, which is exactly what you want for a robot arm that must come back online knowing its real pose without flailing around to recalibrate.

Also calledshaft encoder编码器轴角编码器

A rotation matrix is a tidy grid of nine numbers — three rows by three columns — that captures an orientation, that is, exactly how a body is turned. The cleanest way to read it is column by column: each of its three columns tells you where one of a frame's axes is now pointing after the turn. Stack those three answers side by side and the little grid holds the whole rotation, no angles or wraparound to fuss over. Hand a robot this grid and it knows precisely which way the gripper, the camera, or the whole body is facing.

The same grid is also a machine that re-aims arrows. Multiply a position vector by a rotation matrix and out comes that same vector seen after the rotation — or, just as usefully, the same physical point's numbers translated from one frame into another. This is the everyday workhorse move of spatial robotics: a cup that the camera reports as up-and-to-the-left becomes, after one multiply by the right rotation matrix, a direction the arm can actually steer toward. Apply two rotations in a row by multiplying their matrices together, and you can chain turns as cleanly as following directions step by step.

Not just any nine numbers will do. A genuine rotation matrix is orthonormal — its three columns are each exactly one unit long and all dead perpendicular to one another — and, on top of that, right-handed (its determinant is +1, which rules out mirror flips). Together those conditions are exactly what makes it turn things without stretching, squashing, skewing, or mirroring them. Lengths and angles survive untouched; a cube stays a cube, only spun. That well-behaved family of matrices is what mathematicians call SO(3), the special orthogonal group, which is just a formal name for 'all the honest 3D rotations'. Its great virtue is reliability; its mild cost is using nine numbers to pin down something that only truly needs three, which is one reason quaternions are often preferred when memory or smoothness matters.

Also calleddirection cosine matrixDCM方向余弦矩阵旋轉矩陣

Once placement has parked every cell in its spot on the silicon, routing is the step that actually draws the metal wires joining them — the physical interconnect that carries each signal from a driving pin to the pins it feeds. Picture a city where all the buildings are already built and you now have to lay every road and pipe connecting them, except you can't just pave at street level: a chip stacks many metal layers on top of each other (often a dozen-plus), and to keep wires from crashing into each other, neighboring layers run in alternating preferred directions — one layer mostly horizontal, the next mostly vertical, like a multi-storey road grid where each floor only runs one way. The lowest, thinnest layers handle short, dense local hops; the higher, thicker layers carry the long cross-chip hauls and power.

Routers do this in two passes because solving it all at once would be hopeless. First, global routing carves the die into a coarse grid of rectangular tiles and decides, for each net, roughly which tiles it should pass through and how many wires want to cross each tile boundary — a capacity-planning sketch that flags where too many wires are fighting for too little room (congestion) before a single real wire exists. Then detailed routing commits to the exact geometry: it snaps each net onto specific routing tracks and legal segments on each layer, obeying the foundry's width and spacing rules so the result will pass DRC. Whenever a wire has to move from one layer to another — say from a horizontal layer up to a vertical one — the router drops a via, a tiny conductive plug through the insulation that stitches the two layers together; a long signal may climb up several layers and back down through a whole stack of vias on its journey.

Vias and the metal itself are not free: each adds resistance and capacitance, so a path forced onto thin lower layers or pushed through many vias gets slower, which is exactly why routing can make or break the timing that placement and clock-tree synthesis set up earlier. After routing finishes, the tool extracts the real resistance and capacitance (RC) of these drawn wires and re-runs static timing analysis on the actual geometry — the first time your timing reflects physical wires rather than estimates — followed by DRC and LVS checks before the layout heads toward tapeout.

Also calleddetailed routingglobal routingwire routinginterconnect routing详细布线全局布线繞線

Picture the wires on a chip as cars and the metal layers as a stack of one-way streets, each street striped into a fixed number of parallel lanes called routing tracks. Routing congestion is a traffic jam: in some region of the floorplan, more nets want to pass through than there are lanes to carry them. The router can't widen the road, so the overflowing wires either take a long detour around the jam or, if there's truly no path, get left unconnected. It is the single most common reason a placement that looked fine actually can't be routed.

To measure it, the router overlays the die with a coarse grid of small tiles (global-routing cells), and on each tile boundary it compares supply, the number of tracks crossing that edge after subtracting blockages and pre-routes, against demand, the number of nets that want to cross. Wherever demand exceeds supply you get overflow, and the tool paints those tiles as a congestion hotspot. Detours then cost you real silicon: longer wires mean more resistance and capacitance, more vias, more delay, and so congestion quietly turns into timing and signal-integrity problems even when nothing is outright shorted.

The root cause is almost always upstream, in placement. Cramming cells too tightly, clustering pin-dense or high-fanout logic, or letting macros form narrow channels all concentrate wire demand into one spot. That's why congestion is estimated early, during placement via a quick trial (global) route, and only finally resolved during global and detailed routing. The usual cures work on the placement, not the wires: lower the local cell density, add cell padding or placement blockages near the hotspot, run congestion-driven placement, or restructure the offending nets, then re-route and re-check.

Also calledcongestionrouting hotspot布线热点繞線熱點

The rule of law is a simple but radical idea: nobody is above the law — not the president, not the police, not the richest person in town. The same rules apply to everyone, they're known in advance, and they're enforced the same way every time. Picture a referee who calls fouls by the rulebook no matter which team is winning, even if the team owner is shouting from the sidelines.

Why does this matter so much? Because the alternative is rule by whim — where a powerful person can lock you up, seize your home, or break a promise simply because they feel like it. When the law binds the rulers too, ordinary people can plan their lives, sign contracts, and speak freely, trusting that the rules won't change overnight to crush them.

A common misunderstanding is that the rule of law just means having lots of laws, or obeying whoever's in charge. It's the reverse: a dictator who passes cruel laws and exempts himself is the very opposite. What counts is that the law is public, applied equally, and stands above the people who wield power — including those who wrote it.

Also called法治原则supremacy of law

A runtime is the engine that actually runs your code. Your source files are just text until something reads them and brings them to life — Node.js runs JavaScript on a server, the browser runs it on a page, and the JVM runs Java. The runtime is the stage your program performs on.

Knowing which runtime you're targeting matters: the same JavaScript can have different abilities in Node.js than in a browser, because each provides its own surroundings and built-in features.

'Runtime' also means a moment in time. Errors split into ones caught early — at 'compile time', before the program runs — and ones that only surface 'at runtime', while it's actually running and a bad value finally trips it up.

Also callednode.jsjvmexecution environmentat runtime
S

The salience network is a set of brain regions that work together as your built-in alarm system, constantly scanning everything happening inside and outside your body and flagging whatever suddenly matters. Most of what hits your senses is unimportant background — the hum of a fan, the feel of your shirt — and you tune it out. But when something jumps out, a phone buzzing, a sharp pain, your name spoken across a noisy room, this network lights up and says, in effect, this one is worth your attention right now. Salient just means standing out, and that is exactly the network's job: deciding what stands out.

Its two main hubs sit deep in the front and sides of the brain — the anterior insula and a strip called the anterior cingulate cortex — and they pull together signals from your senses, your emotions, and your body's inner state, like a racing heartbeat or an empty stomach. Once the salience network has spotted something important, it acts like a switchboard operator: it hands control to whichever other large brain network is needed next. If you need to focus and act, it brings the task-focused attention system online; if the moment calls for daydreaming or remembering, it lets the mind-wandering system take over. By detecting what matters and then flipping the brain between these modes, it helps you respond to a changing world instead of being flooded by everything at once.

Because it sits at this control point, the salience network is a major focus of research into conditions where attention and self-awareness go awry. Differences in how it works have been linked to anxiety, depression, addiction, and disorders like schizophrenia and frontotemporal dementia, where the line between what is and is not important can become blurred or misfire.

Also calledSNventral attention network腹侧注意网络腹側注意網路

Saltatory conduction is the clever trick a nerve fiber uses to send its electrical signal much faster: instead of crawling smoothly down the whole length of the fiber, the signal leaps from one small gap to the next, like a stone skipping across water. The fiber here is an axon, the long cable-like tail a neuron uses to carry its message. Most fast axons are wrapped in a fatty insulating sleeve called myelin, much like the plastic coating on an electrical wire. But that sleeve is not one continuous tube; it comes in segments, with tiny bare gaps between them. Those exposed gaps are the nodes of Ranvier, and the word saltatory comes from the Latin for to leap, because the signal effectively jumps from node to node.

Here is why the jumping works. The nerve signal itself is an action potential, a brief spike of electricity that a neuron generates and passes along. To regenerate that spike, the axon needs special pores in its membrane called ion channels, which let charged particles rush in and out. Crucially, these channels are crowded almost entirely at the bare nodes, while the myelin-wrapped stretches have very few. Under each myelin segment the electrical charge slides through quickly and passively, losing a little strength, and then at the next exposed node a fresh burst of channels fires to rebuild the spike at full power. Because the slow, effortful regeneration step happens only at the widely spaced nodes rather than at every point along the fiber, the signal covers ground far faster and using far less energy than it would in a bare, unmyelinated axon.

Also calledjumping conductionsalt­atory propagation盐跳式传导鹽跳式傳導

Sampling is the act of looking at a continuous, ever-changing signal and writing down its value only at evenly spaced instants — like a strobe light freezing a spinning wheel, or a security camera that snaps one frame every so often instead of filming continuously. Between snapshots you simply don't know what the signal did; you trust that the dots are close enough together to connect back into the original curve. Each tick of a sample clock tells a sample-and-hold circuit to grab the analog voltage right now and freeze it just long enough for the rest of the system (usually an ADC) to measure it.

The catch is the one rule analog engineers never get to forget: you must sample faster than twice the highest frequency present in the signal. That threshold is the Nyquist rate, fs > 2·fmax. Sample too slowly and a fast wiggle gets misread as a slow one — the energy 'folds' down and reappears as a phantom low-frequency tone that was never there. This is aliasing, and it is the audio equivalent of a wagon wheel that appears to spin backward in a film: the true motion is too fast for the frame rate, so your eye invents a slower, wrong one. The damage is permanent, because once a high tone has disguised itself as a low one, no later processing can tell the impostor from a real low-frequency signal.

Because aliasing can't be undone in the digital world, real designs put an analog anti-aliasing filter before the sampler to scrub out everything above fs/2 first — you fix it with a continuous-time filter, not with math after the fact. Get the rate right and the discrete dots faithfully represent the original; get it wrong and you've quietly recorded a lie. Sampling decides when you look; quantization (rounding each captured value to the nearest level) decides how finely you can describe what you saw.

Also calledsamplediscrete-time samplingNyquist sampling采样取樣

A real-world signal, like the wobble of a robot's joint or the sound of a motor, changes smoothly and continuously. But a computer cannot store something continuous; it can only take snapshots. The sampling rate is how many of those snapshots it grabs each second, measured in hertz (Hz). Sampling at 1000 Hz means the sensor's value is recorded a thousand times per second. Think of it like the frame rate of a video: more frames per second capture fast motion more faithfully, while too few frames make a spinning wheel look frozen or backward. The sampling rate sets the ceiling on how quickly a robot can notice change, so a fast-twitching balance sensor needs a much higher rate than a slow temperature reading.

There is a precise law for how fast is fast enough. The Nyquist limit says you must sample at more than twice the highest frequency present in the signal; sample any slower and fast wiggles do not just get blurred, they get disguised as slow ones that were never there. This false impostor is called aliasing, and it is the same illusion that makes wagon wheels appear to spin backward in films. Once aliasing has happened it is impossible to undo, because the genuine fast signal and the fake slow one look identical in the recorded data. So engineers either choose a sampling rate comfortably above twice the fastest motion they care about, or place a low-pass filter ahead of the sampler to strip out frequencies that are too high to capture honestly.

Also calledsample rateNyquist limit采样频率取樣頻率奈奎斯特极限

Sampling-based planning is a family of methods for finding a path through a space that is far too vast to examine point by point. The space in question is the robot's set of all possible poses — every combination of joint angles or positions it could strike — which for an arm with several joints is a huge, many-dimensional region impossible to map out square by square. Instead of carving that whole region into a fine grid, a sampling-based planner throws down random poses like darts on a board, keeps the ones where the robot would not crash into anything, and gradually stitches these scattered safe poses into a network it can travel along.

The reason this works so well is that it sidesteps the curse of dimensionality — the explosion in size that happens when you try to grid up a space with many dimensions. A grid that is fine enough to be useful would need astronomically many squares once you have six or more joints, but a handful of well-placed random samples can capture the shape of the free space without ever enumerating it. Each new sample is checked for collisions and, if safe, connected to nearby samples by short links that are themselves checked to be collision-free, so the network only ever contains motions the robot can actually make.

The trade-off is that randomness gives up some guarantees. A sampling-based planner is usually probabilistically complete, meaning that if a path exists it will eventually be found given enough samples — but 'eventually' is not 'immediately', and on any single run it may return no path even when one is there, or return a path that is valid but not the shortest. The two best-known members of this family are the probabilistic roadmap, which builds a reusable map of the whole space, and the rapidly-exploring random tree, which grows a single tree outward from the start toward the goal.

Also calledrandomized motion planning随机运动规划隨機運動規劃

A satellite glial cell is a small support cell that wraps tightly around the body of a sensory nerve cell in a ganglion — a cluster of nerve cell bodies that sits just outside the brain and spinal cord, in the peripheral nervous system (the network of nerves reaching the rest of the body). Picture a single nerve cell body as an egg yolk, and a thin sheet of these flattened cells forming the snug shell around it. Several satellite glial cells usually team up to enclose one nerve cell body completely, leaving only a razor-thin gap between them.

Sealing off each nerve cell that way is not just packaging — it lets the satellite cells act as careful gatekeepers and caretakers. They soak up leftover chemical signals and stray potassium that the nerve cell releases when it fires, keeping the tiny pocket of fluid around it balanced so it can fire cleanly again. They also feed the nerve cell nutrients and shield it from harmful substances. Because they hug the cell so closely, what they do directly shapes how strongly and how often that sensory neuron signals.

These cells matter most when something goes wrong. After an injury or in long-lasting (chronic) pain, satellite glial cells become activated: they change shape, multiply, and start releasing inflammatory molecules that make the nearby sensory neurons more excitable and quicker to fire. This cross-talk can turn an ordinary touch into pain, which is one reason researchers study satellite glial cells as a target for treating persistent pain.

Also calledSGCperineuronal satellite cell卫星细胞衛星細胞

The scalability trilemma is the observation that a blockchain seems able to deliver only two of three prized qualities at once: scalability (handling many transactions cheaply and quickly), security (resisting attacks even from well-funded adversaries), and decentralization (running on many independent participants rather than a powerful few). Push hard on any one corner and the other two tend to suffer. It is the central design tension that shapes almost every modern blockchain project.

The squeeze comes from a simple fact: in a classic blockchain, every full node re-checks and stores every transaction. That redundancy is exactly what makes the network secure and decentralized, because no single machine has to be trusted. But it also caps throughput at the speed of an ordinary computer, since adding more nodes does not let the system do more work in parallel. The obvious fix, asking each node to do more, quietly raises the cost of running a node until only big data centers can keep up, and decentralization erodes.

Think of it like a town that votes on every decision by a full show of hands. The process is wonderfully trustworthy and open to all, but painfully slow. Speed it up by letting a small committee decide, and you have traded away the openness that made the vote trustworthy in the first place. Most cutting-edge work, from layer-2 systems to sharding, is really an attempt to bend this trilemma, getting more throughput without quietly sacrificing the security or openness that gives a blockchain its value.

Also calledblockchain trilemma区块链三难困境區塊鏈三難困境

Scan matching is how a robot figures out how far it has moved by comparing two snapshots of its surroundings taken a moment apart. Each snapshot — a scan — is a fan of distance readings from a laser or depth sensor, basically a dotted outline of the nearby walls and objects. If the robot has shifted forward and turned a little, the second outline will look like the first one slid and rotated by exactly that amount. Scan matching is the act of finding that slide-and-turn: the single movement that makes the new outline settle neatly on top of the old one.

Picture two photocopies of the same floor plan on tracing paper. You nudge one sheet across the other and spin it gently until the lines overlap as closely as you can get them. The amount you nudged and the angle you spun it is your answer. A robot does the same with numbers: it tries different small shifts and rotations, scores how well the two scans agree for each guess, and keeps the one that lines them up best. That winning shift-and-rotation is the robot's estimated motion since the last scan.

This matters because it gives a robot a way to track its own movement from what it sees, instead of trusting wheel counts alone — which slip and lie on smooth or bumpy floors. Stacking these scan-to-scan estimates over time traces out the robot's path and helps build a map, making scan matching a workhorse inside LiDAR SLAM and many depth-camera systems. Its weakness is sameness: in a long bare hallway, every scan looks alike, so there is no clear way to tell how far you slid along it, and the estimate gets shaky.

Also calledscan registration扫描配准掃描配準

A schema is the blueprint of your data: it spells out what tables exist, what fields (columns) each one has, what type of value goes in each field, and the rules they must follow. It's the shape your data agrees to take before you store a single row.

Say you have a users table — the schema declares that every user has an id (a number), an email (text, and it must be unique), and a created_at (a date). Try to save a user with no email, or a price of 'banana' where a number belongs, and the database politely refuses. That guardrail is the schema doing its job.

A good schema is quietly powerful: it catches mistakes early and keeps your data trustworthy. Changing it later (a 'migration') is real work, so it's worth a little thought up front.

Also calleddata modeltable definitionstructure

Schizophrenia is a serious brain condition in which a person's sense of what is real comes apart from the world other people share. Imagine a radio that mostly works, but every so often it picks up voices from a station that isn't really broadcasting, scrambles the signal, or convinces the listener that the static is a secret message meant just for them. Someone with schizophrenia may hear voices no one else can hear (a hallucination), hold firm beliefs that are not true and cannot be argued away, such as being spied on or controlled (a delusion), and have thoughts and speech that jump around or stop making sense to others (disorganized thinking). It is not a 'split personality,' despite the name, and it is no one's fault — it is an illness of how the brain processes and filters information.

These dramatic symptoms, called psychosis, often come in episodes, while quieter, longer-lasting changes can also appear: pulling away from people, losing motivation, flat emotion, and trouble with memory and focus. Schizophrenia usually first shows up in the late teens or twenties, and researchers think it grows out of a mix of genes and life experiences that nudge brain development off course, along with imbalances in chemical messengers — especially dopamine, the signal involved in attention and reward. There is no cure yet, but medicines that calm an overactive dopamine system, together with therapy and steady social support, can quiet the worst symptoms and help many people live full lives. Early treatment tends to lead to better outcomes.

Also calledpsychotic disorder精神分裂思覺失調

A Schwann cell is a helper cell that lives in your peripheral nerves — the wiring that runs out beyond your brain and spinal cord into your limbs, skin, and organs. Neurons send their signals down long, thread-like tails called axons, and a Schwann cell's main job is to wrap itself tightly around one short stretch of a single axon, coiling around it many times like electrical tape spun around a wire. That fatty wrapping is called myelin, and it insulates the axon so the nerve signal can leap quickly from one bare gap to the next instead of crawling along every inch. The gaps between neighboring Schwann cells are the spots where the signal jumps, which is what lets a stubbed toe register almost the instant it happens.

Because each Schwann cell covers only one small segment, a long axon is sheathed by a whole chain of them lined up end to end, each tending its own patch. (This is the peripheral counterpart of the oligodendrocyte, the cell that does the same insulating work inside the brain and spinal cord — but one oligodendrocyte wraps many axons at once, while a Schwann cell devotes itself to just one.) Beyond insulating, Schwann cells nourish and protect the axon, and they shine when a nerve is injured: after a cut or crush, they clear away the debris of the broken fiber and form living tunnels that guide the regrowing axon back toward its target. This is a big reason peripheral nerves can heal and reconnect, while nerves inside the brain and spinal cord usually cannot.

Also calledneurolemmocyteperipheral myelinating glia神经膜细胞神經膜細胞

A screw axis is a beautiful little fact about how solid objects move: any way you can pick up a rigid object and set it down somewhere else — no matter how complicated the move looks — can always be described as a single twist around one straight line, possibly combined with a slide along that same line. Think of how a wood screw goes into a plank: it spins and, at the very same time, advances forward, and both happen around and along one shared axis. That axis is the screw axis. The surprising claim, known as Chasles' theorem, is that every rigid motion in 3D — even a clumsy reposition of a chair across a room — is secretly just one such screw move.

Why does robotics care? Because it turns messy motion into one tidy package. Instead of separately tracking how much something rotated and how much it shifted, you name one line in space (the screw axis), say how fast it turns around that line, and say how much it travels along it. The ratio of forward sliding to turning is called the pitch, exactly like the pitch of a real screw thread: a high pitch means lots of slide per turn, a pitch of zero means pure rotation with no advance, and an infinite pitch means pure straight-line sliding with no turn. Wrapping rotation and translation together this way makes the math of moving robot arms and joints far cleaner.

This idea is the backbone of a powerful style of robot kinematics. Each joint of a robot arm — whether it spins or slides — can be written as its own screw axis, and the whole arm's motion becomes a chain of screws applied one after another. Engineers like this because a single rotating-and-sliding line captures what would otherwise take a clutter of separate numbers, and it connects neatly to twists, which describe the instantaneous velocity of a body in the same screw-shaped language.

Also calledscrew motion螺旋运动旋量

Search-and-rescue robotics is the use of robots to go into the wreckage of a disaster — a collapsed building, a mine, a flooded basement, a burning structure — to find trapped people and size up the danger, so that human rescuers do not have to risk their lives blindly. These robots come in several shapes for several jobs: small tracked or snake-like crawlers that wriggle deep into gaps in rubble too tight and unstable for a person; drones that fly over a flattened neighborhood or a wildfire to map the damage from above; and waterproof machines that probe flooded tunnels. Each carries cameras, microphones, and often sensors for heat or carbon dioxide, the telltale signs that a living person is breathing somewhere in the dark.

The whole point is to send a machine where it is too cramped, too poisoned, or too likely to collapse for a human to safely go. After an earthquake, every hour matters and aftershocks can bring a ruin down on whoever crawls inside; a robot threading the gaps can spot a survivor and report exactly where to dig, sparing rescuers from tunneling on a hunch. The conditions, though, are merciless for the robot itself: there are no tidy hallways, only jagged concrete, dangling wire, dust, smoke, water, and pitch dark, and radio signals often cannot punch through the debris, so the robot may be on a tether or must act with little contact from its operator. Most such robots are still teleoperated — a trained person steers from just outside the danger zone — but they are steadily gaining the autonomy to navigate the chaos with less hand-holding.

Also calleddisaster roboticsSAR robots灾难救援机器人搜寻与救援机器人

The second law of thermodynamics says that, left to itself, the world always slides toward more disorder, never less. Energy spreads out, heat flows from hot things to cold things, and the universe never tidies itself back up on its own.

You see it every day. A hot cup of coffee always cools down to room temperature — it never sits there and spontaneously gets hotter while the room gets colder. Heat moves from warm to cool on its own, but never the reverse unless you spend energy (like a fridge running on electricity) to force it.

Scientists measure this 'spread-out-ness' with a quantity called entropy. In an isolated system — one nothing gets in or out of — entropy can stay the same or grow, but it can never shrink. That one-way rule is also why no engine can be perfect: some energy always escapes as waste heat, and you never get it all back as useful work.

Also calledentropy lawlaw of entropy2nd law of thermodynamics熵增定律熵增加原理
See alsoentropy

A secondary source is a later account that studies an event from the outside — written by someone who wasn't there, working from the traces the event left behind. Think of a historian's book about the French Revolution: the author never stood in a Paris street in 1789, but has read the letters, decrees, and newspapers of people who did, and woven them into a story that explains what happened and why. It sits one step removed from the event itself.

This matters because secondary sources are where raw evidence becomes understanding. A pile of old letters tells you little until someone gathers, compares, and interprets them — sorting the reliable from the doubtful, spotting patterns, and connecting causes to consequences. Most of what we casually "know" about the past actually reaches us this way: through textbooks, documentaries, and scholarly articles, not from the original documents.

The common trap is treating a secondary source as the plain truth, when it's really one historian's argument. Two careful scholars can read the same primary evidence and reach different conclusions, because every account is shaped by the questions asked and the era it was written in. So a good reader checks where a claim comes from — and remembers that today's secondary source can become tomorrow's primary one, when future historians study how our own age thought.

Also calledsecondary literaturesecondary account二手文献二手史料二手文獻

A seed phrase is a short list of ordinary words — usually twelve or twenty-four of them — that serves as the human-friendly master backup for a crypto wallet. Behind the scenes, a private key is a long, unmemorizable string of random data. A seed phrase encodes that same randomness as a sequence of plain words drawn from a fixed dictionary, turning something impossible to write down by hand into something you can copy onto paper and read back without error.

The phrase is not just a backup of one key; it is the seed from which all of a wallet's keys are grown. A wallet feeds the phrase into a standard one-way calculation that deterministically produces every private key, address, and account it manages. That is why the same words can restore your entire wallet on a brand-new device: anyone starting from the identical phrase rebuilds the identical set of keys, every time, exactly. The order of the words is part of the secret — shuffle them and you get a different, useless wallet.

Because the phrase regenerates everything, it is the single most sensitive thing a wallet holder possesses. Whoever can read those words can recreate the wallet and move every asset in it, and there is no authority that can reverse such a transfer or issue a replacement. This is why the standard advice is to write a seed phrase on paper or metal, store it offline somewhere safe, and never type it into a website, photograph it, or share it with anyone.

Also calledrecovery phrasemnemonic phrase助记词助記詞

Selective attention is the brain's ability to spotlight one thing and turn down everything else. At any moment your senses are flooded with far more than you could ever handle at once — dozens of sounds, sights, smells, and feelings all arriving together. Rather than drown in this flood, your brain picks out the one stream that matters right now and pours its processing power into that, while letting the rest fade into the background. The classic example is the 'cocktail party' effect: in a crowded, noisy room you can lock onto a single friend's voice and follow what they're saying, even though a dozen other conversations are just as loud. The other voices don't disappear — your brain is quietly filtering them down so the one you care about can come through clearly.

Think of it like a spotlight on a dark stage. The light can fall on one actor and make them sharp and bright, while everyone else stands in shadow; and you can swing that spotlight around to whatever you choose. Attention works the same way: it both boosts the signal you're focused on and dampens the distractors competing for your notice. This isn't free — focusing hard on one thing genuinely costs you elsewhere, which is why you can completely miss something obvious (a person in a gorilla suit walking through a scene) when your attention is locked onto a different task. The brain pulls this off with help from regions like the prefrontal cortex, which sets the goal of what to focus on, and the thalamus, a relay station near the brain's center that helps gate which sensory signals get amplified and which get turned down.

Selective attention matters because it is the doorway to almost everything else your mind does. What you attend to is what you tend to remember, understand, and act on — the unattended flood mostly washes past without leaving a trace. It is why you can read a book on a noisy train, why a sudden flash of your own name across the room can yank your focus away, and why distraction (from a buzzing phone to a wandering mind) feels so costly. Studying how this filter works also helps explain conditions where it breaks down, such as the difficulty staying on one task in attention disorders, or the way some sensory experiences feel overwhelming when the brain cannot turn the background down.

Also calledfocused attentionselective focus聚焦注意聚焦注意

Self-supervised robot learning is when a robot generates its own training answers from the act of interacting with the world, instead of waiting for a human to label everything by hand. The trick is that physical action automatically reveals an outcome: if the robot tries to grasp a cup and the cup ends up in its gripper, the world itself has just stamped that attempt as a success, with no person needed to say so. The robot poses itself a question by acting, and reality hands back the answer for free.

This matters enormously because hand-labeling is a great bottleneck of robot learning. Teaching a robot the old way means people painstakingly marking which grasps were good, which paths were safe, which objects were which — slow, costly, and quickly exhausted. Self-supervision turns the robot's own day-to-day fumbling into an endless, automatically labeled lesson book: every poke, push, grasp, and step becomes a labeled example of what that motion does, gathered while the robot simply keeps trying. A robot can even invent useful practice tasks for itself, like predicting what it will see after it moves and then checking against what it actually sees.

The reward and the catch are two sides of one coin. Because the labels come for free, a robot can collect mountains of them and keep improving without an army of human annotators — but the labels are only as honest as the signal the robot uses to judge itself. If success is defined sloppily, the robot will happily learn the wrong lesson, mastering a goal nobody actually wanted. Designing clean, trustworthy self-checks is therefore the real art of self-supervised robot learning.

Also calledself-supervision自监督自我監督學習

Semantic memory is your storehouse of plain facts and general knowledge about the world, the kind of thing you simply know without remembering when or where you learned it. That Paris is the capital of France, that a triangle has three sides, that lemons are sour, that a dog is a kind of animal, all of this lives in semantic memory. Unlike a memory of your last birthday party, these facts feel free-floating: you know them, but they are not stamped with a particular time, place, or personal moment.

Scientists contrast it with episodic memory, which is the replay of specific experiences you personally lived through, your first day of school, the smell of last night's dinner. Both are forms of long-term memory you can put into words, but they behave differently. Episodic memories are tied to a moment and can fade or blur; semantic facts, repeated and reused over a lifetime, often grow sturdier and outlast the original experiences that taught them. Interestingly, many semantic facts probably began as episodes: you may have learned that fire is hot during one specific burn, but over time the personal scene drops away and only the bare fact remains.

Semantic memory is spread widely across the brain's outer layer, the cortex, rather than parked in one spot, with meaning-rich regions in the temporal lobes acting as hubs that tie related ideas together. The hippocampus, a seahorse-shaped structure deep in the brain, helps lay down such knowledge at first, but well-worn facts gradually become independent of it, which is why someone with hippocampal damage may struggle to learn new things yet still recall that water is wet and that two plus two is four.

Also calledgeneral knowledge memoryfactual memory事实记忆事實記憶概念记忆概念記憶
See alsohippocampus

Semantic segmentation is the vision task of coloring in every single pixel of an image with a label that says what kind of thing it belongs to. Instead of drawing a loose box around a car, the system decides, for each tiny dot in the picture, whether it is road, sky, car, tree, or person — producing a kind of paint-by-numbers map laid exactly over the photo. Where object detection gives you a rough rectangle, segmentation traces the true silhouette of everything, right down to the jagged edge of a leaf or the curve of a curb.

The word 'semantic' just means the labels are about meaning, the categories of things, not individual identities. So in a street scene, all the cars get painted the same 'car' color and all the pedestrians the same 'person' color; semantic segmentation does not bother to separate car number one from car number two. (Telling apart individual instances is a related but distinct task called instance segmentation.) This pixel-perfect map of categories is exactly what a self-driving car wants when it needs to know precisely where the drivable road ends and the sidewalk begins.

Like other modern vision tasks, semantic segmentation is done with neural networks trained on images where humans have painstakingly hand-labeled every pixel. The network takes the whole image in and outputs a label for each pixel at once. For robots, this dense understanding feeds navigation (what is ground I can roll on?), manipulation (where exactly is the surface of this object?), and safe operation around people and obstacles.

Also calledpixel labeling像素级分类像素標註

Semantic versioning is a shared convention for writing version numbers as three parts — MAJOR.MINOR.PATCH, like 2.4.1 — where each part promises something specific about what changed. The point is that the number itself tells you whether an update is safe to take or likely to break you.

Read it left to right. A bump in PATCH (2.4.1 → 2.4.2) means a backward-compatible bug fix: safe. A bump in MINOR (2.4.1 → 2.5.0) adds new features but doesn't break the old ones: still safe. A bump in MAJOR (2.4.1 → 3.0.0) is the loud one — it warns 'I removed or changed something; your code might need fixing'.

That's also what those little symbols in your manifest mean. A caret '^1.2.3' says 'newer 1.x is fine, but never jump to 2.0' — it trusts everything except a major bump. A tilde '~1.2.3' is stricter: 'only newer patches of 1.2, please'. They let you collect safe fixes automatically while staying clear of the changes that bite.

Also calledsemverversion numbermajor.minor.patchcarettilde

Semantics is the study of meaning in language — what words and sentences actually say, as opposed to how they sound or how they're built. If you point at a chair and ask "What does this word mean?", you're already doing semantics: you're asking what idea the noise "chair" reaches out and grabs in the world.

It matters because meaning is where language does its real work, and it splits into two layers. Word meaning asks why "dog" picks out furry barking animals and not the moon. Sentence meaning asks how those pieces combine: "the dog bit the man" and "the man bit the dog" use the very same words, yet mean opposite things — so meaning clearly lives in the arrangement too, not just the parts.

A common mix-up is to lump semantics together with grammar. But a sentence can be perfectly grammatical and still mean nothing sensible — "colorless green ideas sleep furiously" breaks no rules of structure, yet semantically it's nonsense. Meaning and well-formedness are two different questions, and semantics is the one about meaning.

Also calledmeaning in languagelexical and sentential meaning语义語義意义研究

A semiconductor is a material that can't quite decide whether to conduct electricity or block it — and that indecision is exactly what makes it useful. A metal like copper always conducts; glass never does. Silicon sits in between, like a doorway whose width you can dial: nudge it one way and current pours through, nudge it back and the door slams shut. You don't get a fixed material so much as a knob.

The trick is doping: stir in a few atoms of phosphorus per million and you flood silicon with spare electrons (n-type); use boron instead and you create electron-hungry "holes" (p-type). Both shifts are minute but precisely controlled. Press an n-type and a p-type region together and you get a junction that passes current one way and refuses it the other — a diode. Stack such junctions with a third terminal to steer them, and you get a transistor: a switch with no moving parts, the building block from which every chip is made.

Also calledsilicondoping半导体半導體

The sense–plan–act paradigm is the basic recipe most robots follow over and over: first sense the world, then plan what to do, then act on that plan — and immediately start sensing again. It is the robot's heartbeat. A robot does not do this once; it runs the whole loop many times a second, so that as the world changes, its actions keep up. You do the same when crossing a street: you look (sense), choose a moment to step (plan), walk (act), then look again.

Each stage leans on a different part of the robot. Sensing comes from cameras, touch, distance, and position sensors that turn the messy real world into numbers. Planning is the thinking part, where a program or a learned model decides what to do — this is why many people say sense–think–act instead; it is the same idea. Acting sends commands to the motors so the body actually moves. The faster and more reliable this loop, the smoother and safer the robot behaves.

There is a famous alternative. Classic robots tried to build a full plan from a complete model of the world before moving, which was slow and brittle when reality did not match the model. Reactive approaches flipped this around: link sensing almost directly to action, like a reflex, so the robot responds instantly without much deliberation. Most modern robots blend the two — quick reflexes for safety, slower planning for goals — which is why the simple three-step picture is best seen as a starting point, not the whole story.

Also calledsense-think-act感知—思考—执行感知—思考—執行SPA

Bias and drift are two kinds of lie that a sensor tells, even when nothing is wrong with it. Bias is a steady, constant offset: a bathroom scale that always reads two kilograms heavy, or a robot's spin sensor that quietly reports a tiny turn even while the robot sits perfectly still. The error is always there, always the same size. Drift is the sneakier cousin — a slow wandering of that offset over time. The scale that reads two kilos heavy this morning might read three kilos heavy by tonight as it warms up. The reading creeps, even though the thing being measured never changed.

These small errors matter enormously when a robot adds many readings together over time, a trick called integration. An accelerometer or gyroscope inside an inertial measurement unit doesn't sense position directly; the robot must keep summing tiny motion readings to guess where it is now. But every reading carries that little bias, and summing thousands of them per second piles the error up fast. A gyroscope that is off by a hair will, after a minute of adding up, insist the robot has rotated a noticeable amount when it has not. This is why a phone's step counter or a drone's pure motion-tracking slowly loses its way — the bias has been compounding the whole time.

Engineers fight back in three ways. They measure the bias while the sensor is known to be still and subtract it off (calibration). They model how the drift creeps and predict it. And, most powerfully, they bring in a second sensor that does not drift away over time — like GPS or a camera watching fixed landmarks in the room — to gently correct the wandering one. That blending of an accurate-but-noisy sensor with a smooth-but-drifting one is exactly the job of sensor fusion and state estimation.

Also calledbias and driftzero offset零偏偏移漂移

Sensor calibration is the tune-up that teaches a sensor's raw output to mean the right thing. Straight from the factory, a sensor reports numbers in its own private units, and those numbers are almost never perfectly honest: a force sensor might read 102 grams when nothing is pressing on it, or a temperature probe might run two degrees hot. Calibration fixes this by showing the sensor known, trusted references and recording how its readings differ. A simple bathroom scale, for example, is calibrated by placing a certified 10-kilogram weight on it and adjusting until it actually displays 10 kilograms. The result is a small mapping the robot applies to every future reading to convert raw output into a true physical value.

Most calibrations correct two basic flaws. One is offset, also called bias: a constant amount the reading is shifted, fixed by zeroing the sensor when the true value is known to be zero. The other is scale, or gain: the reading grows too fast or too slowly compared with reality, fixed by comparing against a known nonzero reference so the slope comes out right. Richer sensors like cameras and LiDAR need fancier calibration that also pins down lens distortion, mounting angles, and timing. Calibration matters because even a flawless, low-noise sensor is useless if its numbers are systematically wrong; and since sensors drift as they age and warm up, robots are often recalibrated periodically rather than only once.

Also calledcalibration标定校正

Sensor fusion is the art of combining several imperfect sensors into one estimate that is better than any of them alone. Every sensor has a weakness: a camera sees rich detail but is blinded by darkness; a GPS knows roughly where you are but jitters by several meters; an inertial sensor reacts instantly to motion but slowly drifts off course. Fusion is like a jury weighing several flawed witnesses — no single account is fully trusted, but pooled together they converge on a story far closer to the truth than any witness could give on their own.

The clever part is that fusion does not just average the sensors; it weighs each one by how much it can be trusted at that moment, and lets them cover each other's blind spots. The fast inertial sensor fills the gaps between slow GPS updates, while the GPS keeps pulling the drifting inertial sensor back onto course — each one's strength patches the other's weakness. A self-driving car blends camera, radar, LiDAR, and wheel sensors this way so that fog blinding one of them does not blind the whole car. Your phone fuses its accelerometer, gyroscope, and magnetometer just to know which way is up and which way you are facing.

Doing this well is really a question of estimation under uncertainty, and the mathematical machinery that does it — the Kalman filter, particle filters, and their relatives — lives in the world of state estimation. So think of sensor fusion as the everyday name for the goal (turn many noisy senses into one clean belief about the world), and state estimation as the deeper toolbox of methods that actually pulls it off.

Also calledmulti-sensor fusiondata fusion数据融合多传感器融合

Sensor noise is the random, unwanted jitter that contaminates every real measurement. If you hold a perfectly still robot and read its distance sensor a hundred times, you will not get the same number a hundred times; you will get a cloud of slightly different values scattered around the true one. That scatter is the noise. It comes from unavoidable physics, such as the thermal rattling of electrons inside the circuit, tiny vibrations, electrical interference from nearby motors, and the act of rounding a smooth real-world value into discrete digital steps. Noise is different from a steady error: noise wobbles unpredictably from one reading to the next, whereas a fixed offset (called bias) leans every reading the same way.

Engineers usually describe noise by its size, often as a standard deviation, which says how widely the readings spread, and they assume it averages out to zero over time. That assumption is powerful, because it means you can fight noise by averaging many readings or by smoothing the signal, trading a little speed for a steadier number. Why does it matter? A robot that believed every noisy spike would twitch, brake, or steer at phantom obstacles. Knowing the noise level lets the robot weigh its sensors sensibly, leaning on a quiet, trustworthy one and discounting a jittery one. This idea of attaching an honest uncertainty to each measurement is the foundation of sensor fusion and the filters that keep robots steady.

Also calledmeasurement noise测量噪声量測雜訊

Sensory adaptation is the way your senses quietly turn down the volume on anything that stays the same. When a stimulus — a smell, a sound, the press of your clothes against your skin — holds steady and unchanging for a while, the detector cells that first noticed it (called receptors) gradually fire fewer and fewer signals, until you barely notice it at all. Think of walking into a bakery: the warm bread smell is overwhelming at first, but a few minutes later it has faded into the background, even though the air is just as full of it. The smell did not weaken; your response to it did.

This happens because nervous systems care far more about change than about steadiness. A constant, unchanging signal carries almost no new information, so it would be wasteful to keep shouting it to the brain — so the receptors and their pathways dial themselves down, freeing up attention for whatever shifts next. The shrinking of the response over time is the adaptation. It is also why you stop feeling your wristwatch, your glasses, or a steady background hum, yet snap to attention the instant any of them change — the watch slipping, the hum stopping. Your senses are built to flag the new, not to dwell on the familiar.

Also calledneural adaptationreceptor adaptation感受器适应神经适应感受器適應神經適應

Sensory feedback is giving the user a felt sense of what a BCI-controlled device is doing — how hard it is gripping, where it is, what it is touching. Without it, controlling a robotic hand is like trying to pick up an egg with a numb, gloved hand while looking away: possible, but slow and clumsy.

Our own movements rely on a constant stream of touch and position signals coming back from the body; that quiet feedback is what makes reaching and grasping feel effortless. A BCI that only sends commands out, with nothing coming back, leaves the user controlling blind and leaning entirely on their eyes.

So engineers add a return channel. They might stimulate the sensory cortex or a nerve to create a sense of touch, or use vibration on the skin as a stand-in. The closer that artificial feeling comes to the real thing, the more natural and precise the control becomes.

A sensory receptor is a specialized cell, or the tip of a nerve fiber, that is tuned to notice one particular kind of signal from the world or from inside your body — light, sound vibrations, a touch on the skin, warmth, a smell, a taste, or a stretch in your muscles. Think of it like a doorbell button built for just one finger: the right kind of stimulus presses it, and nothing else does. Each receptor is the very first step in turning something happening around you into a message your brain can read.

When the matching stimulus arrives, the receptor changes its electrical state and passes that change along to the nervous system, where it can grow into nerve signals that travel to the brain. Because different receptors answer to different things — and there are huge numbers of each kind — your body can tell apart a faint whisper from a shout, a cool breeze from a hot stove, or a gentle press from a sharp pinch. This sorting at the very edge of the body is what lets the brain build a rich, detailed picture of the world.

Also calledreceptor cellsensory ending感受器感受器

Sensory transduction is the moment your nervous system translates the outside world into its own private language. The world speaks to you in many forms of energy — the pressure of a hug, the warmth of sunlight, the rippling air of a song, the chemicals floating off a cup of coffee. But your brain only understands one thing: tiny electrical signals passing between nerve cells. Sensory transduction is the conversion step that turns a physical or chemical stimulus into that electrical language. Think of it like a microphone: sound is just moving air, yet a microphone changes those vibrations into an electrical signal a computer can use. Your sense organs are full of biological microphones doing exactly this, each tuned to a different kind of energy.

The conversion happens in specialized cells called sensory receptors, and it usually works through a small molecular gate. When the right stimulus arrives, it nudges a tiny channel in the cell's outer skin to open, letting charged particles called ions flow in or out. That flow changes the cell's electrical charge, producing a small voltage shift called a receptor potential — a gentle electrical ripple whose size grows with how strong the stimulus is. If the ripple is big enough, the cell fires off full nerve impulses that race toward the brain. This is why each sense uses a different trick for the same goal: light bends a light-sensitive molecule in the eye, sound bends microscopic hairs in the ear, and odor molecules clip onto matching receptors in the nose — yet all of them end in the same currency of electrical signals the brain can read.

Also calledstimulus transductionreceptor transduction感觉转换感受器换能感覺轉換

Neurons are the body's signaling cells, and two of the most important kinds are named by which way their messages travel. A sensory neuron carries information inward — it picks up what is happening (a touch on the skin, a sound, a smell, a stretch in a muscle) from special detector endings called receptors and ships that news toward the brain and spinal cord. A motor neuron does the opposite: it carries commands outward, from the brain and spinal cord to the parts that actually do something — your muscles and glands, collectively called effectors. In short, sensory neurons are the body's reporters bringing news in, and motor neurons are the body's messengers carrying orders out.

You can think of it as a one-way street running in two lanes. The inbound lane (sensory, also called afferent, meaning carrying toward) lets you feel the world; the outbound lane (motor, also called efferent, meaning carrying away) lets you act on it. A simple loop ties them together: you touch a hot stove, a sensory neuron rushes the warning in, your spinal cord and brain decide, and a motor neuron fires the order back out so your hand muscles yank away. Almost everything you do — flinching, walking, blinking, talking — depends on this constant back-and-forth between cells that bring information in and cells that send action out.

Also calledafferent neuronefferent neuron传入神经元传出神经元傳入神經元傳出神經元

Think about a combination lock on a gym locker. Spinning to "12" doesn't open it — what happens next depends on what you dialled before. The lock remembers where it is in the sequence. A plain doorbell is the opposite: press it and it rings, let go and it stops, with no memory of whether you rang it a minute ago. Sequential logic is the digital version of that combination lock. Its outputs depend not only on the inputs right now but also on a stored memory of what came before — the circuit's state. Contrast this with combinational logic, whose output is purely a function of its present inputs, like the doorbell.

What lets a sequential circuit "remember" is a piece of state held in flip-flops or registers — tiny one-bit (or many-bit) memories. And here's the part that makes the whole thing tick, literally: that memory updates only on the edge of a clock signal, the shared heartbeat that marches a clock domain forward in lock-step. On each rising (or falling) clock edge, each clocked flip-flop snapshots its input and holds that value steady until the next edge. (A flip-flop with an enable simply keeps its old value when it isn't enabled.) So a sequential circuit doesn't drift continuously; it advances one discrete step at a time, from state to state, on the beat.

In practice you design sequential logic as a loop: the current state plus the current inputs feed a block of combinational logic that computes two things — the outputs, and the next state, which gets latched back into the flip-flops on the next edge. That structure is exactly a finite-state machine, and it's how counters, traffic-light controllers, communication protocols, and processor control units all get built. The flip side is that the clock now sets your speed limit: all the combinational logic between two flip-flops must settle within one clock period, which is the whole reason engineers obsess over the critical path and timing.

Also calledclocked logicstateful logicstate-holding logic时序逻辑時序邏輯

A serial manipulator is a robot arm built like a human arm: a single line of rigid segments joined end to end, one after another, from a fixed base out to a free tip. Each joint stacks on top of the previous one, and at the very end sits a hand or tool. The word serial just means the parts are arranged in series — in one unbroken sequence — so the chain has a clear start (the base) and a clear finish (the tip), with nothing looping back around. This is by far the most common shape for industrial and everyday robot arms.

Its great strength is reach and flexibility. Because every joint adds another way to bend, a serial arm can swing the tool through a large region of space and approach a target from many different angles — handy for welding inside a car body, painting a curved panel, or reaching past obstacles. Commanding it is also fairly natural: each joint can be moved more or less on its own, and the motions simply add up from the base outward toward the tip.

The trade-off comes from that same stacked design. Each joint and motor has to support the weight of everything beyond it — all the later segments, the tool, and whatever it carries — so the parts near the base must be bulky and strong, while small errors in the early joints get amplified at the far tip, like a tiny wobble at your shoulder turning into a big sway at your fingertip. That makes serial arms a bit less stiff and less precise than the looped designs, but their convenience keeps them everywhere.

Also calledserial armopen-chain manipulator串联机器人串聯機器人

A series-elastic actuator is a motor with a deliberate spring placed between it and the thing it moves. Normally a motor connects to its load through stiff gears, so it can shove hard but feels harsh and rigid. The SEA breaks that rigid chain on purpose by inserting a spring in line — the motor pushes the spring, and the spring pushes the load.

That small change buys two big gifts. First, force becomes easy to measure and control: how far the spring is stretched tells you exactly how much force is passing through, so the robot can push with a chosen gentleness instead of guessing. Second, the spring cushions shocks — if the limb suddenly hits something, or something hits it, the spring soaks up the jolt that would otherwise hammer the gears, much like a car's suspension absorbs a pothole.

The cost is that the spring makes the joint a bit softer and slower to respond, so it is a trade between brute precision and graceful, safe force. SEAs are popular in legged robots, walking aids, and machines that work close to people, where feeling and forgiving contact matters more than being stiff as a rock.

Also calledSEA串联弹性驱动器串聯彈性驅動器

Robots are often split into two big families by the job they do. An industrial robot works in production, usually inside a factory, doing the same heavy, precise, or repetitive task over and over, welding car bodies, lifting pallets, packing boxes, painting parts. A service robot works for people in everyday life, outside the factory floor, things like a robot vacuum cleaning your living room, a delivery robot rolling down the sidewalk, a robot arm helping in surgery, or a friendly machine guiding visitors in a museum.

The difference is not really about how the robot is built, both might use motors, sensors, and a gripping arm, but about where it lives and who it is around. Industrial robots typically run fast and strong in a controlled, fenced-off space, kept away from people for safety, doing one well-defined job at high speed for years. Service robots have to cope with messy, unpredictable human environments, soft carpets, stairs, curious children, changing furniture, so they tend to move more gently, sense their surroundings more carefully, and put safety and easy interaction ahead of raw speed and force.

Service robots are themselves usually divided into professional service robots, which do paid work such as cleaning hospitals, inspecting pipes, or assisting doctors, and personal or domestic service robots, which help in the home with chores or companionship. The line between the families can blur, but the core question is simple, is this machine built to power a factory, or to live and work alongside ordinary people?

Also calledservice robotindustrial robot服务机器人工业机器人服務機器人工業機器人

A servomotor is a motor that knows where it is and corrects itself to get where you want it. Plain motors are told only "spin this fast" and hope for the best; a servomotor is told "go to this exact angle" or "hold this exact speed," and it keeps checking and adjusting until it is right. It is a motor packaged with a built-in sensor and a controller that work in a constant loop — command, measure, correct — to hit and hold a target.

That loop is the heart of it, and engineers call it closed-loop control. A position sensor (an encoder) reports where the shaft actually is; the controller compares that against where it was told to be; and the difference, the error, is used to drive the motor harder or ease it off until the error shrinks to nothing. If something shoves the load off target, the servomotor pushes right back to restore the commanded position. This self-correcting habit is exactly what an ordinary motor lacks and what makes a servo trustworthy for precise, repeatable motion.

Servomotors come in two everyday flavors. The little hobby servo — the kind in a model plane's wings or a beginner robot arm — is a small geared motor that swings to a commanded angle and holds it. The industrial servomotor is a powerful, precise machine, usually a brushless motor with a high-resolution encoder, that drives factory robots, CNC machines, and robot joints to exact positions, speeds, or forces. Either way, the defining idea is the same: feedback turns a dumb spinning motor into one that hits its mark and refuses to drift off it.

Also calledservo伺服马达伺服電機闭环电机閉環馬達

A set is simply a bunch of things gathered together and treated as a single object. Picture a grocery bag: it holds an apple, a banana, and a carton of milk, and you can talk about "the bag" as one thing while still asking what's inside. The things inside are its members, or elements — and a set cares only about which things belong, not the order you list them or how many times you say them. {apple, banana} and {banana, apple} are the very same set.

Two questions unlock almost everything: Is this thing in the set? (membership) and How many things are in it? (size). From these humble beginnings, mathematicians build everything else — numbers, functions, shapes, even infinity itself can be defined in the language of sets. That's why sets are called the foundation of modern math: it's the bedrock that the whole cathedral stands on.

One surprise trips people up: a set's members must be distinct, so repeats simply don't count — {1, 1, 2} is just {1, 2}. And a set can even be empty, holding nothing at all, like an empty bag that's still a perfectly good bag. The empty set is real, useful, and there's exactly one of it.

Also calledcollection元素集合

The set-point is the value you want the machine to reach and hold — the target. On a thermostat it is the temperature you dial in, say 21 degrees; for a cruise control it is the speed you choose, say 100 km/h; for a robot arm it is the exact spot you want the gripper to be. It is simply the answer to the question, 'where should this end up?'

The error signal is the gap between that target and where the machine actually is right now, found by subtracting: error equals set-point minus measured value. If you want 21 degrees and the room is 18, the error is +3 — too cold, push heat up. If the room is 23, the error is −2 — too warm, the sign flips and the heat backs off. This single number is the whole nervous system of feedback control: its size tells the controller how hard to act, and its sign (plus or minus) tells it which direction to push. When the error reaches zero, the machine is exactly on target and, ideally, stops correcting.

Thinking in terms of error is what lets one controller chase any goal: it never needs to care about the absolute numbers, only about shrinking the gap. Change the set-point and the error instantly recomputes, so the very same machinery that holds a room at 21 degrees will, the moment you redial it to 25, see a fresh positive error and start heating again — no new program required.

Also calledsetpointreferenceerror目标值参考值目標值

Picture passing a note to a friend on a moving carousel — you have to hold it out steady just before they sweep past, and keep holding it for a beat after, or the hand-off fumbles. A flip-flop grabbing data on a clock edge works the same way. Its data input can't be changing at the very moment the clock ticks; it needs a quiet window with the value held stable for a short stretch before the edge (the setup time) and for another short stretch after the edge (the hold time).

More precisely, setup time is the minimum interval the data must already be settled ahead of the active clock edge, and hold time is the minimum interval it must stay put once the edge has passed. Together they fence off a small no-fly zone around the edge during which the input must not move. The numbers are tiny — often tens of picoseconds in a modern process, and hold times can even be slightly negative — and they come from the internal delays of the sampling element that has to capture and lock the value.

Violate either bound and the flip-flop may latch the wrong logic level, or worse, hang half-way between 0 and 1 in a metastable state — an unstable balance that takes an unpredictable time to topple one way or the other, which can ripple bad data downstream. Keeping every path inside these bounds is exactly what static timing analysis checks. The setup check is the max-delay test: data must arrive early enough, so it sets the ceiling on clock frequency. The hold check is the min-delay test: data must not arrive too soon and race through to be captured by the same edge it was launched against — and, crucially, it doesn't depend on the clock period at all. The breathing room left over on either check is the slack.

Also calledsetup/holdsetup time and hold timedata-valid windowtiming window建立时间与保持时间建立時間與保持時間

Sharding is a way to scale a blockchain by splitting it into several parallel pieces, called shards, each handling its own slice of transactions and data, so the network as a whole can process much more work at once. It directly attacks the bottleneck behind the scalability trilemma: that in a classic chain, every node must process everything. With sharding, each node only fully handles one shard, so the total capacity grows as you add shards, without asking any single machine to do more.

The term is borrowed from large databases, where a giant table is divided across many servers so no one server holds the whole thing. The hard part on a blockchain is keeping the shards secure and in agreement: if validators are spread thin across many shards, a single shard could be captured by an attacker who would never have the strength to take over the whole chain. Real designs counter this by randomly shuffling validators between shards and by giving every shard a shared anchor of security, so no slice can be quietly overpowered.

Imagine one overwhelmed clerk who must personally record every transaction in a country, against a system of regional offices that each handle their own area while reporting up to a national registry. The regional offices work in parallel and the country gets far more done, as long as the central registry keeps them honest and consistent. Sharding is a powerful idea, and modern designs increasingly pair a lighter form of it (sharding the data, not the execution) with rollups, so the base chain mainly guarantees that data is available for layer-2 systems to build on.

Also called分片分片技術

A shell is the program that reads the commands you type and runs them. When you open a terminal and see a blinking prompt, that prompt is the shell waiting for you to tell it what to do — list these files, copy that one, start this server.

It's called a shell because it's the outer layer wrapped around the operating system's core: you talk to the shell, and the shell asks the kernel to do the actual work. Common ones are bash and zsh (the default on modern Macs); they look almost identical and do the same job.

A shell is more than a command-runner — it's a little programming language. You can save a series of commands in a script, use variables and loops, and pipe one command's output straight into the next. That's where a lot of a developer's day-to-day power comes from.

Also calledcommand linecommand-line interpreterbashzshterminal prompt

Suppose you want to break a big number back into the two primes that were multiplied to make it. For a number with hundreds of digits, the best classical methods we know would take longer than the age of the universe, and the whole security of RSA encryption rests on that difficulty. Shor's algorithm is a quantum recipe that does this dramatically faster. Its clever move is to not attack factoring head-on. Instead, it turns the question into a different one: pick a number and repeatedly raise it to higher powers, modulo the number you want to factor, and that sequence eventually repeats with some period. If you can find that period, a bit of ordinary arithmetic hands you the factors.

Finding the period is where the quantum part earns its keep. The algorithm prepares a register holding many inputs at once and applies the quantum Fourier transform, which is built so that the amplitudes of wrong answers cancel out while amplitudes that reveal the period reinforce each other. When you measure, you are very likely to read out a value that points to the period. It is not that the machine 'tries every power and checks them all in parallel' — nothing useful would survive measurement if it did. The speedup comes from arranging interference so the periodic structure of the problem becomes loud and everything else goes quiet. For this specific, highly structured task, that gives an exponential advantage over every classical method we currently know.

Also calledShor factoring algorithm肖尔因数分解算法秀爾因數分解演算法Shor 算法

Your memory is not one single storeroom — it works more like a desk and a filing cabinet. Short-term memory is the desk: a small, easily disturbed space where you hold a thought for just seconds to a minute, like keeping a phone number in your head long enough to dial it. It holds only a handful of items at a time, and the moment you get distracted or stop repeating them, they slip away. Long-term memory is the filing cabinet: a vast, stable archive that can keep information for hours, years, or a lifetime — your childhood home, how to ride a bike, the meaning of a word. The two differ in three plain ways: how long they last, how much they can hold, and how easily they are lost.

Why the difference? Holding something briefly mostly relies on neurons firing in an ongoing pattern, like a tune you keep humming so you don't forget it — stop humming and it's gone. Storing something for the long haul instead requires the brain to physically rebuild itself: the connections between neurons, called synapses, grow stronger and even change shape, and new proteins are made to lock the change in place. This slower process of turning a fragile, fresh trace into a sturdy lasting one is called consolidation, and a seahorse-shaped structure deep in the brain, the hippocampus, helps move important experiences from the desk into the cabinet, often while you sleep.

This is why you can remember a song from twenty years ago yet blank on a name you heard ten seconds ago. The fleeting kind is meant to be temporary scratch paper for whatever you are doing right now; the lasting kind is the permanent record. A short-term memory only becomes a long-term one if the brain decides it matters and does the extra work to file it — which is exactly why repetition, attention, and a good night's sleep make new learning stick.

Also calledtransient vs durable memoryworking memory vs lasting memory短期记忆与长期记忆瞬时记忆与持久记忆短時記憶與長期記憶

Signal filtering means reshaping a sensor's stream of numbers to keep the part you want and suppress the part you don't. The most common kind in robotics is the low-pass filter, whose name says exactly what it does: it lets low frequencies (the slow, meaningful trend) pass through while holding back high frequencies (the fast, jittery noise riding on top). Picture a robot driving over gravel: its true heading drifts gently, but the raw compass reading also shakes rapidly from every bump. A low-pass filter calms that shake so the robot follows the smooth underlying direction instead of flinching at each pebble.

The simplest version is just a running blend: each new output is mostly the previous smoothed value plus a small pinch of the latest raw reading, so sudden spikes get diluted while steady trends survive. This is closely related to a moving average, and it works because genuine signals usually change slowly whereas noise flips back and forth quickly. The catch is a tradeoff every roboticist learns: the harder you smooth, the cleaner the number but the more it lags behind reality, like watching the world through a slightly delayed window. Filter too gently and noise leaks through; filter too aggressively and the robot reacts late. Choosing where to draw that line, the cutoff frequency, is the everyday art of filtering, and richer techniques like the Kalman filter extend the same idea using a model of how the robot actually moves.

Also calledlow-pass filtersmoothing低通滤波器低通濾波器平滑

Picture trying to hear a friend talk at a party. How well you understand them doesn't depend only on how loudly they speak (the signal) — it depends on how loud they are compared to the background chatter (the noise). Signal-to-noise ratio is exactly that comparison for an electrical signal: the power in the thing you care about divided by the power in everything you don't. A big number means a clear, easy-to-read signal; a small number means your signal is drowning. Because the two can span an enormous range, we almost always quote SNR in decibels, where SNR(dB) = 10·log10(signal power / noise power). Every 10 dB is a tenfold jump in power ratio, so 60 dB means the signal carries a million times more power than the noise.

In analog and mixed-signal chips, SNR is the ultimate quality yardstick because the noise it measures never goes away — it is the hiss built into the physics: thermal noise from every resistor (power density 4kTR), flicker (1/f) noise that dominates at low frequencies, and, the moment you digitize, quantization noise from rounding each sample to the nearest code. That noise floor sets the smallest signal you can still tell apart from the mud, while the largest signal the circuit can handle without clipping sets the ceiling. The span between those two — your dynamic range — and the effective resolution you can claim are both capped by SNR. You can amplify a weak signal all you want, but if you amplify the noise right along with it, the ratio doesn't budge; what matters is keeping the noise small at the very front, where the signal is born.

This is why SNR is the headline number on a data converter's datasheet. For an ideal N-bit analog-to-digital converter fed a full-scale sine wave, the only noise left is quantization, and the best SNR you can ever reach works out to about 6.02·N + 1.76 dB — roughly 6 dB, or one bit of resolution, for every bit you add. A 12-bit converter therefore tops out near 74 dB. Real circuits always land below that ideal because thermal and flicker noise, jitter, and distortion pile on top, so the measured SNR tells you how many bits are genuinely useful rather than merely printed on the package.

Also calledSNRS/N ratio

Sim-to-real transfer is the practice of training a robot's skill inside a computer simulation and then getting it to work reliably on the actual physical robot. A simulation is a detailed video game of the robot and its world, where physics is computed instead of lived. Training there is irresistible: it runs faster than real time, costs nothing in worn motors or broken parts, and is perfectly safe, so a robot can attempt a task millions of times overnight — far more practice than a real machine could survive. Sim-to-real transfer is the bridge that carries the skill learned in that fast, cheap dream-world out into the slow, unforgiving real one.

The whole challenge is that the bridge tends to wobble, because the simulation is never a flawless copy of reality — that mismatch is the reality gap. A policy that aced the simulator can flounder on hardware when real friction, sensor noise, time delays, and slightly-off motor responses break the assumptions it quietly relied on. So sim-to-real is less a single step and more a discipline: techniques that make the transfer hold up. The leading one is domain randomization, where you scramble the simulation's settings — friction, lighting, masses, delays — across countless runs so the robot meets such a wild variety of fake conditions that the real world looks like just one more variation it already knows how to handle.

Other tactics help too: tightening the simulator's physics so it matches measurements from the real robot, mixing in a little real-world data to fine-tune the skill, and adding the kinds of noise and imperfection on purpose so the policy never grows brittle. When it works, sim-to-real transfer is what lets a legged robot or a dexterous hand learn something genuinely hard in simulation and still pull it off on the first real try.

Also calledsim2realsim-to-real仿真迁移

Simultaneous localization and mapping, almost always shortened to SLAM, is a robot solving two tangled problems at the very same time: drawing a map of a place it has never seen, while also keeping track of where it is on that very map. Imagine being dropped, blindfolded, into a pitch-dark unfamiliar house and asked both to sketch its floor plan and to mark your own position on it as you feel your way around. You have no map to locate yourself against, and no fixed position from which to draw the map — yet you must produce both, each leaning on the other.

That circular dependency is the whole difficulty, and it is also the trick that makes SLAM possible. As the robot moves, it spots features around it — a corner here, a pillar there — and notes how far and in which direction each one lies. From those bearings it can both refine where it thinks it is and pin those features onto its growing map. The two estimates prop each other up, like two people steadying themselves by leaning together: a slightly better idea of your position sharpens the map, and a slightly better map sharpens your idea of your position. The catch is that small errors creep in with every step and quietly accumulate, so the map can slowly warp.

The cure for that drift is a moment SLAM systems prize, called loop closure: when the robot revisits a place it has been before and recognizes it, that recognition snaps the accumulated error back into line and tightens the whole map at once, the way checking your work against a landmark you already trust corrects all the guesses in between. SLAM in its modern forms — using laser scanners in LiDAR SLAM, or ordinary cameras in visual SLAM — is the technology under the hood of robot vacuums, self-driving cars, drones, and the augmented-reality apps that place virtual furniture in your living room.

Also calledSLAMconcurrent mapping and localization同步定位与地图构建即時定位與地圖構建

A single-photon source is a device that, when you ask it to, spits out exactly one photon — one particle of light, no more and no less. That sounds trivial until you try it: a normal laser dimmed way down does not give you one photon at a time, it gives you a random trickle that sometimes sends two photons together and often sends none. For photonic quantum chips, where the photon itself is the qubit, that randomness is fatal. You need a reliable, on-demand supply of clean single photons to feed into the waveguides, beamsplitters, and detectors etched onto the chip, and to send qubits down optical fibers between chips.

There are three main ways people build one. A quantum dot is a tiny man-made speck of semiconductor that traps electrons like an artificial atom; excite it and it relaxes by emitting one photon, then has to be re-excited before it can fire again, which naturally enforces one-at-a-time. A defect center, such as the nitrogen-vacancy color center in diamond, is a single atom-sized flaw in a crystal that behaves the same way. The third route, heralded SPDC (spontaneous parametric down-conversion), is different: a laser passes through a special crystal that occasionally splits one photon into a pair; you detect one of the pair, and that 'click' heralds — announces — that its twin is on its way, so you keep only the photons you have confirmed.

The two metrics that actually matter are efficiency and indistinguishability. Efficiency asks: when I press the button, how often does a usable photon actually arrive at the chip, rather than being lost or absorbed along the way. Indistinguishability asks: are the photons identical enough — same color, same shape, same polarization — that two of them interfere the way quantum optics requires; if they differ even slightly, the quantum logic falls apart. Today's best sources are good but not perfect, and getting high efficiency and high indistinguishability at the same time, repeatably, on a chip you can mass-produce, is still very much an open engineering problem.

Also calledSPSon-demand photon source按需单光子源按需單光子源

Imagine you have to be at the airport gate by 3:00, and you actually stroll up at 2:48. Those twelve spare minutes are your cushion — miss a turn or hit a slow line and you're still fine. In chip timing, slack is exactly that cushion, measured in fractions of a nanosecond: it's how much spare time a signal has when it arrives at its destination compared to the deadline it had to meet.

More precisely, every path between two registers has a required time (the latest the signal is allowed to arrive and still be safely captured on the next clock edge) and an arrival time (when the signal actually shows up after rippling through the logic). For a setup check, slack is just the difference: required minus arrival. Positive slack means the signal beat the deadline with room to spare — the path passes. Zero slack means it arrives at the very last instant. Negative slack means it's late: the data hasn't settled by the time the clock tries to grab it, so the path fails timing and the chip won't run reliably at that clock speed.

Slack is the headline number that static timing analysis reports for every path in the design, and the path with the worst (smallest) slack is the critical path — the bottleneck that sets your maximum clock frequency, whether that worst slack is barely positive or deep in the red. The whole game of timing closure is hunting down negative-slack paths and fixing them: speeding up slow logic, resizing cells, restructuring the path — or, if the target was simply too aggressive, relaxing a timing constraint (which lowers the frequency you're signing off at) until every path lands at zero or above. Engineers talk about the worst negative slack (WNS) for the single worst path and total negative slack (TNS) for the summed shortfall across all failing endpoints.

Also calledtiming slackslack timetiming margin时序裕量時序裕量

SLAM stands for simultaneous localization and mapping — a robot figuring out where it is while also drawing the map of where it is. That job is so big that engineers split it into two halves with a clear division of labour: the front-end and the back-end. The front-end is the part that touches the raw senses. It takes the flood of incoming data — camera frames, laser scans, wheel ticks — and turns it into tidy, meaningful statements like "between this moment and the last, I moved forward about half a metre and turned slightly left," or "I am looking at the same corner I saw five minutes ago." Each such statement is a constraint: a clue about how two positions, or a position and a landmark, relate.

The back-end never looks at a single photo or laser beam. It only sees that pile of constraints from the front-end, and its job is to find the one arrangement of the robot's path and the map that best fits all those clues at once. This matters because the clues quietly disagree: every sensor is a little noisy, errors build up over time, and "I drove forward half a metre" twenty times in a row will never perfectly line up with "I'm back where I started." The back-end is the careful negotiator that nudges every position and landmark a little until the whole story is as consistent as it can be — a big optimization that quietly bends the map back into shape.

The reason for the split is practical: the two halves need completely different skills. The front-end is about perception — recognizing places and matching shapes — and is specific to the sensor you bolted on, so a camera SLAM and a laser SLAM have very different front-ends. The back-end is about mathematics — solving a large system of slightly conflicting equations — and barely cares where the constraints came from. Keeping them apart lets each be designed, swapped, and improved on its own.

Also calledSLAM front endSLAM back end前端与后端前端與後端

Sleep and memory consolidation is the idea that a good night's sleep does not just rest your brain — it quietly finishes the job of learning. When you experience something new during the day, your brain lays down a fresh, fragile trace of it, like writing a note in wet ink. While you sleep, that note gets gone over, copied to a sturdier place, and tidied up, so the memory becomes stronger and easier to recall later. This is why pulling an all-nighter before a test often backfires: the cramming happens, but the brain never gets the offline time it needs to lock the material in.

Here is roughly how it works. During the day, new memories are first captured by the hippocampus, a seahorse-shaped structure deep in the brain that acts like a fast but temporary notepad. During deep, dreamless sleep (called slow-wave sleep), the hippocampus replays the day's events — firing the same patterns of neurons in fast bursts — and gradually hands them off to the cortex, the brain's large outer surface, for long-term storage. In effect the brain transfers files from a small scratchpad to a big hard drive. Different stages of sleep favor different kinds of memory: slow-wave sleep tends to strengthen facts and events, while dream-rich REM sleep helps weave in skills, emotional meaning, and connections between ideas.

Consolidation is not just passive saving — it also reorganizes. As memories are replayed and integrated, the brain strengthens the links that matter, prunes back weaker or redundant connections, and stitches the new information into what you already knew, sometimes revealing patterns or solutions you could not see while awake. That reshaping is why people often wake up with a fresh insight, and why a problem can feel clearer after you have slept on it.

Also calledmemory consolidation during sleepsleep-dependent memory consolidation睡眠中的记忆巩固睡眠依赖的记忆巩固睡眠依賴的記憶鞏固

Sleep homeostasis is your body's built-in pressure gauge for sleep: the longer you stay awake, the more a hidden need for sleep builds up, and a good night's rest is what bleeds that pressure back down. Think of it like thirst. Skip drinking for a while and thirst grows until you finally drink; stay awake for a while and sleep pressure grows until you finally sleep. The word homeostasis just means a system that keeps something in balance by pushing back whenever it drifts too far in one direction — here, the system nudges you toward sleep when you have been awake too long, and lets the pressure ease once you have slept enough.

Scientists picture this as one of two partners that decide when you feel sleepy. The first is this rising pressure that simply tracks how long you have been awake; the second is your roughly 24-hour body clock, which sets a daily rhythm of alertness regardless of how tired you are. You feel most ready for deep sleep when the pressure is high and the clock is also signaling night. One sign that the pressure is real and physical: when people are sleep-deprived, their next sleep is not just longer but deeper, as if the body is paying back a debt all at once. A chemical called adenosine is thought to be part of the gauge — it slowly piles up in the brain during waking hours and is cleared away during sleep, which is also why caffeine, by blocking adenosine, can briefly hide how sleepy you really are.

Also calledsleep pressureProcess Shomeostatic sleep drive睡眠压力睡眠壓力睡眠驱力睡眠驅力

A sleep spindle is a brief burst of fast, rhythmic brain activity that flickers on and off while you are in light, dreamless sleep. If you record the brain's electrical waves through the scalp — a test called an EEG, which draws those waves as wiggly lines on a screen — a spindle shows up as a quick run of tightly packed waves that swells, then fades, lasting only about half a second to a second or two. The shape gave it its name: the cluster of waves grows and shrinks like the bulge of a thread-spinning spindle. These bursts are the signature feature of the second stage of non-dreaming sleep, often called stage N2, the long middle ground you pass through after drifting off but before the deepest sleep.

A spindle is made by a back-and-forth conversation between two parts of the brain. The thalamus, a central relay station that normally passes sensory news up to the wrinkled outer brain (the cortex), starts firing in a tight rhythm, and the cortex echoes it back, so the two trade pulses many times a second for the length of the burst. This is a thalamocortical oscillation — a rhythm bouncing between thalamus and cortex. Spindles are not just background noise: they help screen out the outside world so noises are less likely to wake you, and they appear to help the sleeping brain file away the day's memories, moving fresh experiences into longer-term storage. People who produce more spindles at night tend to remember newly learned material better, and unusually sparse spindles show up in several brain conditions, which is why researchers watch them closely.

Also calledspindlesigma wave纺锤波紡錘波睡眠梭形波

Sleep is not one flat, unchanging state. Across a night your brain travels through several different stages, and it repeats that journey over and over. Scientists sort these stages into two big families. The first is called NREM sleep, short for non-rapid-eye-movement sleep, which runs from a light drowsy doze down into very deep, slow, hard-to-wake sleep. The second is called REM sleep, named for the quick darting eye movements behind your closed lids, and it is the stage where most vivid dreaming happens. Think of it like descending a staircase into deep sleep and then climbing partway back up into a busy dreaming state, again and again.

One full trip through these stages, called a sleep cycle, lasts roughly ninety minutes, so a normal night holds about four to six cycles. The cycles are not all the same, though. Early in the night you spend more time in the deepest NREM stages, the kind that leave you feeling physically restored. As morning approaches the deep stages shrink and the REM periods stretch longer, which is why your most memorable dreams often come right before you wake. Researchers tell the stages apart by reading brain waves on an EEG, a recording of the brain's electrical activity, together with eye movements and muscle tone: deep sleep shows large, slow waves, while REM sleep shows fast, awake-like waves even though the body's muscles go nearly limp.

Also calledsleep cycleNREM and REM sleep睡眠周期睡眠週期非快速眼动睡眠与快速眼动睡眠

The sleep-wake cycle is the daily back-and-forth between being asleep and being awake — the rhythm that pulls you down into sleep each night and lifts you back into alertness each morning. It is not random: your brain runs this pattern on a roughly 24-hour loop, so that, left alone in a cave with no clock, you would still drift into sleepiness and wakefulness at fairly regular times.

Scientists explain the cycle with two cooperating forces, often called the two-process model. The first is sleep pressure: the longer you stay awake, the more a sleep-promoting chemical (adenosine) builds up in the brain, like sand piling up in an hourglass, making you steadily drowsier — and sleep drains it back down. The second is the body clock, a tiny cluster of cells in the hypothalamus (the suprachiasmatic nucleus) that tracks the time of day, mainly using light through your eyes, and tells the body when it should be alert and when it should wind down. When these two line up — high sleep pressure meeting the clock's nighttime signal — you fall asleep easily; when they fight, you get jet lag, insomnia, or the 3 a.m. wakefulness of a night-shift worker.

This matters because the cycle does far more than rest the body. During the sleep portion the brain clears waste, sorts and stores memories, and balances hormones and mood; a healthy, well-timed cycle keeps thinking sharp and the body steady, while a disrupted one is linked to poor focus, weakened immunity, and long-term health problems.

Also calledsleep-wake rhythm睡眠-清醒节律睡眠-清醒節律

Slew rate is the fastest your amplifier's output can change, usually quoted in volts per microsecond. Picture a bucket being filled by a hose with one fixed setting: no matter how urgently you need the water level to jump, it can only rise as fast as that one flow allows. Inside the amplifier the bucket is a capacitor (often the compensation cap, or whatever load hangs on the output), and the hose is a fixed bias current. When the input suddenly demands a big swing, the amplifier dumps all the current it has into that capacitor — and that is all it has. The output then ramps in a straight line at a constant speed, and that maximum speed is the slew rate: SR = I / C.

Here is the part that trips people up: slew rate is a large-signal limit, and it is a different animal from your small-signal bandwidth. Bandwidth (and gain–bandwidth product) tells you how the amplifier behaves for tiny wiggles, where everything stays linear and the math of gm and poles applies. But ask for a big, fast step and the input pair saturates — one side hogs the whole tail current — so the output can no longer track the ideal exponential and instead crawls up that fixed-slope ramp. A part can have plenty of bandwidth on paper yet still slew-limit on large signals, turning a clean sine into a lopsided triangle and adding distortion.

Because SR = I / C, you buy more slew rate by spending more current or shrinking the capacitor you must charge — both of which cost something elsewhere (power, or stability margin). That is why a slewing op-amp is often a sign you are asking one block to be both low-power and fast at full swing, and you cannot have both for free.

Also calledslewingSR

Sliding-mode control is a tough, no-nonsense way to steer a robot that fights back against disturbances and modeling errors by switching its commands very rapidly. The designer first draws an imaginary target line — called the sliding surface — through the space of the robot's possible states. This line is chosen so that once the robot is moving along it, the error is guaranteed to melt away to zero on its own. The controller's whole job is then split into two simple missions: first, drive the system onto that line; second, keep it stuck to the line no matter what the world throws at it.

The clever part is how it stays on the line. The controller constantly watches which side of the surface the robot has drifted to, and flips its push to the opposite direction — hard. If the state strays above the line, it shoves down; if it dips below, it shoves up. This happens so fast that the state effectively skates right along the surface, like a ball bearing trapped in a narrow groove: even if you bump the surface, the ball keeps tracking the groove. Because the corrective push is always large enough to overpower any disturbance inside the assumed bounds, the result is strongly robust without needing a precise model.

The price of that aggressive switching is a buzzing, vibrating motion called chattering — the high-frequency flipping can shake actuators, waste energy, and wear out hardware. Real implementations soften the sharp switch into a smooth, gentler version near the surface (using a thin boundary layer) to trade a tiny bit of robustness for much calmer motion. Sliding-mode control is popular in robotics precisely because it handles nonlinear, uncertain systems — like robot arms with unknown friction — with a simple, dependable rule.

Also calledSMCvariable-structure control变结构控制變結構控制

Slow-wave sleep is the deepest, heaviest stage of ordinary sleep — the part of the night when you are hardest to wake and feel groggiest if someone shakes you out of it. It belongs to a family of stages called non-REM sleep (the quiet, mostly dreamless part of sleep, as opposed to REM sleep, when most vivid dreaming happens). In a standard map of the night it is labelled stage N3, and it usually dominates the first few hours after you fall asleep.

It gets its name from what the brain's electrical activity looks like. If you record brain waves with electrodes on the scalp (a technique called EEG), the busy, fast ripples of waking flatten into slow, tall, rolling waves — called delta waves, with a rhythm of only about one to four cycles per second. Tall (high-amplitude) means the wave swings far up and down; slow means few swings per second. These big, lazy waves appear because huge numbers of neurons fall into step, switching on and off together in a slow chorus instead of chattering on their own.

This deep stage is not just rest — it appears to be when a lot of repair and housekeeping happens. The body releases growth hormone, the brain clears out waste, and freshly learned facts seem to get filed into long-term memory. That is one reason a night cut short on deep sleep can leave you foggy and forgetful, and why young children, who are building brains and bodies fast, spend an especially large share of the night in slow-wave sleep.

Also calleddeep sleepN3stage 3 sleepdelta sleep深睡眠深睡眠N3期N3期

A transistor's real behavior is curvy and nonlinear — push its gate harder and the current it passes bends and saturates rather than tracking in a tidy straight line. That sounds like a nightmare to do math on, until you notice a trick: if you sit the device at a fixed DC operating point (a steady bias of voltage and current) and then only ever wiggle it by a tiny amount, that little patch of the curve looks essentially straight. The small-signal model is exactly that — you zoom way in on the curve right where you're biased and replace the messy nonlinear device with the simple straight-line slope at that one spot. Like approximating a small stretch of a hill by its local tangent: globally curved, locally flat enough to treat with plain linear math.

What the slope gives you are two clean handles. Transconductance gm is how strongly a small input voltage on the gate steers the output current — the slope of current-versus-input — so for a saturated MOSFET it works out to gm = 2*Id/Vov, where Vov is the gate overdrive. Output resistance ro captures the gentler truth that the current isn't perfectly fixed by the gate; it creeps up as you raise the output voltage, and ro is how stiffly the device resists that creep. Together they let you swap the transistor for a controlled current source (gm times the input wiggle) sitting in parallel with a resistor ro, and suddenly the whole amplifier is just a linear circuit you can solve by hand.

Out of those two numbers falls the single most important figure of merit for one device: its intrinsic gain, gm*ro. This is the most voltage gain a single transistor can ever hand you — the gm converts your input wiggle into a current, and that current develops a voltage across the largest load the device itself offers, its own ro. A textbook common-source stage loaded only by ro has a small-signal gain of -gm*ro (the minus sign just means it inverts). Want more gain than one device can give? You stop fighting the math and start stacking or cascading devices, because gm*ro is the ceiling for a single stage.

Also calledsmall-signal equivalent circuitsmall-signal analysislinearized model

A smart contract is a small program stored on a blockchain that runs exactly as written whenever someone calls it. Despite the name, it is not a legal document and there are no lawyers involved; think of it more like a vending machine made of code. A vending machine holds the rules ('insert this much, get that item') and carries them out by itself, with no shopkeeper. A smart contract does the same for digital agreements: it holds the rules and the funds, and releases or moves them automatically when the agreed conditions are met. The problem it solves is having to trust a middleman to follow through.

Because the contract's code and the record of everything it has done live on the blockchain, every participant can read the rules in advance and verify that they ran honestly. Once deployed, a contract usually cannot be quietly altered, so it does what it always said it would. People interact with it by sending transactions that call its functions; the network runs the code, updates the stored balances and data, and records the outcome for all to see. Many contracts can also call one another, so simple pieces snap together into larger systems, the way small apps combine into a bigger service.

Smart contracts matter because they let strangers cooperate without a trusted authority in the middle. They power lending pools, exchanges, digital collectibles, voting, and escrow that hold and pay out money according to public rules rather than a company's promise. The trade-off is that the code is the final authority: if it contains a mistake, the contract will still follow that flawed logic faithfully, so careful design and review really matter.

Also called智能合约智慧合約

A social contract is the idea that a government's right to rule isn't handed down from the heavens or won by the sword — it rests on an unspoken deal among the people themselves. Picture strangers stranded together on an island who agree to live by a few shared rules: nobody signed anything, but everyone tacitly accepts the bargain because life is safer and better inside it than out. That imagined agreement is what makes the rules legitimate rather than mere bossing-around.

It matters because it flips the old question on its head. Instead of asking "why must we obey our rulers?" it asks "what could possibly justify anyone ruling us at all?" — and answers: only our own consent. From that single move flow rights, the duty of governments to serve the governed, and the radical thought that authority which breaks the bargain can rightly be resisted. It is the quiet engine behind "government by the consent of the governed."

Its three great architects disagreed sharply. Hobbes thought life without a state was "nasty, brutish, and short," so people trade nearly all their freedom for an all-powerful sovereign who keeps the peace. Locke insisted the deal is conditional — we keep our rights to life, liberty, and property, and may overthrow a ruler who violates them. Rousseau went further still: the contract binds us to a collective "general will," so that obeying just laws is really obeying ourselves. A common misreading is to treat the contract as a real historical event; it is a thought experiment — a test for whether power is justified, not a dusty document anyone once signed.

Also calledcontractarianismconsent of the governedsocial compact社会契约论社會契約論Du contrat social

The sodium-potassium pump is a tiny protein machine built into the outer skin (the membrane) of nearly every cell in your body. Its full-time job is to bail two kinds of salt particles, called ions, in opposite directions across that skin: it scoops sodium ions out of the cell and hauls potassium ions in. Think of it like a bouncer at a club who keeps shoving one type of guest outside while pulling another type inside, never resting, so the crowd inside and outside stays carefully unbalanced.

This pushing and pulling costs energy, so the pump burns the cell's universal fuel, a molecule called ATP. With each cycle it spends one ATP to throw out three sodium ions and bring in two potassium ions. The point of all this effort is to keep the inside of the cell crowded with potassium and the outside crowded with sodium — a built-up difference called a gradient. That lopsided arrangement is exactly the stored tension a neuron taps into when it fires an electrical signal, the way a wound-up spring stores the energy to snap.

Because the pump runs constantly, it quietly eats up a large share of the body's energy, especially in the brain. If it stops — for example when a cell is starved of oxygen — the carefully kept gradients leak away, the cell swells, and it can no longer send signals. So this humble pump is the unsung battery-charger behind every thought, heartbeat, and twitch of muscle.

Also calledNa+/K+-ATPasesodium pump钠钾ATP酶鈉鉀ATP酶钠泵鈉泵

Soft robotics is the branch of robotics that builds machines out of bendable, squishy materials — rubber, silicone, fabric, gels — instead of the rigid metal and hard plastic we usually picture when we hear the word "robot." Think less of a steel arm and more of an octopus tentacle, an elephant's trunk, or an inflatable pool toy that can curl and squeeze. Many of these robots have no stiff skeleton at all; they move by being pumped full of air or fluid, by pulling on built-in cables, or by materials that change shape when heated or charged, so the whole body deforms in smooth, continuous curves rather than hinging at separate joints.

The reason to go soft is that softness is forgiving. A rigid robot arm that bumps a person can bruise or break a bone, so it must be fenced off and watched; a soft one can press right against you and simply give way, which makes it far safer to work hand-in-hand with people and gentle enough to handle a ripe tomato, a fragile lab sample, or living tissue inside the body. Softness is also wonderfully adaptable: a soft gripper does not need to know an object's exact shape to hold it — it just wraps around and conforms, the way your hand molds itself to whatever you pick up, whether that is a wine glass or a crumpled sock. The trade-off is that soft robots are harder to control precisely and usually weaker than their rigid cousins, because the same bendiness that makes them safe also makes them wobbly, slow, and difficult to steer with pinpoint accuracy.

Also calledcompliant robots柔性机器人软性机器人

Solidity is the most widely used programming language for writing smart contracts on Ethereum and similar networks. Computers ultimately run the tiny, cryptic instructions of bytecode, which are painful for people to write directly. Solidity sits in between as a readable, human-friendly language, a bit like writing a recipe in plain sentences instead of listing every muscle movement. A developer expresses the contract's rules in Solidity, and a tool called a compiler translates that into the bytecode the network's virtual machine actually executes.

Its style deliberately resembles familiar languages used for websites and apps, which lowers the barrier for newcomers. In Solidity you describe a contract's stored data (such as who owns how much), and the functions that read or change it (such as transfer or vote). The language also bakes in ideas special to blockchains: who sent the current call, how much value came with it, and permission checks that block disallowed actions. Once written, the code is compiled and deployed, after which it generally lives on the chain unchanged and open for anyone to read.

Solidity matters because it is the on-ramp to building on smart-contract platforms; the large majority of well-known applications were written in it, and a deep pool of tutorials, libraries, and audited examples has grown around it. Because the code controls real value and usually cannot be edited after deployment, writing it safely is a serious craft, and reusing battle-tested, reviewed building blocks is a common and prudent habit.

Also calledSolidity 语言Solidity 語言

The soma is the main, rounded body of a nerve cell (a neuron) — the bulb in the middle from which everything else sprouts. Picture a neuron as a tiny tree: the soma is the trunk, the thin branches reaching in to catch incoming signals are the dendrites, and the single long cable carrying the signal away is the axon. The soma is the compact hub that holds the cell together and keeps it alive.

Inside the soma sits the nucleus, the cell's control room, which stores the DNA and acts as the master plan for everything the neuron builds. Around it are most of the cell's working machinery, called organelles: the parts that make proteins, package and ship them, and burn fuel to produce energy. So the soma is where the neuron does its housekeeping — manufacturing the materials, energy, and chemical messengers that the dendrites and axon need to do their job.

The soma also helps with signaling. It gathers the many small electrical nudges arriving from the dendrites, sums them up, and if the total is strong enough, it helps trigger a full electrical pulse that races down the axon to the next cell. In short, the soma is both the life-support center and a meeting point where a neuron's incoming signals are pooled before a decision to fire is made.

Also calledcell bodyperikaryon细胞体核周体細胞體核周體

The somatic nervous system is the part of your body's wiring that you can boss around on purpose. When you decide to wave hello, kick a ball, or pick up a cup, this is the system carrying that command from your brain out to your muscles. It is the "voluntary" channel — the one under your conscious control — as opposed to the parts that quietly run your heartbeat and digestion without asking you.

It works as a two-way street. On the outbound lane, nerves carry orders from the brain and spinal cord to your skeletal muscles (the muscles attached to bones that move your body), telling them when to contract. On the inbound lane, the same system delivers conscious sensations from your skin, eyes, ears, and other senses back to the brain — the feel of warm water, the sight of a face, the sound of a doorbell. So it both moves you and lets you knowingly feel the world, which is why it underlies nearly every deliberate action you take.

Also calledvoluntary nervous system随意神经系统隨意神經系統

Somatosensation is the family of senses that tell you what is happening to your body and where your body is. It covers the soft brush of a feather on your arm, the firm squeeze of a handshake, the warmth of a mug or the bite of an ice cube, the sharp sting when you stub a toe, and the quiet, always-on awareness of where your hand is even when your eyes are shut. Sight, hearing, taste, and smell each work through one special organ, but somatosensation has no single organ — its sensors are sprinkled through your skin, muscles, joints, and deeper tissues, covering your whole body like a living touchscreen.

It works through tiny detectors called receptors, each tuned to one kind of event: some fire when the skin is pressed or stretched, some when it gets hot or cold, some only when something is intense enough to cause harm, and some that sit inside muscles and joints to track stretch and angle. When a receptor is triggered, it sends an electrical signal up a nerve, through the spinal cord, and on to the brain, which sorts these incoming streams into the feelings we name — touch, pressure, temperature, pain, and body position. Scientists usually group them into four threads: the sense of touch and pressure (mechanical contact), thermal sense (hot and cold), pain (called nociception, the body's damage alarm), and proprioception (the inner sense of limb position and movement). Together they let you button a shirt in the dark, pull back from a flame before you even decide to, and walk without watching every step.

Also calledbody sensesomatic sensationsomatosensory perception体感體感躯体感觉系统

The somatosensory cortex is the part of the brain that receives the body's sense of touch and position — the warmth of a mug, the pressure on your fingertips, where your limbs are even with your eyes closed. It sits as a band right behind the motor strip, so movement commands and touch sensations are neighbors.

Like the motor cortex, it carries a body map: each patch listens to signals from a particular part of the skin, with sensitive regions like the fingertips claiming extra room. When you touch something, the matching patch of this cortex becomes active.

For BCIs, this is the place to write information back in, not just read it out. By gently stimulating the right spot with tiny electrical pulses, researchers can make a person feel touch on a hand that isn't theirs — giving a robotic prosthetic hand an artificial sense of touch so its user can feel contact and grip, not just see it.

Also calledprimary somatosensory cortexS1体感皮层體感皮層躯体感觉皮层軀體感覺皮層

Space and planetary robotics is the craft of building machines that work where people mostly cannot go — drifting in orbit, or rolling across the surface of another world like Mars or the Moon. These machines include rovers, the six-wheeled science wagons that creep over alien ground taking pictures and poking at rocks; robotic arms on spacecraft and stations that grab, repair, and reposition equipment; and landers that set themselves down gently and dig or drill. They are, in effect, our hands and eyes in places that would freeze, bake, or suffocate a human in minutes.

What makes this work so hard is the brutal setting and, above all, the lag in talking to the robot. A radio signal to Mars can take many minutes each way, so an operator on Earth cannot steer a rover in real time the way you steer a remote-control car — by the time you saw a cliff edge and shouted "stop," the rover would already have driven off it. So these robots must carry enough of their own judgment to inch forward safely on their own, plan a route around a boulder, and stop themselves if something looks wrong, only checking in with Earth now and then. On top of that lag, they must survive radiation that scrambles ordinary electronics, dust that jams moving parts, temperatures that swing wildly between sun and shadow, and the plain fact that no repair crew is coming. Every part is hardened, tested to exhaustion, and designed to fail gracefully, because a single stuck wheel can end a mission costing years and billions.

Also calledspace robotsplanetary rovers太空机器人行星探测车

Spacetime is the single fabric that weaves together the three directions of space (left-right, up-down, forward-back) and the one direction of time into one four-dimensional whole. Instead of treating "where" and "when" as separate questions, relativity treats them as one address — every event has a place and a moment, stitched together.

Here's the surprising part: this fabric is not a fixed, rigid stage. Mass and energy bend it. What we feel as gravity isn't a mysterious pull across empty space — it's objects following the straightest possible path through spacetime that the nearby mass has curved. The Earth circles the Sun because the Sun dents the spacetime around it, like a heavy ball shaping a trampoline.

So when you sit still, you're not really standing on solid, unmoving ground in absolute space. You're resting on a flexible fabric that the planet beneath you is gently warping — and that warp is the gravity holding you down.

Also calledspace-timespacetime continuum4D spacetime时空连续体時空連續體

Sparse coding is the brain's habit of describing each thing it senses using only a small handful of busy neurons while almost all the others stay quiet. Imagine a huge stadium crowd holding up colored cards: instead of everyone flashing their card for every event, only a few dozen people light up for any particular face, sound, or smell — and a different small group lights up for the next one. Because so few are active at once, the exact little pattern that switches on becomes a clean, distinctive 'name tag' for whatever the brain just experienced.

Why bother keeping most neurons silent? It is efficient and clear. Firing a neuron costs energy, so letting only a few spike at a time saves fuel — the brain runs on roughly the power of a dim light bulb. It also makes signals easy to tell apart: when patterns barely overlap, two similar smells or two similar faces don't get smudged together, and later cells can read out 'which few are on' with very little confusion. Researchers see this in real brains — for example, in the visual cortex and in the parts of the fly and mouse brain that sort odors — and the same idea is borrowed in machine learning, where models are nudged to explain data with as few active features as possible.

Also calledsparse representationsparse population code稀疏表征稀疏表徵

A spatial filter combines the readings from many electrodes into a smaller set of cleaner "virtual" channels. The idea is that no single electrode sees the brain signal you care about by itself — each one picks up a bit of that signal plus a lot of shared noise. By adding and subtracting electrodes in just the right proportions, you can make the signal of interest stand out while the noise that they all share cancels away.

A homely analogy: if everyone in a noisy room hums the same background drone, you can subtract a neighbour's recording from yours to wipe out the drone and leave the voice you actually want. Spatial filters do the same trick across the scalp or cortex, mixing channels to amplify a target and suppress what is common to all of them.

There is a whole family of them, from simple fixed rules to learned ones. The common average reference subtracts the average of all electrodes; the Laplacian subtracts a ring of nearby neighbours to sharpen a local source; and CSP learns a custom mix tuned to tell two mental states apart. Cleaner channels mean an easier job for everything downstream.

Also calledspatial filtering空间滤波器空間濾波器

SE(3) is the complete collection of all rigid motions in three-dimensional space — every possible combination of turning an object and sliding it to a new place, gathered together as one family. If SO(3) is the family of all pure rotations, SE(3) is the bigger family that also lets the object travel: it pairs each rotation with a translation. In short, every rigid-body transformation a robot could ever perform is a single member of SE(3).

It is a group for the same comfortable reasons rotations are: do one rigid motion, then another, and the combined result is still just one rigid motion — still a member (closure). Every motion can be reversed (turn back and slide back, its inverse), and standing perfectly still counts as a member too (the identity). So SE(3) is a self-contained world of "placements," where chaining moves together never takes you anywhere illegal.

This is why SE(3) is often called the natural home of pose. A homogeneous transformation matrix — the compact bundle of rotation plus position that robots pass around — is exactly one point in SE(3). When an engineer says a robot's arm "moves through SE(3)," they simply mean its hand travels from one full placement (position and orientation together) to another, smoothly visiting members of this one big family along the way.

Also calledSE(3)group of rigid motions刚体运动群剛體運動群

SO(3) is the name mathematicians give to the complete collection of all possible 3D rotations — every way you could spin or tilt an object in three-dimensional space, gathered into one neat family. The name looks intimidating, but the idea is friendly: it is simply the "set of all turns," the way the set of all whole numbers is a tidy family of countable things. Any orientation a rigid object can have is one member of this family, and that is all SO(3) really catalogues.

What makes it a group, in the mathematical sense, is that turns combine sensibly. Do one rotation, then another, and the overall result is still just some single rotation — still a member of the family (this property is called closure). Every rotation can be undone by turning back the opposite way (its inverse), and doing nothing at all (no turn) counts as a member too (the identity). Because of these clean rules, SO(3) behaves like a self-contained world of rotations where you can never accidentally fall out by combining members.

In practice, the rotation matrices that engineers use to represent orientation are exactly the inhabitants of SO(3): each valid rotation matrix is one point in this space, and every point in this space is a valid rotation. Knowing that orientations live in this special, curved space (rather than on a flat number line) is what warns roboticists that averaging or interpolating rotations needs more care than averaging ordinary numbers.

Also calledSO(3)rotation group旋转群旋轉群

Special relativity is Einstein's 1905 idea that the laws of physics work exactly the same for everyone moving at a steady speed in a straight line — and that light always travels at the same speed, no matter how fast you or the light source are moving.

That second part sounds harmless, but it forces something strange: to keep light's speed fixed for everyone, time and space themselves have to bend. A fast-moving clock ticks slower than yours (time dilation), and a fast-moving object is squashed shorter along its direction of travel (length contraction). Both effects are real, just far too tiny to notice at everyday speeds.

It's called 'special' because it covers only the simple case: steady, unaccelerated motion, with no gravity in the picture. The fuller theory that adds gravity and acceleration came a decade later and is called general relativity.

Also calledSREinstein's special theory of relativityspecial theory of relativity

A speech neuroprosthesis decodes what a person is trying to say directly from their brain, and turns it into text on a screen or a synthesized voice. It listens not to the mouth — which may no longer move — but to the brain regions that plan and command speech.

When someone attempts to speak, their cortex sends out a fast, detailed sequence of instructions for the lips, tongue, and voice. A speech neuroprosthesis records that activity, usually from electrodes on or in the brain, and a decoder trained on many examples translates the patterns back into words or sounds in close to real time.

This matters most for people who have lost the ability to speak — from a stroke, ALS, or paralysis — yet whose thoughts and intentions are fully intact. Recent systems have reached striking speeds and vocabularies, making this one of the most moving frontiers in the whole field.

Also calledspeech BCIspeech decoder

A spheroid is a simple little ball of cells — one of the most basic three-dimensional tissue models. Left to clump together rather than spread out flat, cells naturally round up into a small sphere where they touch their neighbours on all sides, much closer to how cells sit inside the body than the single flat layer in an ordinary dish. Think of it as a tiny snowball of cells.

Forming one is refreshingly easy: drop cells where they cannot stick to a surface, and they huddle together into a ball on their own. Inside that ball the cells near the surface get plenty of oxygen and food while those in the centre get less — exactly the kind of gradient real tissue has. That makes a spheroid a more realistic, yet still cheap and fast, model for studying how cells grow, respond to drugs, or behave as a small tumour.

What sets a spheroid apart from an organoid is organization. A spheroid is mostly just a cluster — useful, but largely a uniform blob. An organoid goes further, with cells specializing and arranging into organ-like structures. So a spheroid is the simpler, scrappier cousin: less complex and less organized, but quick to make and ideal when you need a basic 3D model in large numbers.

Also called细胞球細胞球三维细胞球球状体

When an electrode sits inside the brain, it often hears several neurons at once, each firing its own sharp blips, called spikes. Spike sorting is the job of figuring out which spike came from which neuron, so that each cell's activity can be followed on its own. It is like sitting in a dark room with several people talking and learning to tell each voice apart.

The trick is that each neuron tends to produce a spike with a slightly distinctive shape — its own little signature waveform — depending on its size and how far it is from the electrode. Spike sorting groups the recorded blips by these shapes, assigning the similar-looking ones to the same neuron. Done well, one messy mixed recording is teased apart into several clean per-neuron streams.

This matters because the most precise brain–computer interfaces want to know what individual neurons are doing, not just the crowd average. Spike sorting is the step that turns a tangle of overlapping spikes into separate, readable signals — though in practice it is hard, error-prone, and an active area of research.

Spike-timing-dependent plasticity, or STDP, is a rule for how a connection between two brain cells grows stronger or weaker based on the precise order and timing of their electrical pulses. Brain cells, called neurons, talk to each other across tiny junctions called synapses, and they fire off brief electrical blips known as spikes. STDP says that what matters is not just whether two neurons fire together, but who fires first and by how many thousandths of a second. Think of two people clapping: if one consistently claps a hair-beat before the other, their rhythm locks in; if the timing keeps slipping the other way, the partnership falls apart.

The key twist is that the sign of the change flips depending on the order. If the sending neuron fires a few milliseconds before the receiving neuron, the synapse is strengthened — the sender looks like it helped cause the receiver's spike, so the link is rewarded. If the sender fires just after the receiver, the synapse is weakened, because the sender clearly arrived too late to have mattered. This tiny timing window, usually within about twenty milliseconds, lets the brain pick out genuine cause-and-effect chains and is widely thought to be one of the physical mechanisms behind learning and memory.

Also calledSTDP时序依赖可塑性時序依賴可塑性

A spiking neural network is a kind of artificial neural network whose units talk to each other the way real neurons do: by firing short, all-or-nothing electrical blips called spikes. Instead of every unit constantly passing along a smooth number, each one stays quiet until enough signal builds up inside it, then suddenly pops off a single spike and falls silent again. Picture a row of people who only shout the instant a bucket they are filling overflows, then start filling from empty once more. The message lives not in how loud each shout is, but in when the shouts happen and how often.

This timing-based style makes spiking networks closer to the brain than the more common artificial networks, where every unit outputs a steady value on every step. Because a spiking unit does nothing until it fires, the network can sit mostly idle and only spend energy on the rare moments when spikes actually occur. That sparseness is why researchers pair spiking networks with neuromorphic chips, special hardware built to run them cheaply. They are studied both as practical low-power machine-learning systems and as simplified models that help scientists understand how living brains might compute using spikes.

Also calledSNN脉冲网络脈衝網路spiking network

Imagine trapping a single electron in a tiny pocket of silicon, then using one private property of that electron to hold your quantum information. That property is spin, a built-in magnetic quality that can point in two basic directions you can label 0 and 1. A spin qubit is exactly that: one qubit stored in the spin of a single electron (or sometimes an atomic nucleus) held inside a quantum dot, a nanometer-scale trap patterned into the chip. Because the carrier is just one particle, a spin qubit is extraordinarily small, far tinier than the wiring loops used in some other approaches.

The big practical bet behind spin qubits is manufacturability. They are built in silicon and look, structurally, a lot like the transistors that the chip industry already makes by the billion, so the hope is to borrow mature CMOS fabrication rather than invent it from scratch. Like any qubit, a spin qubit holds a state alpha|0> + beta|1>; you steer it with carefully shaped magnetic or electric pulses, and when you measure you get a single 0 or 1 with probability set by those amplitudes, and the superposition collapses. Two nearby spins can be coupled to entangle them and run two-qubit gates.

Also calledelectron spin qubitsilicon spin qubitquantum-dot spin qubit

The spinal cord is the long, soft cable of nervous tissue that runs down the inside of your backbone, from the base of your brain to about the small of your back. Think of it as the body's main information highway: messages from the brain travel down it to reach your muscles and organs, and signals from your skin, joints, and insides travel up it to reach the brain. It is only about as thick as your little finger, yet nearly every command to move and almost every sensation you feel passes through this single bundle.

Bundles of nerve fibers branch off the cord in pairs at each level of the spine, fanning out to a particular region of the body — one pair to the arms, others to the chest, the legs, and so on. The bony rings of the spine wrap around the cord to protect it, the way a hard case shields a delicate wire. Because so much traffic funnels through one channel, an injury high up can cut off the brain's contact with everything below the damaged point, which is why spinal injuries can cause paralysis.

The cord does more than just carry messages — it can also act on its own for fast, automatic responses called reflexes. When you touch something painfully hot, the cord pulls your hand back before the news even reaches your brain, saving the precious fraction of a second it would take to think about it. So the spinal cord is both a relay line between brain and body and a small decision-maker in its own right.

Also calledmedulla spinalis脊神经索脊神經索

A spinal reflex is a fast, automatic body response that is handled entirely by the spinal cord, without waiting for the brain to think about it. When a doctor taps just below your kneecap and your lower leg kicks out, that is a spinal reflex in action. The trick is geography: the incoming signal from your body and the outgoing command to your muscle meet up inside the spinal cord, which sits much closer to your limbs than your brain does. By skipping the long trip up to the brain and back, the response can fire in a fraction of a second — often before you are even consciously aware of what happened.

It works through a small, pre-wired loop of neurons called a reflex arc. A sensory neuron detects the trigger — a sudden stretch in a muscle, or the heat and sharpness of a pin — and carries that signal into the spinal cord. There, in the simplest case, it hands the message straight to a motor neuron that fires the right muscle; in slightly more complex reflexes, one or more short relay cells called interneurons sit in between to shape the response, for example by relaxing an opposing muscle at the same time. Because this circuit is built in and does not require a decision, the same trigger reliably produces the same movement. The brain still gets a copy of the news a moment later, which is why you feel the pin prick just after your hand has already pulled away.

These reflexes are not just curiosities a doctor tests — they are protective and postural tools your body uses constantly. The withdrawal reflex yanks your hand from danger before damage spreads; stretch reflexes quietly adjust muscle tension to keep you upright and steady as you stand or walk. Because each reflex runs through a known stretch of the spinal cord, doctors use them as a quick health check: an absent, weak, or exaggerated reflex can reveal where a nerve, the spinal cord, or the connection to a muscle may be injured.

Also calledreflex actioninvoluntary spinal response脊髓反射动作脊髓反射動作

SQL injection is a classic attack where a user types not just data but extra database commands, and the program runs them by mistake. It happens when code glues raw user input straight into a SQL query — so the input stops being a name and starts being an instruction.

Picture a form that asks for your username and builds a query around it. If you type a normal name, fine. But type something crafted like ' OR '1'='1 and the query's meaning quietly changes, perhaps letting you log in as anyone, dump the whole table, or delete it. The app trusted the input as plain text; the database read part of it as a command.

The fix is wonderfully simple and absolute: never paste raw input into a query. Use 'parameterized queries' (also called prepared statements), where you send the SQL and the values down separate channels. The values are then treated only as data — never as commands — and the trick simply stops working.

Also calledsqli

SQL is the language you use to ask a relational database questions — and to add, change, or remove data. Instead of writing loops to dig through files, you write one short sentence describing what you want, and the database figures out how to get it.

It reads almost like English: SELECT name FROM users WHERE age > 18 means 'give me the names of users older than 18'. The four verbs you'll lean on most are SELECT (read), INSERT (add), UPDATE (change), and DELETE (remove).

It's spoken two ways — spell it out, 'ESS-cue-ell', or say 'SEE-kwl' (people will know what you mean either way). Almost every relational database speaks SQL, so the skill carries from PostgreSQL to MySQL to SQLite with only small dialect differences.

Also calledstructured query languagesequel

SSH — Secure Shell — is the standard way to log into another computer over the network and run commands on it as if you were sitting right there. It's how you reach a server in a data center halfway around the world from your own laptop.

The 'secure' is the whole point: everything between you and the remote machine is encrypted, so nobody listening on the network can read your commands, your password, or the data coming back. The older tools it replaced sent everything in plain text — a genuinely bad idea.

Instead of typing a password every time, most people use a key pair: a private key that stays secret on your machine, and a public key you put on the server. The two match up to prove it's really you — quietly, in a fraction of a second, every time you connect.

Also calledsecure shellssh intoremote loginssh key
See alsoshelldaemon

A stablecoin is a crypto token designed to hold a steady value, usually by tracking a regular currency like the US dollar so that one coin stays worth about one dollar. It exists to solve an awkward problem: ordinary cryptocurrencies can move fast and travel anywhere, but their price swings make them clumsy for everyday spending, saving, or pricing goods. A stablecoin keeps the blockchain's speed and openness while behaving, in value, like familiar money.

There are a few ways to keep the value pinned. The most common is fully backed: a company holds one real dollar (or a safe equivalent) in reserve for every coin it issues, promising you can always redeem one for the other — the coin is a digital claim ticket on a vault of cash. Another approach is crypto-collateralized, where the coin is backed by a surplus of other crypto locked in a contract, with automatic rules that sell off collateral if its value drops too far. A riskier third kind tries to hold the peg purely through algorithms and trading incentives, with no real reserves behind it.

Stablecoins matter because they became the everyday cash of the crypto world. People use them to park value between trades without cashing out to a bank, to send dollars across borders in minutes, and to power lending and trading in decentralized finance, where a stable unit of account is essential. They are the bridge that lets the familiar idea of a dollar travel on rails that never close.

Also calledstable coin稳定币穩定幣

Staking is the act of locking up some of a blockchain's coins as a security deposit, in order to help run a proof-of-stake network and earn rewards for doing so. Your staked coins are not spent or given away — they are set aside as a bond that vouches for your good behavior. In return for putting that capital to work securing the chain, the protocol pays you a share of newly issued coins and transaction fees.

The deposit cuts both ways, and that is the whole point. While your stake is locked, you are expected to validate honestly; if you do, you collect steady rewards roughly in proportion to how much you staked. But if the software you run misbehaves — signing conflicting blocks, or staying offline too long — a portion of your deposit can be automatically forfeited, a penalty known as slashing. Skin in the game is what makes your participation trustworthy to everyone else.

Because running a full validator can require a large minimum deposit, many people stake through pools or services that combine lots of small contributions and share the rewards. Some of these offer liquid staking, handing you a tradeable token that represents your locked stake so your capital is not completely frozen. Either way, staking is the mechanism that turns ordinary coin holders into the workforce that keeps a proof-of-stake blockchain secure.

Also calledstaking质押質押

Imagine building with Lego bricks. Every brick is moulded to the same height and snaps onto the same grid, so you never have to think about whether two of them will line up — you just click them together in rows and the structure holds. A standard cell is that brick for chip design: a small, pre-designed, pre-verified chunk of logic — a single inverter, a two-input NAND, a flip-flop — drawn once by a library team (the foundry or an IP vendor) and reused millions of times across a chip. Every cell in a library shares the same fixed height, with power and ground rails running along its top and bottom edges, so the tools can abut them side by side into neat rows without hand-routing each one.

The "standard" part is really a contract between the cell and the automated tools. Because every cell has a known function, a known footprint, and known electrical behaviour, synthesis can pick cells to implement your RTL, and place-and-route can pack them into rows and wire them together — all without a human drawing a single transistor. That behaviour is characterised by circuit simulation: for each cell the library team computes its delay (as a function of input transition and output load), its input capacitance, and its power across a range of process, voltage, and temperature corners, and ships those numbers in a library file. Timing analysis then reads those numbers to decide whether your design meets its timing.

A library typically holds hundreds of cells: the same logical function comes in several drive strengths (a weak inverter that sips power and a beefy one that can charge a long, heavily-loaded wire quickly), plus variants tuned for low leakage versus high speed (different threshold-voltage flavours). The art of synthesis is choosing the right cell for each spot — small and slow where there's slack to spare, large and fast on the critical path. The cells themselves are built from CMOS transistors, but as a designer you mostly treat each one as a sealed, trustworthy brick.

Also calledcelllibrary cellstandard-cellstdcell标准单元標準單元

A star is a colossal ball of hot gas — mostly hydrogen — held together by its own gravity, glowing because of a furnace buried at its heart. Deep in the core, the crush of gravity squeezes hydrogen so hard that atomic nuclei smash together and fuse into helium, and each fusion releases a flicker of energy. Pile up countless such flickers, and you get the steady light and warmth of a star. Our Sun is one ordinary example; on a dark night, nearly every twinkling point you see is another sun, almost unimaginably far away — though the steadiest, brightest "stars" are often planets in our own Solar System, which shine by reflected light and barely twinkle at all.

A star is really a tug-of-war held in perfect balance. Gravity is forever trying to crush it inward, while the heat and pressure from the core push relentlessly outward — and for most of a star's life the two are matched exactly, so it sits there shining, neither collapsing nor flying apart. That truce is what makes a star so steady; our Sun has kept it for about 4.6 billion years and has billions more to go.

It's tempting to picture a star as something "burning" like a campfire, but nothing is on fire there — there's no oxygen, and ordinary flames could never last billions of years. A star shines by fusion, not combustion: it is squeezing tiny nuclei together, not burning fuel in air. And much of you was forged inside stars long ago: the iron in your blood, and most of the heavier elements in your body, were cooked up in stellar cores and supernovae. The hydrogen in your body's water is older still — it was made in the Big Bang, not in any star.

Also calledsunfixed star恒星太阳(作为一颗恒星)恆星太陽(作為一顆恆星)

Every robot has two very different versions of "where it is and what's going on." The first is the state: the actual, real-world truth — the robot really is at this spot, facing this way, moving at this speed. The state exists whether or not the robot knows it. The catch is that the robot can never see the state directly; it only gets noisy, indirect hints through its sensors. So a robot can no more read its own true state than you can know the exact temperature of a room just by how warm your skin feels.

What the robot actually carries around instead is a belief: its best current guess about the state, together with how sure it is. The crucial move is that a belief is not a single number but a whole spread of possibilities with weights — "I'm probably right here, fairly likely a little to the left, and very unlikely way over there." In the language of probability this spread is a distribution. A confident robot has a narrow, peaked belief (almost all the weight piled on one spot); a confused robot has a wide, flat belief smeared across many places. Honest uncertainty is built right in.

Keeping these two apart is the foundation of the whole subject. The true state is the thing we wish we knew; the belief is the thing we can compute and keep updating as new sensor readings and motion commands arrive. Estimation is simply the craft of nudging the belief to hug the true state as closely as the noisy evidence allows — never reaching it perfectly, but getting usefully, measurably close.

Also calledtrue state vs estimatebelief distribution真值与估计信念分布

When a robot estimates several things at once — say its position east, its position north, and which way it is facing — it does not just hold a single best guess for each; it also holds a measure of how unsure it is about each one, and crucially, of how those uncertainties relate to each other. The state covariance matrix is the neat little table that bundles all of this together. Down its diagonal sit the uncertainties in each individual quantity (how fuzzy is my east position? my heading?), and off the diagonal sit the correlations — the way being wrong about one thing tends to go hand in hand with being wrong about another.

Picture the robot's belief about its location as a blurry cloud rather than a sharp dot. A small, round cloud means the robot is confident and equally sure in every direction. A long, thin, tilted cloud means something subtler: the robot knows its position quite well along one line but is vague along another, and the tilt says the two uncertainties are linked — for instance, it might know it is somewhere along a wall without knowing how far down the wall. The covariance matrix is exactly the recipe for that cloud's size, shape, and tilt. The diagonal numbers stretch or shrink it along each axis; the off-diagonal numbers tilt and squash it, capturing those correlations.

This matrix is what lets a robot reason honestly about what it does and does not know, and it is the engine behind filters like the Kalman filter. With every prediction the cloud swells, because moving adds uncertainty; with every good sensor reading the cloud shrinks, because fresh evidence sharpens the picture. The shape even tells the robot which sensor would help most — if the cloud is long in the north-south direction, a measurement that pins down north is worth far more than one that pins down east. Without this bookkeeping of uncertainty, the robot would treat a wild guess and a near-certain fact as equally trustworthy, and its estimates would quickly fall apart.

Also calledcovariance matrixuncertainty matrix协方差矩阵不确定性矩阵

A state observer is a piece of software that figures out the hidden inner condition of a machine when you cannot measure all of it directly. Many controllers need to know a robot's full internal state — every joint angle and also how fast each one is turning — but sensors are expensive, heavy, or noisy, so often you only measure some of it, say the angles but not the speeds. The observer fills in the rest. It runs a little copy of the robot's math inside the computer, watches the few real measurements you do have, and continuously refines its guess of everything else until its imagined robot moves just like the real one.

Here is the clever trick at its heart. The observer's internal model predicts what the sensors should read; it then compares that prediction with what the sensors actually read, and the gap between the two — the prediction error — is fed back to nudge the guess in the right direction. If the model thinks the arm should be at one place but the real sensor says it is slightly past that, the observer corrects its estimate of both the position and the unmeasured speed. The Luenberger observer, named after David Luenberger who introduced it in the 1960s, is the classic recipe for choosing the observer gain — how hard to push on that correction — so the estimate's error shrinks to zero quickly without overshooting.

Why does this matter for robots? Because good control usually depends on knowing the velocity of every joint, yet measuring velocity well is hard — raw speed readings tend to be jittery. Instead of buying a velocity sensor for every joint, you measure only positions and let an observer estimate the speeds smoothly. The same idea lets a robot keep working when a sensor fails, lets a drone sense its tilt from limited readings, and lets controllers act as if they could see everything even when they cannot.

Also calledobserverLuenberger observer状态估计器狀態估計器

A state-space model is a tidy, standardized way of writing down everything a control engineer needs to know about how a robot moves and responds. The central idea is the state: a short list of numbers that captures the complete, current condition of the system — for a single joint, that might be just its angle and how fast that angle is changing. The promise of the state is that if you know it right now, plus whatever commands you send from here on, you can predict the entire future without needing any history of how you got here. The state is the system's complete memory squeezed into a handful of variables.

The model then packages the dynamics into two compact equations. The first, the state equation, says how the state is changing right now — its rate of change — given the current state and the inputs you apply (the motor commands). The second, the output equation, says which parts of the state your sensors actually measure and report. By convention these are organized so the rates of change depend only on the present state and present input — first-order form — which is exactly the shape that the whole toolbox of modern control design, like placing poles or building observers, is built to work with.

Writing a robot this way is powerful because it turns a tangle of physics into clean bookkeeping that scales. A two-number state describes one joint; stack up positions and velocities and you can describe a whole multi-joint arm, a wheeled base, or a drone in one unified frame. Once a system is in state-space form, an enormous library of design methods becomes available off the shelf, which is why this representation is the common language underneath most advanced robot control.

Also calledstate-space representation状态空间表示狀態空間表示

Imagine you want to know whether a courier can carry a package across a city and arrive before a deadline — every single time, on every possible route. One way is to dispatch couriers all day and watch the clock, but you would never cover every street. The smarter way is to grab the map, add up the worst-case travel time on each road segment for every route, and check that even the slowest route beats the deadline. Static timing analysis (STA) does exactly this for a chip: instead of running simulation with test vectors, it walks every path that a signal can travel — from one register to the next — and adds up the delays along the way, then confirms each path finishes in time.

Concretely, STA breaks the design into timing paths, each starting at a launching register and ending at a capturing one. For each path it sums the delay of every standard cell the signal passes through plus the delay of the wires connecting them. It then runs two checks against the clock: a setup check, that data launched on one clock edge arrives before the next edge — with a little margin left for the register's setup time and for clock uncertainty; and a hold check, that data does not arrive too soon and overwrite the value the same edge is still capturing. STA reports the margin on each check as slack, and any path with negative slack is a violation. Because it is "static," it never needs input stimulus — it reasons about the timing graph directly, so it can guarantee EVERY path is covered, which simulation can never promise.

The point of all this is to pin down how fast the chip can legally run. The slowest setup path — the critical path — sets the floor on the clock period: the period can be no shorter than that path's delay plus the capturing register's setup time and the clock uncertainty. The maximum frequency is the inverse of that minimum period. Shave delay off the critical path and the whole chip can be clocked faster; miss the budget on even one path and the part fails at speed. This is why STA is the gatekeeper of timing sign-off — the final check that every path, fast and slow alike, lands inside its window before a design is declared safe to build.

Also calledSTAstatic timingtiming sign-off静态时序分析靜態時序分析

These are the two fundamentally different ways a robot can keep from falling over. A statically stable robot stays upright even if you froze it in place: at every instant its weight is balanced over a wide enough base of support that gravity cannot tip it, like a table or a person standing with feet apart. A dynamically stable robot, by contrast, only stays up because it keeps moving; freeze it and it would topple, the way a bicycle stays up while rolling but falls the moment it stops, or the way you can balance a broom on your palm only by constantly shuffling your hand.

The idea that ties this together is the support polygon: draw a line connecting all the points where the robot touches the ground (its feet), and the area enclosed is the safe zone. As long as the robot's center of mass — the average point where its weight acts — hangs directly above somewhere inside that polygon, gravity pulls it down onto its feet and it stays put. That is static stability. The wider the feet are spread, the bigger the polygon, the more margin for error. A four-legged robot standing still or a tripod is rock-solid this way.

Dynamic stability throws that safety net away on purpose. A walking or running robot spends much of its time with its center of mass outside the support polygon — during a stride it is literally tipping over — and it stays upright only by using momentum and quick, well-timed steps to catch itself before it falls, again and again. This is harder and riskier to control, but it is the price of speed and agility: fast running, two-legged walking, and balancing on a single point are all dynamic. Slow, careful, wide-stanced motion tends to be static; fast, narrow, momentum-driven motion tends to be dynamic.

Also calledstatic balance vs dynamic balance静态平衡与动态平衡靜態平衡與動態平衡

Steady-state error is the gap that stubbornly remains between where you wanted a system to end up and where it actually settles, long after all the early bouncing and overshooting has died away. Picture cruise control set to 100 kilometres per hour. After the car finishes speeding up and the needle stops moving, it may hold steady at 98 — that permanent 2 kilometre-per-hour shortfall is the steady-state error. It is not about the messy first few seconds; it is the quiet, final leftover difference once everything has calmed down.

Why would a controller settle for being slightly wrong forever? Because many simple controllers only push when they can see an error, and a small error may produce only a tiny push — just enough to balance the constant drag of gravity, friction, or a slope, but not enough to fully close the gap. A controller that reacts in proportion to the error, for instance, must keep some error around in order to keep producing the output that holds the load. The classic cure is an integral term, which patiently adds up the leftover error over time and keeps nudging harder until the gap is squeezed to zero.

Steady-state error matters because it is the part of a controller's behaviour the user actually lives with day after day. A thermostat that always lands one degree cold, a robot arm that always stops a millimetre short, a level-holding tank that always sits slightly low — none of these wobble or look unstable, but each quietly fails to deliver exactly what was asked. Driving this residual to zero, or to an acceptably small value, is a core goal of good control design.

Also calledresidual erroroffset残余误差

When you stare at something that flickers at a steady rate, the visual part of your brain starts to "ring" at that very same frequency, like a bell humming along with a beat. This rhythmic echo in the EEG is the steady-state visual evoked potential. Look at a light blinking 12 times a second and a 12-per-second rhythm shows up over the back of your head.

A BCI turns this into control by putting several targets on a screen, each flickering at its own distinct rate. To pick one, you simply look at it; the system reads which frequency is ringing loudest in your brain and knows where your eyes — and attention — are aimed.

Compared with many other paradigms, SSVEP is fast and reliable and needs very little training, since you do not have to learn any special mental trick — you just look. Its main cost is that it relies on bright flickering targets, which some people find tiring or unpleasant.

Also calledSSVEPsteady-state VEP

A stem cell is an unspecialized cell that has not yet decided what it will become. Most cells in your body have a fixed job — a heart cell beats, a skin cell forms a barrier — but a stem cell sits one step earlier, still blank and full of options. Think of it as fresh modeling clay that has not yet been shaped, kept in reserve by the body so there is always raw material on hand.

Stem cells are defined by two powers that other cells lack. The first is self-renewal: when a stem cell divides, it can make a copy of itself, so the supply never runs dry. The second is differentiation: it can also mature into a specialized cell type, taking on a permanent job. By balancing these two — copying itself while also producing specialists — a small pool of stem cells can both maintain itself and continuously rebuild tissue.

This makes stem cells the body's repair reservoir. They quietly replace the skin, blood, and gut lining cells you shed every day, and they help mend injuries. Because they can become so many things, they are also the central tool of regenerative medicine, which aims to use them to repair tissue the body cannot heal on its own — though turning that promise into proven, safe therapy is still difficult and far from finished.

Also called干细胞幹細胞

A stem cell niche is the special local neighborhood that surrounds a stem cell and keeps it being a stem cell. A stem cell is not an island; it sits within a precise microenvironment made of neighboring cells, chemical signals, and a scaffold-like supporting material. Think of the niche as a greenhouse built to exact conditions: change the temperature, light, or soil, and the plant inside behaves completely differently. The niche is the set of conditions that holds the stem cell in its useful, undecided state.

The niche works by constantly bathing the stem cell in instructions. Surrounding cells release signaling molecules that say, in effect, stay as you are and do not yet specialize. The supporting material — the extracellular matrix that cells secrete around themselves — anchors the cell in place and shapes the signals it receives. Together these inputs hold the stem cell in a quiet, self-renewing balance, and when the body needs repair, shifts in the same niche signals are what tell the cell it is time to divide or to differentiate.

The niche matters because it shows that a stem cell's behavior is not decided by the cell alone — it is a conversation between the cell and its surroundings. Take a stem cell out of its niche and it can lose its identity or stop behaving properly. That is one of the hardest problems in regenerative medicine: a cell that thrives in its natural niche may misbehave in a dish or in the wrong part of the body, so recreating the right surroundings is often as important as having the right cell.

Also calledniche干细胞微环境幹細胞微環境

Potency is a measure of how many different cell types a given stem cell is able to become — its range of possible destinations. Not all stem cells are equally versatile: some can turn into almost anything, while others are limited to a small handful of related types. Think of potency as how broad a menu a cell can order from. The earlier and more unspecialized the cell, the longer its menu; the more committed it already is, the shorter.

Biologists arrange potency as a descending ladder. At the top sits totipotency, the power to make every cell of a body plus the supporting tissues of a pregnancy, such as the placenta — only the freshly fertilized egg and its first few divisions qualify. Next is pluripotency: the ability to become any cell type of the body itself, but not a whole organism. Below that is multipotency, limited to a related family of types, such as the various kinds of blood cell. At the bottom is unipotency, which yields just one type.

This ladder matters because it predicts what a cell can and cannot do, and it generally runs one way: as cells develop, they step down the rungs, trading breadth for a settled identity. Knowing a cell's rung tells a researcher whether it could, in principle, rebuild many tissues or only refresh one. Much of stem cell science is about reading, preserving, or deliberately winding back a cell's position on this ladder.

Also calledpotency干细胞潜能幹細胞潛能

Stem-cell tourism is the practice of traveling, often abroad, to pay out of pocket for 'stem-cell' treatments that have not been proven to work and are not properly regulated. The clinics borrow the language and hope of real science, but their offerings are more like a glossy menu with no kitchen behind it — promises served without the evidence to back them.

These businesses typically charge large sums for procedures that skipped the careful trials and safety reviews legitimate treatments must pass. Because no real oversight checks what they inject or how, the 'treatment' may do nothing at all — or cause genuine harm, from infections to tumors to worse. Glowing testimonials are not evidence.

It matters because desperate, seriously ill people are the target, and documented cases of injury and death exist. A simple guard rail: treatments truly supported by evidence are almost always offered through registered clinical trials or approved care, not as cash-only packages sold to medical travelers.

Also called干细胞旅游幹細胞旅遊stem cell tourism

A stepper motor is a motor that moves in tiny, exact clicks instead of a smooth continuous spin. A common stepper turns one fixed amount per pulse, so a typical 200-step model rotates exactly one full turn after 200 pulses — no more, no less. Each pulse of electricity advances it by one fixed notch, so you can position it precisely just by counting pulses, without any sensor watching where the shaft actually is. This is why steppers run the print heads of 3D printers, the trays of optical drives, and the axes of small desktop machines.

Inside, the motor's ring of coils is energized in a set sequence, and a toothed magnetic rotor snaps to line up with whichever coils are switched on. Switch them in order and the rotor steps around, one detent at a time, like the second hand of a ticking clock. Even when standing still and powered, it firmly resists being pushed off its spot — a useful property called holding torque that locks a load in place. To smooth out the steps and reach in-between positions, drivers use microstepping, blending the current across coils so the rotor settles partway between full steps; this gives finer motion and quieter running.

The big appeal is open-loop control: precise positioning with no feedback hardware, which keeps things cheap and simple. The big catch is the flip side of the same coin — if the load is too heavy or the motor is told to move too fast, it can quietly skip steps, and because nothing is watching, the controller never finds out it has fallen behind. Steppers also run warm and lose torque as they speed up, so they shine at low-to-medium speeds where dead-reckoning precision matters more than raw power or efficiency.

Also calledstepping motor步进电动机步進電動機

Stereo vision is a way of measuring how far away things are by using two cameras side by side, the same trick your two eyes use. Hold up a finger and look at it with one eye closed, then the other: the finger seems to jump sideways against the background. Near things jump a lot; far things barely move. Stereo vision turns that jump into distance. Two cameras, mounted a fixed distance apart and pointing the same way, each take a picture of the scene at the same moment, and the system compares the two.

The amount each point seems to shift between the left and right image is called disparity, and it is the heart of the method. A point that lands far to one side in one image but well to the other side in the second has a large disparity, which means it is close to the cameras; a point that sits in almost the same place in both images has tiny disparity and is far away. Because the gap between the cameras (the baseline) and their focal length are known from calibration, simple geometry converts each disparity value directly into a real distance in meters. The hard part is matching: for every point in the left image, the system must find the very same point in the right image, which is where features and descriptors earn their keep.

Do this matching for many points across the whole image and you get a depth map — a picture where each pixel's value is not color but distance. That map lets a robot judge how far the wall, the table, or the person is, all from ordinary cameras with no laser or special lighting. The catch is that stereo needs visible texture to match on: a blank white wall gives nothing to line up, so depth there becomes unreliable, and accuracy fades for very distant objects whose disparity shrinks toward zero.

Also calledbinocular visionstereopsis双目视觉雙目視覺

The stress response is your body's all-hands alarm — the fast, coordinated burst of brain activity and hormones that switches on whenever something feels threatening, urgent, or overwhelming. Imagine a building's fire alarm going off: lights flash, doors unlock, people drop what they were doing and move. In the same way, when your brain decides a situation is a danger or a heavy demand — a near-miss in traffic, an exam, a sudden loud noise, or even a tense email — it floods the body with chemical signals that sharpen your senses, speed up your heart, and get you ready to act right now.

It runs through two main channels working together. The fast one is purely nervous: a small region deep in the brain called the amygdala flags the threat and signals the hypothalamus, which fires the sympathetic nerves to release adrenaline within seconds — pounding heart, quick breathing, wide eyes, energy poured into the muscles. The slower one is hormonal: the hypothalamus also triggers a chain reaction (the HPA axis) that ends with the adrenal glands pumping out cortisol, a hormone that keeps blood sugar up and the body on alert for minutes to hours. This whole system is brilliant for short, real emergencies. The trouble is that the same alarm fires for modern, non-physical pressures too, and when it stays switched on for weeks or months, the constant flood of stress hormones can wear down sleep, mood, memory, and overall health.

Also calledfight-or-flight responsestress reaction应激戰或逃反應

A stretch reflex is your body's automatic push-back when a muscle is suddenly pulled longer than it wants to be: the very same muscle clenches right back, all on its own, to resist the stretch. The classic example is the knee-jerk a doctor produces by tapping just below your kneecap with a small rubber hammer. That tap briefly stretches the big muscle on the front of your thigh, and a fraction of a second later that muscle contracts and your lower leg kicks out, with no thought or decision on your part. It is one of the fastest, simplest reactions the nervous system can make.

It works because every muscle is threaded with tiny stretch detectors called muscle spindles. When a stretch yanks the muscle, these spindles fire off a signal that races up a sensory nerve to the spinal cord. There it hands the message directly to a motor nerve, which immediately orders that same muscle to contract, with no detour up to the brain to decide. Because the loop turns around in the spinal cord instead of climbing all the way to the brain, the response is almost instantaneous. The brain hears about the kick only after it has already happened.

The point of all this is to keep your muscles at a steady, useful length without you ever thinking about it. When you stand still and your knees start to buckle, the leg muscles that suddenly stretch fire their stretch reflex and stiffen back up, helping you stay upright. The hammer-tap test doctors use is really just a quick way to check that this whole sensor-to-spinal-cord-to-muscle loop is healthy and wired correctly.

Also calledmyotatic reflexmuscle stretch reflex肌牵张反射肌牽張反射
See alsoreflex arc

A stroke is what happens when part of the brain suddenly loses its blood supply and the brain tissue there begins to die within minutes. Brain cells are astonishingly hungry: they cannot store fuel, so they depend on a constant river of blood bringing oxygen and sugar every single second. Cut off that river, and the cells in the starved region stop working almost at once, the way a city block goes dark the instant its power line is severed. Because each patch of brain runs a particular job, the symptoms point to where the damage is: a face droops on one side, an arm goes weak, speech turns to garble, vision blurs, or the person cannot keep their balance. This is a medical emergency, and the old phrase doctors repeat captures why: time is brain.

There are two main ways the blood supply fails, and they are nearly opposites. In an ischemic stroke, by far the more common kind, a clot plugs an artery feeding the brain, like a cork jammed in a pipe, and everything downstream is left dry. In a hemorrhagic stroke, a blood vessel instead bursts and bleeds into or around the brain, so blood is pumped to the wrong place, drowning and crushing the tissue while the region beyond the leak is starved as well. Telling the two apart matters enormously, because the treatments are mirror images: a clot may be dissolved with a drug or pulled out with a tiny catheter, but giving that same clot-busting drug to someone who is bleeding would be catastrophic, which is why a brain scan comes first.

The damage from a stroke can be devastating, yet it is far from a fixed sentence. A core of tissue usually dies quickly, but a surrounding rim of cells often hovers in a stunned, still-rescuable state for a precious window of hours, which is why rushing to hospital can save brain that would otherwise be lost. In the months afterward, the brain's remarkable capacity to rewire itself, with surviving regions gradually taking over jobs the dead tissue once handled, underlies much of the recovery seen in rehabilitation. And many strokes can be prevented altogether by controlling the things that damage blood vessels over years, chiefly high blood pressure, smoking, diabetes, and an irregular heartbeat that breeds clots.

Also calledbrain attackapoplexy中风中風脑中风腦中風

Structural MRI is a way of taking sharp, detailed pictures of the inside of a living brain without any surgery, without any X-rays, and without injecting anything. The person lies still inside a tube-shaped scanner that surrounds them with a very strong magnet. That magnet nudges the water molecules packed all through the brain's tissue, and as those molecules settle back the machine listens to the faint signals they give off and turns them into a stack of crisp anatomical images, almost like slicing the brain into thin layers and photographing each one.

Unlike functional scans, which try to catch the brain in the act of working, structural MRI is about shape and substance: it maps the layout of gray matter (the outer rind where the neuron cell bodies sit) and white matter (the deeper cabling that wires regions together), along with the fluid-filled spaces and any tissue that looks out of place. Different scanner settings make different tissues bright or dark, so doctors and scientists can measure how thick the cortex is, how big particular structures are, and whether anything has grown, shrunk, or been damaged.

Because it is safe to repeat and gives a faithful map of brain anatomy, structural MRI is a workhorse in both the clinic and the lab. Clinicians use it to spot tumors, strokes, and other lesions; researchers use it to track how brains differ across people and how they change with age, learning, or disease. It is often the very first scan taken, providing the anatomical backdrop onto which other, more specialized measurements are laid.

Also calledanatomical MRIsMRI结构性磁共振結構性磁振造影

Structure from motion is the trick of recovering the 3D shape of a scene, plus where the camera was for each shot, using nothing but a set of ordinary 2D photos taken from different spots as the camera moved around. A single flat photo throws away depth — you cannot tell from one picture how far away anything is. But move the camera a few steps and snap again, and nearby things shift in the frame more than distant things, exactly the way a fence post near the road races past your car window while the far mountains barely budge. Structure from motion mines that shifting to reverse-engineer both the layout of the world and the path the camera took.

It works in two interlocking parts whose names give it its title. First it finds the same physical points across many photos — a particular corner of a window, the same crack in the pavement — by spotting distinctive features in each image and matching them. Then it solves a giant puzzle: there is essentially one consistent set of camera positions and one consistent 3D placement of those points that could have produced exactly the matches seen in every photo. Solving that puzzle gives you the structure (the 3D points) and the motion (the camera poses) at the same time, each helping pin down the other.

The payoff is that an ordinary moving camera becomes a 3D scanner. A drone circling a building turns its video into a 3D model; a phone walking around an object builds a printable mesh; a robot exploring a corridor recovers both the map and its own trajectory through it. The output is typically a sparse point cloud of the matched points together with the recovered camera path, which later steps can densify into full surfaces.

Also calledSfM运动结构恢复從運動恢復結構

A substance use disorder, often called addiction, is a brain condition in which a person keeps seeking and using a drug — alcohol, nicotine, opioids, cocaine, and others — even though it is clearly hurting their health, work, or relationships. The key word is compulsion: it stops feeling like a free choice and starts feeling more like a powerful urge that overrides good intentions, the way a deep itch demands to be scratched even when you know scratching makes it worse. People with addiction often want to cut down and try hard to stop, yet find themselves pulled back again and again.

What makes this so hard to fight is that addictive drugs hijack the brain's reward circuit — the same system that normally rewards us for eating, bonding, and other survival behaviors by releasing the chemical messenger dopamine and tagging an experience as worth repeating. These drugs flood that circuit far more intensely than any natural reward, so the brain learns, very deeply, that the drug matters above almost everything else. With repeated use the circuit rewires: the brain turns down its own reward signaling, so ordinary pleasures feel flat and ever more drug is needed just to feel normal (tolerance), while cues like a certain place or stress trigger intense craving. At the same time the prefrontal cortex, the front part of the brain that weighs consequences and applies the brakes, becomes less able to do its job.

Because these are real, lasting changes in brain wiring — not a simple lack of willpower or a moral failing — addiction is understood today as a chronic, treatable medical condition, much like diabetes or high blood pressure. It can be managed with a mix of medications, counseling, and support, and relapse is treated as a signal to adjust care rather than as proof of failure.

Also calledaddictiondrug dependence成瘾成癮药物依赖藥物依賴

The substrate is the flat slab of crystal the whole quantum circuit is built on. Picture a quartz countertop on which you paint thin metal wires, resonators, and qubits: the metal does the electrical work, but the countertop underneath it is far from a passive bystander. The two materials used almost everywhere are high-resistivity silicon and sapphire, both polished to a near-perfect surface and grown as clean single crystals. The choice matters because the electric fields of a qubit do not stay neatly inside the metal; a good fraction of them reach down into the substrate and along its surface, so whatever sits there can quietly drain energy out of the qubit.

What you want from a substrate is very low dielectric loss, meaning the crystal barely absorbs the microwave fields passing through it, plus a clean, stable interface where the metal meets the crystal. Silicon is cheap, comes in big wafers, plays nicely with standard chip-fabrication tools, and lets you etch deep vertical holes for 3D wiring. Sapphire is an excellent low-loss insulator and a natural fit for growing certain high-quality superconducting films, but it is harder and more awkward to machine. Either way, most of the real loss does not come from the pristine bulk crystal; it hides in the few atomic layers right at the surfaces and interfaces, where a thin film of native oxide, adsorbed water, or fabrication residue forms a sea of tiny two-level defects that soak up energy.

Honestly, no single substrate has won. Teams pick silicon or sapphire based on what they are fabricating and how they plan to wire the chip in three dimensions, then spend enormous effort on cleaning, etching, and surface treatments to shave off the last bits of loss. The substrate is not a solved, off-the-shelf choice — it is one of the materials problems people are still actively fighting.

Also calledsubstrate materialchip substrate衬底材料基板材料

A suction gripper holds an object not by clamping it between fingers but by sucking onto its surface, the way a rubber sucker sticks to a window or an octopus arm grips glass. Instead of jaws, it has one or more soft cups pressed against the object; a pump pulls the air out from inside each cup, and the ordinary air pressure all around then pushes the object firmly up against it. Cut off the suction and the object simply lets go.

Its great strength is grabbing things from one flat or smooth side without needing room to reach around them — perfect for a sheet of glass, a cardboard box, a phone screen, or a single item lying flat in a crowded bin where fingers could not fit. It is fast, gentle, and needs only one point of contact. Its weakness is the flip side of the same trick: it struggles with rough, porous, dusty, or sharply curved surfaces that let air leak in and break the seal, and it pulls mainly straight off the surface, so a heavy object can peel away if swung around too quickly.

Because it relies on a tight seal and on the air around it doing the gripping, a suction gripper usually comes with a pump or compressed-air supply, a valve to switch the grip on and off, and often a sensor that watches the vacuum level so the robot knows whether it actually caught the object. Many modern picking robots carry both a suction cup and a finger gripper and choose between them depending on the shape of whatever they are about to grab.

Also calledvacuum grippersuction cup真空夹具吸嘴

A superconducting film is the thin layer of metal, usually a few tens to a few hundred nanometers thick, that a quantum chip's circuitry is carved from. Engineers deposit it onto a clean substrate, then etch away everything that is not a qubit, resonator, or wire, leaving a flat metal pattern that carries current without resistance once it is cold. Common choices are aluminum, niobium, tantalum (Ta), and titanium nitride (TiN). The film sounds like a humble ingredient, but its quality quietly sets a ceiling on how long the qubits can hold their state.

The trouble is that no film is perfectly clean. Where the metal meets air it grows a thin native oxide, where it meets the substrate it leaves a slightly disordered interface, and the metal itself is a mosaic of tiny crystal grains with boundaries between them. These surfaces and seams host countless microscopic two-level defects that flicker between states and soak up energy from the circuit's electric field. This is surface loss, and because the field is strongest right at the metal edges, even an atom-thin layer of bad oxide can dominate the whole qubit's lifetime.

This is why the choice of metal matters so much. Tantalum became popular because its native oxide is thinner and more stable than niobium's, and switching to it, together with cleaner surfaces and gentler etching, pushed transmon coherence times from a few microseconds years ago up to a few hundred microseconds in the best devices today. But there is no magic film: every material is a tradeoff of oxide quality, ease of fabrication, and chemical robustness, and getting low-loss films uniformly across a whole wafer is still an active, unfinished engineering problem.

Also calledsuperconducting thin film超导金属薄膜超導金屬薄膜

A superconducting qubit is a tiny electrical circuit, etched onto a chip much like an ordinary microchip, that behaves like a single quantum object. The trick is to chill it to a few thousandths of a degree above absolute zero (a few millikelvin) so the metal becomes superconducting — current flows with no resistance — and to include a special component called a Josephson junction. That junction makes the circuit's energy levels uneven, so you can single out the lowest two and treat them as your |0> and |1>. Think of it as a tailor-made artificial atom you build to order, rather than borrowing a real atom from nature.

Because they're fabricated with chip-making techniques and controlled with microwave pulses, these qubits have two big practical strengths: their gate operations are fast, and you can pattern many of them onto a single chip. This is the modality IBM and Google have bet on, and it's the most common kind of qubit in large machines today. The catch is fragility. Being human-made circuits, no two come out perfectly identical, and they hold their delicate quantum state only briefly — coherence times measured in millionths of a second — before noise scrambles it.

That short coherence is the central engineering struggle. It forces every useful computation to finish quickly, and it's the main reason we're still in the NISQ era, with noisy machines rather than a large fault-tolerant one. Reaching that fault-tolerant goal will demand error correction that bundles many physical superconducting qubits into each reliable logical qubit — a heavy overhead the field is actively working toward, not something that exists at scale yet.

Also calledsuperconducting circuit qubittransmon (the most common type)

Imagine you and a friend each take one coin from a magic pair that was prepared together long ago. The coins are linked in a way ordinary coins are not, and you carry yours far away. Later, you want to send your friend one of four short messages (00, 01, 10, or 11). Astonishingly, you can do it by physically handing over only your single coin. That is the idea of superdense coding: by sharing an entangled pair of qubits ahead of time, you can transmit two classical bits while sending just one qubit.

Here is the honest mechanism. Before any message exists, the two parties share an entangled pair, one qubit each. To encode, you apply one of four reversible operations to your own qubit (the identity, or one of three Pauli flips), which quietly rotates the shared joint state into one of four distinguishable configurations. You then send that one qubit to your friend, who now holds both halves and performs a joint measurement that reads out exactly which of the four operations you chose, recovering both bits with certainty. The two classical bits do not ride 'inside' one qubit on their own; the trick only works because the entanglement was set up in advance and because the receiver measures the pair together.

It is the conceptual mirror image of quantum teleportation. In teleportation you spend one shared entangled pair plus two classical bits to move one qubit's unknown state; in superdense coding you spend one shared entangled pair plus one transmitted qubit to move two classical bits. Both are clean demonstrations that entanglement is a usable resource, not magic faster-than-light communication: setting up the shared pair required getting qubits to both parties in the first place, and no information arrives faster than the qubit you physically send.

Also calleddense coding稠密编码稠密編碼超密编码超密編碼

A supernova is the death-explosion of a star — a single dying star that, for a few weeks, blazes about as bright as ten billion ordinary suns, briefly outshining its whole home galaxy. Imagine a city's worth of fireworks all detonating in one breathless instant, except the "city" is a ball of gas wider than our Solar System.

These explosions are among the universe's great foundries. The calcium in your bones, the iron in your blood, the oxygen you just breathed — almost every atom heavier than helium was cooked inside stars and then flung across space when those stars died: many in supernova explosions, others gently shed by quieter dying stars, and the very heaviest forged when stellar corpses collide. We are, quite literally, made of stardust scattered by ancient stars.

There are two main ways to make one, and a key number decides one of them. A massive star can run out of fuel and collapse under its own weight, rebounding in a titanic shock. Or a dense stellar ember called a white dwarf can siphon matter from a companion until it tips past the Chandrasekhar limit — about 1.4 times the Sun's mass — at which point it can no longer hold itself up and detonates. A common misconception: a supernova is not just a star "burning out." It is a violent, sudden explosion, not a quiet fading.

Also calledsupernovaeSNstellar explosionType Ia supernovacore-collapse supernova超新星爆发超新星爆發

Picture a guitar string. Pluck it the right way and it doesn't have to vibrate at just one pitch — it can sound a blend of several at once, each contributing its own loudness and phase. A qubit in superposition is a bit like that: instead of being pinned to 0 or to 1, it holds a weighted combination of both states. The weights are called amplitudes, written alpha for the |0> part and beta for the |1> part, and they obey |alpha|^2 + |beta|^2 = 1.

Here is the part that almost every headline gets wrong. A qubit in superposition is NOT secretly holding both a 0 and a 1 in the ordinary sense, and a superposition of many qubits is NOT a machine quietly 'trying all the answers at once.' When you measure, you get a single outcome — 0 or 1 — with probability equal to the amplitude squared (|alpha|^2 for 0, |beta|^2 for 1), and the act of measuring collapses the qubit to that result. You never read out the whole blend.

So what is superposition good for? The amplitudes are more than probabilities-in-waiting: they can be positive or negative (and complex), which lets different computational paths add up or cancel out, much like overlapping water waves. A useful quantum algorithm is choreographed so that the amplitudes for wrong answers interfere destructively and cancel, while the amplitude for the right answer is reinforced — and only then does measuring it pay off. Superposition is the raw material; interference is what turns it into an answer.

Also calledquantum superposition叠加疊加量子叠加量子疊加叠加态疊加態

Supervised learning is how a machine learns by example, with an answer key in hand. You hand it thousands of examples where each input is already paired with the right output — a photo labeled "cat," an email marked "spam" — and it gradually figures out the pattern that connects the two. It's like a student studying flashcards: question on the front, answer on the back, practiced until the rules sink in.

The whole point is generalization. Once trained, the machine should handle inputs it has never seen — a brand-new photo, tomorrow's email — and still give the right answer. The tasks come in two flavors: classification, where the output is a category (cat or dog, spam or not), and regression, where the output is a number (a house's price, tomorrow's temperature).

The catch — and it's a big one — is the labels. Every example must be tagged with its correct answer, usually by humans, which is slow and costly. And the machine only learns what the labels teach it: feed it biased or sloppy examples, and it will faithfully reproduce those flaws. "Supervised" doesn't mean someone watches over the machine as it works; it means a teacher supplied the answers during training.

Also calledlabeled learninglearning from labeled data监督式学习有监督学习監督學習

The supplementary motor area, or SMA, is a patch of brain on the inner surface of the frontal lobe — tucked along the middle, where the two halves of the brain face each other, just in front of the strip that fires individual muscles. Think of it as the choreographer of movement rather than the dancer. It does not directly twitch your fingers; instead, it lays out the order and timing of the steps in a planned action — especially the kind of movement you decide to make on your own, from memory or intention, rather than one triggered by something you see or hear. Buttoning a shirt, typing a familiar password, or running through a rehearsed piano passage all lean on the SMA to keep the pieces in the right sequence.

Its specialty is internally generated, self-paced sequences: movements that come from inside, in a learned order, without waiting for an external cue. Recordings show SMA neurons becoming active a moment before you start such a movement — a slow build-up of electrical activity, sometimes called the readiness potential, that reflects the brain preparing the plan. The SMA works closely with the basal ganglia, a set of deep brain hubs that help select and release the next step at the right time, and it passes its blueprint forward to the primary motor cortex, which sends the final commands down to the muscles. When the SMA is damaged, people can still move, but stringing actions together smoothly, starting a movement from intention, and coordinating the two hands in a planned routine all become noticeably harder.

Also calledSMAsupplementary motor cortex辅助运动皮质輔助運動皮質

Supply and demand is the quiet tug-of-war that sets nearly every price you see. On one side, buyers want more of a thing when it's cheaper and less when it's dear; on the other, sellers happily offer more when the price is high and pull back when it's low. The price drifts until those two wishes meet — the spot where the quantity people want to buy exactly equals the quantity sellers want to provide. Picture a farmers' market at noon: if the tomatoes are priced too high, crates sit unsold and the seller marks them down; too low, and they vanish before lunch while a line forms. The price that empties the table with no one left waiting is the balance point.

Economists call that meeting place the equilibrium, and its real power is what happens when the world changes. A heat wave ruins half the harvest — suddenly there are fewer tomatoes to go around, supply shrinks, and the price climbs until the smaller pile is enough to satisfy everyone still willing to pay. Or a new diet craze makes everyone crave tomatoes at once — demand swells, and the price rises until some buyers bow out. No committee sets these numbers; the price moves on its own, like water finding its level, steering scarce goods toward whoever values them most.

The common trap is thinking a price is a fixed fact about a thing — that a tomato simply "is worth" one dollar. It isn't. A price is a moving truce between two crowds, and it only holds until one side shifts. Change how badly people want something, or how much can be made, and the truce breaks and resettles somewhere new.

Also calledthe law of supply and demandmarket equilibriumprice mechanism供需供求市场均衡市場均衡

The suprachiasmatic nucleus, usually shortened to SCN, is a tiny cluster of about twenty thousand brain cells sitting deep in the hypothalamus — a control center near the base of the brain — just above the spot where the two optic nerves cross on their way back from your eyes. Tiny as it is, this little knot of cells is the body's master clock. It keeps a roughly twenty-four-hour rhythm running day and night, and uses that beat to time when you feel sleepy or alert, when your body temperature rises and dips, and when many hormones are released. This daily cycle is called a circadian rhythm, from Latin words meaning about a day.

The remarkable thing is that the SCN keeps ticking on its own. Each of its cells contains a set of genes that switch one another on and off in a loop that takes close to a day to complete, so even cells grown in a dish, with no sense of day or night, keep oscillating. But on its own that internal clock runs a little fast or a little slow, so it needs a daily nudge to stay in step with the real world. That nudge is light. Special light-sensing cells in the retina send a direct signal to the SCN, and bright morning light resets the clock forward while evening light can push it back — much like glancing at a town clock to correct your wristwatch each day.

Once it is set, the SCN broadcasts the time to the rest of the body. It signals the nearby pineal gland to release melatonin, a hormone that rises in the evening and tells the body that night has come, and it sends timing cues to other organs so that liver, gut, and muscle all run on a shared schedule. When this clock is thrown out of step — by crossing time zones, working night shifts, or staring at screens late at night — the result is jet lag and poor sleep, a sign of how much daily life leans on this almond-of-a-cluster keeping good time.

Also calledSCNmaster clockbiological clock主时钟生物钟主時鐘生物鐘
See alsohypothalamus

Real qubits are noisy: they drift and flip far too often to run a long computation directly. The fix is to spread the information of one good qubit across many physical ones, so that errors can be spotted and undone before they pile up. The surface code is today's most practical way to do this. Picture qubits laid out on a flat 2D grid, like beads on a checkerboard. Some beads carry the data; the others are 'helper' qubits that the machine keeps poking with simple parity checks, asking only 'do you and your immediate neighbors agree?' Crucially, each check involves just a few neighboring qubits sitting right next to each other, which is exactly the kind of local, side-by-side wiring that real hardware can actually build.

Those parity checks never reveal the data itself (that would collapse it), but they do reveal a fingerprint of where an error struck. From that pattern of disagreements, a classical decoding algorithm figures out what most likely went wrong and corrects it. The big draw is tolerance: the surface code keeps working even when each physical operation fails around one time in a hundred (a threshold near 1%), which is roughly where good hardware is starting to land. Stay below that error rate and you can drive the logical error rate down as low as you like by making the grid bigger.

The catch is cost. 'Bigger grid' means a lot of physical qubits to protect a single reliable 'logical' qubit, often hundreds to thousands of them, plus fast classical computers running the decoder in real time. That overhead is the main reason large fault-tolerant machines do not exist yet, and why we are still in the NISQ era of small, noisy devices. The surface code is the leading roadmap toward error-corrected computing, not a feature you can switch on today.

Also calledtoric code (close relative)

When you build a superconducting qubit, the metal you carve it from does not stay pristine. The moment it meets air it grows a thin, glassy native oxide, and along the way it picks up stray molecules of water, solvent, and grime that stick to its surface. These few-nanometer layers are exactly where the qubit's electric field is strongest, and they are riddled with the microscopic defects that absorb energy and shorten coherence. Surface treatment is the unglamorous craft of cleaning those surfaces and then protecting them, so the qubit loses less of itself to its own skin.

In practice this is a recipe of chemical and physical steps. Engineers strip the lossy native oxide with acid dips, oxygen or argon plasmas, or gentle ion milling; they bake or pump away adsorbed water and organic residue; and they choose etch chemistries that leave a clean, smooth edge rather than a damaged, defect-rich one. Then comes the protecting part: capping the fresh surface before it can re-oxidize, sometimes by depositing the next layer without breaking vacuum, sometimes by coating it with a thin encapsulation that keeps air away. The whole point is to shrink the amount of lossy, disordered material that the qubit's field has to touch.

Done well, this is a direct lever on coherence, and it is part of why moving to cleaner surfaces and oxides has pushed transmon lifetimes from a few microseconds years ago to a few hundred microseconds in the best devices today. But it is finicky and unforgiving: a recipe that works beautifully on one chip can fail on the next, the gains are hard to make uniform across a whole wafer, and you are fighting chemistry that wants to re-form an oxide the instant you look away. It is steady, incremental progress, not a solved problem.

Also calledsurface passivationinterface cleaningencapsulation表面钝化界面清洁表面鈍化介面清潔

A surface-electrode ion trap turns an old idea into a chip. For decades, physicists held single charged atoms (ions) in mid-air using metal electrodes arranged in a bulky three-dimensional cage. A surface trap takes those electrodes and flattens them onto the face of a chip, like a printed circuit. The ion floats a few tens of microns above the surface, held there by electric fields, and that ion is the qubit. It matters because patterning electrodes with the same lithography used for ordinary chips is the most plausible path to building trapped-ion machines with many qubits instead of a handful.

Trapping works because a static electric field alone cannot hold a charged particle still; it will always slip out in some direction. So the chip drives a few electrodes with a fast radio-frequency (RF) voltage, creating a rapidly oscillating field that, on average, pushes the ion back toward a central line. Other electrodes carry steady DC voltages that pin the ion's position along that line and let designers slide ions around, split them apart, and shuttle them between zones. Laser beams or, increasingly, light delivered through waveguides built into the chip then cool the ion, prepare its state, run gates, and read it out by collecting the photons it scatters.

Where it stands: trapped ions on these chips hold some of the best numbers in the field for gate fidelity and how long a qubit stays coherent, because each ion is a real atom, identical to every other and well isolated from its surroundings. The honest catch is speed and integration. Gates driven by lasers are far slower than the microwave gates of superconducting chips, stray fields from the nearby surface heat the ion's motion, and packing the lasers, optics, photodetectors, and wiring onto one cold chip for thousands of ions is still early-stage engineering. No qubit modality, ion traps included, has clearly won.

Also calledsurface trapchip ion trap平面离子阱平面離子阱芯片离子阱晶片離子阱

Surgical robotics is the use of robot-controlled instruments to help a surgeon operate, usually through tiny cuts instead of one large opening. The surgeon does not hand control to a machine; instead, they sit at a console a few steps away, look at a magnified video of the inside of the body, and move two hand grips. The robot copies those hand movements with thin tool-tipped arms that reach inside the patient — so the doctor's hands stay outside while the working tips move within.

The point of all this is to make minimally invasive surgery — operating through small ports rather than a big incision — easier and steadier. Two tricks make the robot better than a human hand alone. First, motion scaling: the surgeon can move a few centimeters at the console while the tool tip moves just a few millimeters, giving fine, magnified control. Second, tremor filtering: the system quietly cancels the tiny natural shake in everyone's hands, so the instrument tip holds rock-still. The wrist of the tool can also bend in ways a straight handheld instrument cannot, letting it work around corners inside the body.

Because the surgeon and the patient are linked through the machine rather than through direct touch, this is a form of teleoperation — operating a robot at a distance, even if the distance is only across the room. The trade-offs are real: the equipment is very expensive, setup takes time, and the surgeon loses the natural sense of touch (called haptic feedback) and must judge how hard tissue is being pushed mostly by sight. Done well, the upside for patients is smaller wounds, less blood loss, and faster recovery.

Also calledrobot-assisted surgery机器人辅助手术機器人輔助手術

Swarm robotics is the study of getting large numbers of simple, cheap robots to produce smart group behavior by following easy local rules — the way an ant colony forages and builds bridges from its own bodies without any ant being in charge. No robot sees the whole picture or gives orders; each just reacts to the few neighbors and bits of the world right around it. Out of all those tiny local interactions, a useful big-picture behavior quietly appears.

That appearing-out-of-nowhere quality has a name: emergence. A single ant is nearly clueless, yet a colony solves real problems; likewise one swarm robot might only know to follow the robot ahead and avoid crowding, but a thousand of them can flow around an obstacle, cover a field, or cluster on a target. The beauty is that the same simple rule, copied into every robot, scales from ten machines to ten thousand with no central plan to rewrite, and the swarm keeps working even as individuals drop out.

Swarm robotics deliberately trades the power of any one robot for the resilience and reach of the crowd. The robots are kept small, plain, and interchangeable, communicate only over short range, and have no leader to lose — so the swarm is cheap to scale and hard to kill. The catch is design: it is genuinely tricky to invent the local rules that will add up to the global behavior you actually want, and a swarm can sometimes settle into a pattern nobody intended.

Also calledrobot swarm机器人集群機器人集群

In its classic (categorical) form, a syllogism is a tiny argument with a fixed shape: two starting claims (the premises) lock together to force out a third claim (the conclusion). The classic runs — All men are mortal; Socrates is a man; therefore Socrates is mortal. Think of it as two gears meshing: feed in the right pair and the answer turns out by itself, with no extra push needed.

Its power is that the conclusion is guaranteed. If both premises are true and the shape is valid, the conclusion simply cannot be false — it adds nothing the premises did not already commit you to, and the syllogism just drags that commitment into the open. This is the heart of deduction, and Aristotle was the first to map it out, sorting which shapes are watertight and which only look it.

The common trap: a valid syllogism can still reach a false conclusion if you feed it a false premise. "All birds can fly; a penguin is a bird; so a penguin can fly" follows the rules perfectly — yet it's wrong, because the first premise is false. Validity guarantees the wiring, not the inputs; garbage in, garbage out.

Also calledcategorical syllogismAristotelian syllogism演绎三段论亞里士多德三段論

These are the two main branches of the autonomic nervous system — the part of your nervous system that runs automatic background jobs like heartbeat and digestion without your having to think about them. The two branches usually push the same organs in opposite directions, so they make a handy pair of opposites. The sympathetic division is the body's gas pedal: it gears you up for effort or danger in the classic 'fight or flight' response, speeding the heart, widening the airways, dilating the pupils, dumping stored sugar into the blood, and putting non-urgent jobs like digestion on hold. The parasympathetic division is the brake — 'rest and digest' — slowing the heart, narrowing the pupils, and switching digestion and recovery back on.

Crucially, neither branch is simply 'on' or 'off.' Both run all the time, and what your body actually does depends on the moment-to-moment balance between them rather than on one acting alone. A scare floods you with the sympathetic surge; once the threat passes, the parasympathetic side gradually eases your racing heart back down. Good health depends not on one winning, but on being able to shift smoothly between revving up and calming down as circumstances change — which is why steady, abnormally tipped balance (too much 'fight or flight' for too long, for instance) is linked to stress-related illness.

They differ in their wiring too. Sympathetic nerves leave from the middle section of the spinal cord (the chest and lower-back levels), while parasympathetic nerves leave from the brainstem and the very bottom of the cord (the sacral levels near the tailbone). For that reason the sympathetic outflow is sometimes called thoracolumbar and the parasympathetic outflow craniosacral.

Also calledfight or flightrest and digestthoracolumbar and craniosacral outflows交感神经副交感神经交感神經副交感神經战或逃戰或逃

The sympathetic-adrenal response is the body's instant alarm system — the jolt of energy you feel in the first second after a near-miss in traffic or a sudden loud bang. Two things fire together. First, the sympathetic nerves (the branch of your automatic nervous system that revs the body up for action) light up all at once. Second, those same nerves reach deep into the core of your two adrenal glands — small caps sitting on top of each kidney — and squeeze a quick squirt of adrenaline into your bloodstream. Because it travels by nerve rather than by slow chemical diffusion, the whole surge hits in well under a second, which is why your heart is already pounding before you have consciously understood what frightened you.

The inner core of the adrenal gland, called the adrenal medulla, is the key player here. It is really a piece of nervous tissue dressed up as a gland: instead of passing a message to the next nerve cell, its cells dump their chemical messenger — adrenaline, also called epinephrine — straight into the blood, so it can flood every organ at once. The effect is the classic fight-or-flight package: heart racing, airways opening wide to gulp more air, pupils widening, stored sugar pouring into the blood for fast fuel, and blood shunted away from digestion toward the muscles. It prepares you to run hard or stand and fight, and then, once the danger passes, it fades and the calming branch of the nervous system gradually settles you back down.

Also calledfight-or-flight responsesympathoadrenal responseadrenaline rush战或逃反应肾上腺素飙升戰或逃反應腎上腺素飆升

A synapse is the tiny meeting point where one nerve cell passes a message to another cell — usually another nerve cell, but sometimes a muscle or a gland. Think of it like two people standing close together but not quite touching: one whispers, the other listens. The cell sending the message and the cell receiving it do not actually fuse; there is a microscopic gap between them, and the whole job of the synapse is to carry the signal across that gap.

Most synapses pass their message using chemicals rather than direct electrical contact. When an electrical pulse arrives at the end of the sending cell, it triggers the release of small chemical messengers called neurotransmitters into the gap. These drift across, land on matching receptors on the receiving cell like keys fitting into locks, and nudge that cell either to fire its own signal or to stay quiet. Because each synapse can be strengthened, weakened, or rewired with use, synapses are where learning, memory, and nearly all communication in the brain physically take shape.

Also calledsynaptic junction神经元接头神經元接頭

The synaptic cleft is the tiny gap between two neurons at the point where one passes a message to the next. Even though we often picture brain cells as wired together, most of them never actually touch. Instead, the sending cell stops just short of the receiving cell, leaving a sliver of space — only about twenty millionths of a millimeter wide — filled with watery fluid. That sliver is the synaptic cleft, and it is where the conversation between neurons happens.

An electrical signal cannot simply leap across this gap, so the sending cell uses a chemical messenger instead. When its signal arrives, the sending side releases tiny packets of a chemical called a neurotransmitter into the cleft. These molecules drift across the narrow space and land on matching receptors on the receiving cell, like a key sliding into a lock, telling that cell to fire its own signal or to quiet down. Because the gap is so small, the message crosses in well under a millisecond; and because it is a separate, watery space, the brain can mop up leftover neurotransmitter quickly and keep each signal crisp and brief rather than letting it smear on.

Also calledsynaptic gapsynaptic junction gap突触裂隙突觸裂隙

Synaptic integration is how a single neuron adds up all the messages crashing into it and decides whether to fire its own signal. A neuron is not a simple relay that passes along whatever it receives. Instead, it is more like a person standing in a crowd, listening to thousands of voices at once — some shouting yes, some shouting no — and then making one decision based on the overall mood. Each incoming connection (a synapse) gives the neuron a tiny nudge: an excitatory nudge pushes it a little closer to firing, while an inhibitory nudge pulls it back. The neuron constantly tallies these nudges, and only when the total push crosses a certain tipping point, called its threshold, does it fire off its own electrical spike to the next cells in line.

This tallying happens in two ways at once. The first is across space (spatial summation): nudges arriving at the same moment but at many different spots on the neuron's branches stack together, so several weak signals can join forces to reach the threshold. The second is across time (temporal summation): nudges arriving in quick succession from the same spot pile up before the earlier one has faded, like rapid drips filling a cup faster than it can drain. Excitatory and inhibitory inputs are weighed against each other in this same running total, and inhibition can quietly cancel out excitation. Because of this, the neuron is doing a small computation every instant — not just counting how many inputs are active, but where they land, when they land, and whether they push toward or away from firing. Synaptic integration is the basic unit of decision-making that, repeated across billions of neurons, gives rise to everything the brain does.

Also calledneural integrationinput summation神经整合神經整合输入求和輸入求和

Synaptic plasticity is the brain's ability to make the tiny connections between nerve cells stronger or weaker depending on how much they are used. A synapse is the little gap where one neuron passes a message to the next; think of it like a footpath between two houses. When that path gets used over and over, it gets worn wider and easier to travel, so the message crosses faster and more reliably. When it sits unused, it grows over with weeds and the message gets through only weakly. The connection is not fixed at birth — it is constantly being remodeled by your own activity.

This tuning of connections is widely believed to be how learning and memory physically happen inside the brain. A common rule of thumb is "cells that fire together, wire together": when two neurons are active at the same moment again and again, the synapse between them strengthens, a change called long-term potentiation. The opposite, weakening a rarely-used connection, is called long-term depression. By turning the volume up on useful pathways and down on useless ones, the brain encodes a new skill, a face, or a fact as a lasting pattern of strong and weak synapses — which is why practice makes a memory stick and why forgetting can let a connection fade.

Also calledsynaptic strength changeexperience-dependent plasticity突触强度变化突觸強度變化

Synaptic pruning is the brain's way of tidying up by deleting its own extra connections. A synapse is the tiny junction where one nerve cell passes a message to the next, and a developing brain builds far more of these junctions than it will ever need — like a gardener planting seeds everywhere at first, just in case. Pruning is the trimming that follows: weak, rarely-used connections are snipped away, while the ones that get used a lot are kept and strengthened. Picture a hillside crisscrossed by countless faint footpaths; over time, the trails people actually walk become clear roads, and the ones nobody uses vanish under the grass.

This trimming is guided by a simple principle — connections that are active and useful survive, and quiet ones are removed, often described as "use it or lose it." Special clean-up cells in the brain called microglia do much of the physical cutting, tagging and swallowing the unwanted synapses. The result is not a poorer brain but a sharper one: by clearing away the clutter, pruning makes the surviving circuits faster, more efficient, and better tuned to the world a person actually lives in. It is most dramatic in childhood and adolescence, which is one reason early experiences shape the adult brain so deeply, and when pruning goes wrong — cutting too much or too little — it is thought to contribute to conditions such as schizophrenia and autism.

Also calledsynapse eliminationneural pruning突触消除神经修剪突觸消除神經修剪

A synaptic vesicle is a tiny bubble — a sac wrapped in a thin oily skin called a membrane — that a nerve cell uses to store its chemical messages. Picture a neuron's signal racing down a long wire to the very tip, where it needs to hand off the message to the next cell. The two cells do not actually touch; there is a microscopic gap between them. So instead of passing electricity directly across, the sending cell squirts out chemicals called neurotransmitters. The synaptic vesicle is the little container that holds those chemicals ready and waiting, like a water balloon pre-filled and parked just behind the wall, prepared to burst at a moment's notice.

Each of these sacs is packed with thousands of neurotransmitter molecules and parked near the cell's edge in a region called the terminal — the swollen end of the wire where one neuron meets another. When an electrical signal arrives, it triggers calcium to rush in, and that signal makes the vesicle move up and fuse with the outer wall of the cell, dumping its chemical cargo into the gap so it can drift across and tickle the next neuron. Afterward the cell recycles the empty sac, refills it, and lines it up again, so it is always ready to fire. Bundling the chemicals into vesicles is what lets neurons send signals in quick, clean packets rather than as a constant leak — and it is also where many drugs, toxins, and medicines act, by changing how these little bubbles fill, dock, or release.

Also calledneurotransmitter vesiclesynaptic bubble神经递质囊泡神經遞質囊泡

Synaptogenesis is the process by which brain cells build new connection points with one another. Brain cells, called neurons, talk to each other across tiny junctions called synapses — think of each synapse as a doorway where one neuron passes a chemical message to the next. Synaptogenesis is simply the construction of those doorways: a young neuron reaches out, finds a partner, and the two cells assemble the special machinery on both sides that lets a signal cross. It is how a developing brain wires itself into a working network instead of staying a loose crowd of disconnected cells.

This wiring happens at a staggering pace early in life. Around birth and through the first couple of years, a baby's brain can form many thousands of new synapses every second, far more than it will ultimately keep. The new connections grow strongest where neurons fire together in response to real experience — touch, sound, light, a parent's voice — which is why early experiences shape the brain so deeply. Later, the brain trims away the connections it uses least (a clean-up step called pruning), keeping the useful pathways and discarding the rest. Synaptogenesis never fully stops: even in adults, learning a new skill or memory depends on growing fresh synapses, which is a major reason the brain can keep changing throughout life.

Also calledsynapse formation突触形成突觸形成

Syntax is the set of rules a language uses to arrange words into sentences that actually sound right. It's the difference between "the cat chased the dog" and a jumble like "chased dog the cat the" — same words, but only one of them lands as a real sentence. Think of it as the grammar of word order: the invisible scaffolding that holds a sentence up.

It matters because syntax, not just the words, carries meaning. "The dog bit the man" and "The man bit the dog" use identical words, yet they tell opposite stories — only the arrangement tells you who did what to whom. Every fluent speaker follows thousands of these rules without ever being taught them, which is why a sentence can feel "off" long before you can explain the reason.

One common mix-up: syntax is not the same as meaning. "Colorless green ideas sleep furiously" is perfectly well-formed syntactically — the words sit in all the right slots — even though it makes no sense at all. Syntax governs the shape of a sentence; whether that shape carries a sensible idea is a separate question.

Also calledsentence structureword order句法句法学語法結構

For decades the recipe for a better chip was simple: shrink the transistors and let everything else come along for the ride. Smaller meant faster, cheaper, and lower-power all at once. That free ride is over — node names like '3nm' are now marketing labels rather than a real gate length, Dennard scaling (the rule that shrinking also cut power) broke around 2006, and the gains from one more shrink no longer pay for themselves. System-technology co-optimization is the answer to that limit: instead of asking 'how small can we make the transistor?', you design the whole system — the architecture, the chip, and the package — together as one problem. It is the philosophy often summarized as 'more than Moore', squeezing performance out of how the pieces are arranged rather than only from how tiny they are.

Think of building a house. The old approach was to keep inventing thinner bricks. STCO is hiring an architect who decides the floor plan, the wiring, and the foundation as a single plan — sometimes a thinner brick helps, but sometimes the bigger win is moving the kitchen next to the dining room. In a chip, that means choosing to split a big die into chiplets that mix nodes and improve yield, stacking memory like HBM right next to the logic to beat the memory wall, routing power up through the backside of the wafer so the front metal is free for signals, or tailoring the architecture to one job (a domain-specific design). STCO is the layer above design-technology co-optimization (DTCO): DTCO tunes the standard cells and the process together, while STCO zooms all the way out to the system the chip lives in.

Also calledSTCOmore than Moore超越摩尔超越摩爾
T

A tactile sensor is a skin-like surface that lets a robot feel exactly where it is being touched, how hard, and sometimes how rough or smooth — spread out over an area, the way your fingertip senses pressure across its whole pad, not just at one spot. Instead of a single force reading, it gives a little map of contact, like a tiny pressure picture painted on the robot's hand.

Under that surface sit many small sensing points packed close together. Each one changes some measurable property when squeezed — a common trick is for the material's electrical resistance or its stored electric charge to shift slightly under pressure — and reading all the points together shows the shape of whatever is pressing on it. Finer, denser points mean the robot can feel finer detail, just as more touch nerves in your fingertip let you read braille.

This matters most for grasping. A tactile sensor tells a robot the instant an object first touches its fingers, whether that object is starting to slip, and how to grip a soft tomato firmly enough to lift it but gently enough not to crush it. Cameras can see an object's outside, but only touch reveals the contact itself — and contact is where holding, placing, and manipulating actually happen.

Also calledtouch sensorrobot skin电子皮肤電子皮膚

Tape-out is the moment a chip design crosses from drawing to building — when the finished layout is signed off and handed to the foundry to be turned into silicon. Think of an architect who has fussed over every wall for years finally rolling up the blueprints and shipping them to the construction crew. From here the design is frozen: the bricks are about to be laid, and once the diggers arrive there is no nudging a single line.

Concretely, the layout (a GDSII or OASIS file) goes to the fab, where it is used to make a mask set — the quartz-and-chrome stencils that print each layer onto the wafer. At a leading node a mask set can cost millions of dollars, so tape-out is the point of no return: any bug found now means a respin. Weeks of processing follow, and then the anxious wait for 'first silicon' — the very first wafers back, to see if the chip powers up and runs.

Also calledtapeout流片投片下线下線

Tapeout is the finish line of chip design: the moment you hand the completed, fully verified layout to the fab to be manufactured. Picture an architect who has spent months tweaking every wall, pipe, and outlet, then finally rolling up the master blueprint and couriering it to the builder. Once it leaves your hands the design is frozen and the digging starts — there is no nudging a wire after this. That is why tapeout sits at the very end of the back-end flow, only after floorplan, placement, clock-tree synthesis (CTS), routing, then extraction plus timing signoff (STA), and finally DRC, LVS, and the power checks have all passed clean. You do not tape out hopeful work; you tape out work that has survived every signoff gate.

What actually ships is a layout database — historically GDSII, increasingly OASIS — describing every polygon on every layer. It goes to the mask shop, where each layer becomes a photomask: a quartz-and-chrome stencil that lithography uses to print that layer onto the wafer. Because committing a full mask set at a leading node can cost millions of dollars and weeks of fab time, tapeout is the true point of no return — any bug caught afterward means a costly respin. Then you wait. Weeks later the first wafers come back as 'first silicon,' and the team moves to bring-up: powering the chip on a board, checking it boots, and measuring whether it actually meets the timing and power you signed off in simulation.

Also calledtape-outGDSII handoff流片签出GDSII 交付流片簽出

Task space is the way we describe where the robot's hand actually is and which way it is pointing, out in the physical world — not in terms of joint angles, but in terms a person would naturally use: this position, this orientation, in this room. A point in task space is the hand's full pose: where it sits in space (its place) together with how it is tilted and turned (its facing). It is also called operational space, because it is the space in which the actual job gets defined.

This is the language of goals. You almost never want to tell a robot raw joint numbers; you want to say put the gripper here, level, facing the shelf, or move the welding tip along this seam at this speed. All of those instructions live in task space, because they are about the hand's place and aim in the world, completely independent of how many joints the arm has or how they happen to be arranged inside.

Because the motors only understand joint space, the robot must constantly translate between the two. Going from joint angles to the hand's pose in task space is forward kinematics; going the other way, from a desired pose in task space back to the joint angles that achieve it, is inverse kinematics. Task space is where we state what we want; joint space is where the machine makes it happen.

Also calledoperational spaceCartesian space操作空间操作空間

Taste receptors are special sensing cells packed inside your taste buds — the tiny bumps scattered across your tongue, the roof of your mouth, and the back of your throat. Each one is a chemical detector: when food dissolves in your saliva, these cells sample the loose molecules drifting past and report what they find. Picture a crowd of tasters at a buffet, each trained to recognize just one flavor and to raise a hand the moment it shows up. Together they let your brain build the sensation we call taste.

There are five basic tastes the tongue can detect, and different receptors handle each one. Sweet (sugar, the body's quick fuel), umami (the savory richness of meat, broth, and cheese, signaling protein), and bitter (often a warning of spoiled or poisonous food) are caught by lock-and-key proteins on the cell surface, where a matching molecule clicks in and trips a chain of internal helpers. Salty (sodium, needed to keep body fluids in balance) and sour (acid, the tang of lemon or unripe fruit) are sensed more directly, as charged particles slip through tiny pores straight into the cell. However the signal starts, the receptor cell ends up nudging a nearby nerve fiber, which carries the news along cranial nerves to the brain, where flavor is finally pieced together — often blended with smell, texture, and temperature.

It is a myth that the tongue has separate 'zones' for each taste — sweet at the tip, bitter at the back, and so on. In reality every region can detect every basic taste, just with slightly different sensitivity. What makes a strawberry taste like a strawberry, rather than mere sweetness, is your nose: most of the rich detail we call 'flavor' comes from smell, which is why food tastes flat when you have a cold.

Also calledtaste receptor cellsgustatory receptor cells味觉受体细胞味蕾感受细胞味覺受體細胞味蕾感受細胞

Transcranial direct-current stimulation, almost always shortened to tDCS, is a way to gently nudge the brain from outside the head using a very weak, steady electric current. Two soft sponge pads soaked in salt water are strapped to the scalp, and a battery pushes a tiny current — usually one to two milliamps, far weaker than a flashlight bulb — in through one pad and out through the other. A small slice of that current seeps through skull and skin to reach the underlying cortex, the brain's wrinkled outer sheet. The word is built from its parts: trans-cranial means across the skull, and direct-current means the electricity flows steadily in one direction rather than pulsing.

The current is far too weak to make a neuron fire on its own. Instead it does something subtler: it slightly tips the voltage that nerve cells sit at while resting, making them either a little more or a little less likely to fire when their normal signals arrive. As a rough rule, the area under the positive pad (the anode) becomes more excitable, and the area under the negative pad (the cathode) becomes less so. So rather than forcing the brain to do anything, tDCS quietly turns the volume up or down on whatever circuits are already working — which is why it is called a way to modulate, not command, neural activity.

Because it needs no surgery, no needles, and no powerful magnets, tDCS is cheap, portable, and painless apart from a brief tingle, which makes it a popular research tool for asking how a given patch of cortex contributes to memory, movement, mood, or learning. Its effects are mild and can linger for a while after the current stops, and it is being studied as a possible treatment for conditions such as depression and chronic pain — though results so far are modest and still debated.

Also calledtDCSweak transcranial electrical stimulation经颅直流电刺激术經顱直流電刺激術

Technical debt is the future cost of a quick-and-dirty solution you choose now to ship faster — a shortcut you'll have to pay back later by reworking it properly.

Like real debt, it can be a smart trade. Borrowing time to hit a deadline is fine, as long as you remember you borrowed it. The danger is the 'interest': every shortcut you leave in place makes the next change a little slower and a little riskier, and that interest compounds. Ignore it long enough and a one-day feature starts taking a week, because you keep tripping over the messes you left behind.

Not all debt is reckless — sometimes a hack is the right call to learn whether an idea even works. The grown-up move is to name it out loud ("this is temporary"), write it down, and budget time to pay it back before the interest eats you alive.

Also calledtech debtcode debtdesign debt

Teleoperated demonstration data is the training material a robot learns from when a human remotely drives the robot's own body through a task, and every motion is recorded. A person wears a glove, holds a controller, or moves a small twin of the arm, and the real robot copies their movements in real time; meanwhile the camera images, joint angles, and gripper states are all saved. The result is a recording that says, in effect, in this exact situation, here is what a skilled human chose to do with this robot, step by step.

This kind of data is prized because it is grounded in a way other sources are not. The demonstration is performed on the very kind of robot that will later be trained, so the recorded motions already respect that robot's real reach, speed, and clumsiness — there is no gap between a human hand and a metal gripper to paper over. Watching a video of a person cooking does not tell a two-fingered robot how to move its own joints, but teleoperated demonstrations speak the robot's native language of joint commands directly, which is exactly what learning methods like behavior cloning need in order to imitate.

The price is human time and effort. Every demonstration needs a person patiently steering the robot, so collecting the thousands of examples that modern learning craves is slow and expensive, and the data is only as good as the operators' skill and consistency. To stretch each precious demonstration further, teams gather varied examples across many objects and starting positions, share large teleoperation datasets, and increasingly let robots practise on their own once a base of human demonstrations has given them a head start.

Also calledteleop datademonstration dataset遥操作数据示範資料集

Teleoperation is controlling a robot from a distance, with a human doing the deciding in real time while the robot does the doing somewhere else. The person watches through the robot's cameras and sensors, then sends commands — pushing a joystick, moving their own hand, or pressing buttons — and the robot copies those commands far away. It is the opposite end of the scale from autonomy: here the robot supplies the body and the reach, but a human still supplies the brain.

The reason to do this is usually that the place is too dangerous, too far, too small, or too delicate for a person to be there in the flesh. A bomb-disposal robot lets an operator handle explosives from behind cover; an underwater robot lets a pilot on a ship inspect a pipeline a kilometer down; a surgeon can guide tiny instruments through incisions far smaller than a hand. The human's judgment goes where the human's body safely cannot.

Teleoperation, full autonomy, and shared control form a spectrum rather than rivals. Pure teleoperation puts the human fully in charge; full autonomy takes the human out of the loop; and shared control sits between, letting the robot handle steady, fast, or repetitive parts while the human supplies high-level intent. A delay in the signal — even a fraction of a second — makes pure teleoperation hard, which is one big reason robots working far away, like on other planets, must lean on autonomy instead.

Also calledremote operationtelerobotics远程操控遠程操控

Seen as a way of interacting with a robot, teleoperation is the mode where a human steers the machine in real time and the robot acts as the person's distant hands and eyes. The human watches a live feed from the robot's cameras and sensors and sends commands — moving a joystick, swinging their own arm, squeezing a grip — while the robot copies them somewhere else. Among the ways people and robots can work together, this one keeps the human firmly in the driver's seat moment by moment, rather than handing the robot a goal and stepping back.

What makes this mode tricky is the loop the human is closing: see, decide, command, watch the result, correct. Two things can break that loop. The first is latency — the lag between sending a command and seeing what it did. Even a third of a second turns smooth control into a frustrating overcorrect-and-wait dance, and over long distances, such as to a robot on Mars, the lag is far worse. The second is feedback: a remote operator cannot feel how hard the robot is gripping or pushing unless the system deliberately sends that force back to them, often through a controller that resists the hand. Good force feedback can be the difference between cracking an egg and crushing it.

Because pure moment-to-moment control is so demanding, real systems usually blend it with autonomy in what is called shared control. The human supplies intent — 'go to that valve,' 'grasp that handle' — and the robot fills in the fast, fiddly details, stabilizing itself and avoiding obvious mistakes between human commands. This division of labor lets one operator manage a robot, or even several, far more comfortably than raw teleoperation would allow, and it gracefully covers for delay by letting the robot keep itself safe while it waits for the next instruction.

Also calledremote controlshared control共享控制

A telescope is a light bucket. Distant stars and galaxies do send their light all the way to us, but by the time it arrives it is hopelessly faint — far too little for the small pupil of your eye to notice. A telescope solves this with one elegant trick: a big lens or mirror catches light over a wide area and funnels it into a single bright point, so an object too dim to see suddenly springs into view.

Bigger really is better here. Because a telescope's power comes mainly from how much light it gathers, a mirror twice as wide collects four times the light — which is why observatories race to build ever-larger mirrors, the largest now under construction wider than a tennis court is long. Sharper magnification helps too, but it is the light-gathering, not the zoom, that pulls the faintest objects out of the dark.

In 1609 Galileo turned a small handmade telescope toward the night sky — and astronomy changed overnight. He saw mountains on the Moon, four moons circling Jupiter, and that the milky band overhead was a swarm of countless stars. A common misconception is that he invented the telescope; he didn't, but he was among the first to point one upward and truly read what it showed.

Also calledoptical telescoperefractorreflector折射望远镜反射望远镜折射望遠鏡反射望遠鏡

Temporal coding is the idea that the brain carries information not just in how many signals a neuron fires, but in the exact moments when each signal arrives — the precise rhythm and timing of its electrical pulses. A neuron communicates by firing brief spikes (sharp electrical blips, also called action potentials), and under temporal coding the gaps between those spikes, and when they line up relative to other neurons, are themselves the message. Think of Morse code: it is not how many beeps you hear that matters, but the pattern of short and long pauses between them. Two messages with the very same number of beeps can mean completely different things if the timing differs.

This stands in contrast to rate coding, the simpler idea that meaning lives only in the overall firing rate — a louder sound or a brighter light just makes a neuron fire faster, and the brain reads off that average speed. Temporal coding says there is extra information hidden in the fine structure of timing that an average would throw away. A striking real example is sound localization: to tell whether a noise came from your left or right, your brain compares spikes from your two ears down to fractions of a millisecond, because sound reaches the nearer ear a hair sooner. Timing differences far too small to change any firing rate are exactly what let you pinpoint the source.

Why it matters: precise timing lets the brain pack more information into the same spikes and respond faster, since a single well-timed spike can carry meaning without waiting to build up a high rate. Neurons can also coordinate by firing together in step, often locked to the brain's background rhythms (oscillations), so that which neurons spike at the same instant helps bind separate features — a shape, a color, a motion — into one perceived object. How much the brain relies on exact timing versus average rate is still actively studied, and the honest answer is that it uses both, in different amounts in different places.

Also calledspike-timing codetemporal code时间码時間碼

Terrain traversability is a robot's judgement about whether a patch of ground ahead can actually be crossed — safely, without getting stuck, tipping over, or wrecking itself. It is the machine version of the quick glance a hiker gives the trail before each step: is that slope too steep, is that mud too soft, is that gap between the rocks too wide for my legs? The answer is not simply yes or no but a matter of degree, and it depends heavily on what kind of robot is asking. A staircase is an easy obstacle for a legged robot, a hard wall for a wheeled one, and irrelevant to a drone, so traversability is always judged for a particular body, not in the abstract.

To make that judgement, the robot reads the shape and feel of the ground from its sensors — usually a depth camera or a laser scanner that returns a cloud of 3D points — and then scores small cells of the surface on a few practical qualities. Slope is how tilted the ground is: gentle is fine, steep risks rolling backward or sideways. Roughness is how bumpy or uneven it is: smooth pavement is easy, a field of loose cobbles jolts and snags the wheels. Obstacles are the things sticking up or cut down — boulders, curbs, ditches, stairs — that must be climbed, stepped over, or steered around. Surface properties are what the ground is made of: firm rock grips well, while sand, snow, ice, or wet leaves can let the robot slip, sink, or bog down even where the shape looks perfectly flat.

The result is usually drawn as a traversability map, a kind of colored grid laid over the world where green means go, red means avoid, and shades in between mean proceed with caution. The planner that decides the robot's route then treats this map like a hiking map with no-go zones marked, steering around the red and threading through the green. Getting this right is the difference between a delivery rover that confidently rolls down the sidewalk and one that face-plants off a curb or gets hopelessly mired in a flowerbed.

Also calledtraversabilityground passability可通行性可通行性评估

Before you trust a new circuit design, you want to put it on the bench, hook up a signal generator to its inputs, and watch its outputs on a scope — feeding it inputs you control and confirming it does the right thing. A testbench is that bench, written in code. It is a piece of HDL that surrounds your design — the design under test (DUT) — drives stimulus into its inputs, and inspects what comes back out, all in simulation, with no physical hardware involved.

The defining trait of a testbench is that it is not synthesizable: it never becomes gates on a chip. That freedom is the whole point. Where your design is restricted to constructs that hardware can actually build, a testbench can use file I/O, `wait` statements, delays in nanoseconds, loops, and printed messages — whatever it takes to mimic the outside world and to judge the design. A typical testbench instantiates the DUT, generates a clock and reset, applies a sequence of inputs, and then checks each result — comparing the DUT output against an independently computed expected value and flagging any mismatch.

That checking is what separates a real testbench from a demo. A bench that only wiggles inputs and leaves you to eyeball waveforms catches almost nothing; a good one carries its own notion of "correct" — a reference model, a set of expected values, or assertions — and fails loudly the moment reality diverges. As designs grow, these benches scale up into full verification environments that pair self-checking with constrained-random stimulus to explore corners a human would never think to type by hand.

Also calledtest benchverification environmenttest harness测试平台測試平台

Thalamocortical sleep rhythms are the slow, sweeping waves of electrical activity that wash back and forth between two brain regions while you sleep: the thalamus, a deep central hub that relays incoming signals, and the cortex, the wrinkled outer sheet where most thinking happens. The two are wired together in a loop, so when one fires, it nudges the other, which fires back — like two people on a seesaw pushing each other into a steady rhythm. During alert wakefulness this loop runs in a fast, busy, irregular pattern; as you drift toward sleep, the loop slows down and the millions of cells start firing together in big synchronized pulses instead of chattering on their own.

These synchronized pulses are exactly what a brain-wave recorder (an EEG) picks up as the signature waves of sleep — for example the brief bursts called sleep spindles and the large, slow swells of deep sleep. They are more than just a readout: by quieting the thalamus, they act like a gate that blocks most outside sights and sounds from reaching the cortex, which is part of why a sleeper does not wake at every small noise. The same coordinated waves are also thought to help the brain sort and store memories from the day and to give overworked cells a chance to rest and recover, so the rhythm is not just a sign of sleep but part of the work sleep does.

Also calledthalamocortical oscillationssleep oscillations丘脑皮质振荡視丘皮質振盪

The thalamus is a pair of egg-shaped clumps of brain tissue sitting right in the middle of your brain, one in each half, just above the brainstem. Think of it as the brain's central switchboard or busy mail-sorting room: almost every message coming in from your senses, and many of the commands going out to your muscles, passes through here first and gets routed onward to the right destination. Touch, sight, hearing, and taste signals all stop at the thalamus before they reach the wrinkled outer layer of the brain, called the cortex, where conscious experience and thinking happen. (Smell is the one famous exception that mostly skips it.)

Crucially, the thalamus is not just a passive relay that forwards everything unchanged. It actively decides which signals get turned up and which get dimmed, helping you focus on what matters and ignore the rest, and it quiets sensory traffic when you fall asleep. Each patch of it connects to a specific patch of cortex through two-way wiring, so the cortex can also talk back and tune what the thalamus passes along. Because it sits at this crossroads, damage here can blur or scramble sensation, disturb sleep and alertness, and even cause persistent, hard-to-treat pain.

Also calleddiencephalon relay间脑中继站間腦中繼站

The binding problem is a deep puzzle about how the brain stitches many separate scraps of information into one whole, unified experience. When you look at a red ball rolling across a table, your brain does not handle that scene in one place. Different patches of tissue, often far apart, work on the color, the round shape, the motion, and the location, each in its own little corner. Yet you never see a stray red smear, a shapeless blob, and some drifting motion as three loose pieces — you instantly see one red ball, moving, right there. The puzzle is: how do all those scattered, separately computed features get glued back together into a single coherent object, and into one seamless moment of experience?

This matters because the brain has no central screen where everything is gathered and re-painted into a finished picture — there is no tiny viewer inside the head watching a movie. The information stays spread out across billions of neurons, so the brain needs some trick to mark which pieces belong together and keep them from getting mixed up with the pieces of other objects nearby. One leading idea is timing: neurons that are coding parts of the same thing fire in step with one another, sharing a common rhythm, like musicians keeping the same beat to show they are playing one song together. Other ideas point to attention spotlighting one object at a time, or to special 'pointer' connections that link related features. No single answer is settled, which is why binding remains one of the most active and humbling questions in the science of perception and consciousness.

The same puzzle shows up in machines: an artificial vision system can detect 'red' and 'round' and 'moving' as separate labels, yet still struggle to be sure they describe one and the same object rather than three different ones. So the binding problem is not just about brains — it is a basic question about how any thinking system can build a unified picture out of pieces processed in parallel.

Also calledfeature bindingbinding problem特征绑定特徵綁定捆绑问题捆綁問題

The Enlightenment was an 18th-century burst of thinking that put human reason on the throne. Its big idea was simple but radical: instead of accepting truth because a king, priest, or ancient book said so, you should test it with evidence and your own clear thinking. Picture a room where someone finally throws open the shutters and says, "Let's stop guessing in the dark — let's measure, question, and figure this out for ourselves."

From that one move, everything else followed. If ordinary people could reason, then ordinary people had rights — to speak, to worship freely, to be ruled by laws rather than the whims of a monarch. Thinkers like Locke, Voltaire, Rousseau, and Kant argued that government should serve the governed, not the other way around. These arguments fed straight into the American and French Revolutions and still echo in every modern constitution and human-rights charter.

One common mix-up: the Enlightenment was not a tidy club where everyone agreed. It was a noisy argument. Rousseau and Voltaire couldn't stand each other; some champions of liberty still owned slaves or excluded women from their grand promises. Calling it "the Age of Reason" can make it sound serene, but it was really a centuries-long quarrel about what reason actually demands — a quarrel we're still having.

Also calledAge of ReasonAge of Enlightenment理性时代理性時代Siècle des LumièresAufklärung

The Industrial Revolution was the moment, beginning in late-1700s Britain, when work moved out of the home and the workshop and into the factory — and machines, driven by steam rather than muscle, took over the heavy lifting. Picture a village where women had spun thread by hand for centuries; within a generation, that thread was being spun by clattering rows of machines in a brick mill, hundreds of them under one roof, never tiring, never stopping.

Why it mattered is hard to overstate: it remade almost everything at once. People poured out of the countryside into fast-growing cities to take factory jobs. The clock replaced the sun as the master of the working day. Goods that had been scarce and costly — cloth, iron, eventually railways and cheap travel — became abundant. For the first time in history, ordinary economies began to grow, year after year, instead of staying roughly still for centuries.

One common misconception is that it was a single sudden event, like a battle with a date. It wasn't. It was a slow-rolling transformation that unfolded over decades and spread unevenly — steam, coal, iron, and the factory feeding one another — and for many of the first workers, including children, the early years brought grueling hours, dangerous machines, and grimy, crowded towns, not instant comfort.

Also called第一次工业革命First Industrial Revolutionthe Machine Age

The Renaissance was Europe's great "rebirth" — a roughly 14th-to-17th-century burst of energy in art, learning, and science that began in the wealthy city-states of Italy and spread north. Picture a society that had spent centuries looking up to heaven suddenly turning to look around itself: at the human body, at the natural world, at the dusty Greek and Roman books gathering in monastery libraries. People decided those ancient ideas were worth reviving, and got to work.

What made it feel so new was an outlook called humanism: the conviction that this life, this world, and the individual person were worth studying and celebrating, not just endured on the way to the afterlife. Artists like Leonardo and Michelangelo painted real faces full of feeling; thinkers prized curiosity, eloquence, and the all-round "Renaissance man" who could do a bit of everything. The printing press then poured these ideas across the continent faster than any age before.

A common myth is that Europe leapt overnight from a dark, ignorant "Middle Ages" into sudden brilliance. In truth the Middle Ages had plenty of learning, and the Renaissance built on it; the "rebirth" was a renewed enthusiasm for classical antiquity, not a switch flicked from black to white.

Also calledRenaissancerebirth文艺复兴文藝復興Rinascimentohumanism人文主义人文主義

The Scientific Revolution is the roughly two-hundred-year stretch — from the 1500s into the early 1700s — when Europeans stopped taking the ancient authorities' word for how nature works and started looking, measuring, and testing for themselves. Picture a scholar who, instead of reciting what Aristotle said about how things move, builds a smooth sloping ramp, rolls a ball down it, and carefully times the roll to see for himself what the rule really is — much as Galileo actually did with his inclined planes. That shift in habit, from "the book says" to "let's check," is the heart of it.

Three tools did the heavy lifting: careful observation, the deliberate experiment, and mathematics used as the language of nature. Copernicus put the Sun, not the Earth, at the center of the heavens; Galileo turned a telescope upward and pointed a new physics at moving bodies; and Newton tied it all together, showing that one set of equations governs both a falling apple and the orbiting Moon. By the end, science had become a self-correcting method, not just a collection of facts.

It's worth clearing up a common myth: this was not a sudden "lights on" moment, and it didn't simply defeat religion. Many of its giants were devout, much medieval and Islamic learning fed straight into it, and progress came in fits and false starts. What truly changed was the method — the shared agreement that nature itself, probed by experiment and math, gets the final vote.

The wiring bottleneck is the plain, physical reason today's quantum chips can't just keep growing. Most superconducting qubits need a handful of dedicated lines each — typically a drive line to control it, sometimes a flux line to tune it, and a readout path to measure it. So a 100-qubit chip already needs hundreds of cables snaking from room temperature all the way down to the chip at the bottom of the fridge. Multiply that by a million qubits and you simply run out of room, connectors, and cooling.

Each of those lines is a physical thing that costs you. A coaxial cable carries microwave signals, but it also carries heat down from the warmer stages, and the coldest plate of a dilution refrigerator can only remove a tiny trickle of heat — often well under a milliwatt at the base. Every cable also needs a connector, a feedthrough, and space on the chip's edge for a bond pad. Drill holes only get you so far: the perimeter of a chip grows far slower than the number of qubits you'd like to pack in its area, so the wires choke the design long before the qubits do.

This is why people now call wiring, not qubit count, a first-order obstacle to scaling. The proposed escapes are real but early: multiplexed readout shares one line among many qubits; cryo-CMOS tries to move the control electronics down into the cold so signals travel shorter distances; and cleverer cabling and on-chip routing trim the heat budget. None of these is a finished answer yet, and how to wire a truly large machine remains one of the central open engineering questions.

Also calledI/O bottleneckinterconnect bottleneckwiring problem输入输出瓶颈连线瓶颈輸入輸出瓶頸連線瓶頸

A theorem is a statement that has been proven true — not just tested, not just believed, but locked down by an unbroken chain of logic. You start from a handful of ground rules everyone agrees on (the axioms), and step by airtight step you show the statement must follow. Once that chain is complete, the theorem is true forever, the way 2 + 2 = 4 was true yesterday and will be true a billion years from now. It's the difference between "this bridge has held so far" and "this bridge cannot fall."

That permanence is what makes theorems the bedrock of mathematics. A scientist's law can be overturned by tomorrow's experiment, but a proven theorem never expires — the Pythagorean theorem about right triangles has stood, unbeaten, for over two thousand years. Build a new result on top of a theorem and you can trust the foundation completely.

The crucial contrast is with a conjecture: a statement that looks true, that mountains of examples seem to support, but that nobody has yet proven. A conjecture is a promising hunch; a theorem is a settled fact. The famous Fermat's Last Theorem was, for 358 years, really only a conjecture — it earned the name "theorem" in full only in 1994, when Andrew Wiles finally supplied the proof.

Also calledproven result定理数学定理數學定理

Theory of mind is your built-in ability to guess what is going on inside someone else's head — what they believe, want, feel, or intend — even though you can never see those thoughts directly. It is the everyday mental skill behind a sentence like "she's looking for her keys because she thinks they're in her bag." You did not read her mind with magic; you quietly built a little model of her mind and used it to explain and predict what she does. The name is a bit grand, but it just means the silent theory each of us carries about the fact that other people have minds of their own, filled with their own private picture of the world.

What makes this powerful, and surprisingly hard, is that you have to keep track of a belief that may be wrong — separate from what you yourself know is true. The classic test for children is the "false belief" task: Sally puts her ball in a basket and leaves; while she is gone, Anne moves it to a box; where will Sally look when she comes back? To answer "the basket," a child must hold Sally's outdated belief in mind even though they know the ball has moved. Most children pass this around age four, and the skill keeps growing into reading sarcasm, white lies, hints, and hidden motives. In the brain it leans on a network including the temporoparietal junction (where the temporal and parietal lobes meet, behind the ear) and parts of the prefrontal cortex (the planning region behind the forehead).

Theory of mind is the quiet engine under almost everything social: cooperation, teaching, deception, storytelling, manners, and feeling moved by a character in a film. When it develops differently — as is common in autism — or is disrupted by injury or illness, people may grasp facts about the world easily yet find it effortful to read unspoken intentions and beliefs. It is closely tied to empathy but not the same thing: theory of mind is figuring out what someone thinks; empathy is sharing what they feel.

Also calledmentalizingmind-readingmindreading读心心智化讀心心智化

Heat is just jiggling. In any resistor at room temperature the charge carriers are rattling around at random, kicked by thermal energy, and that endless microscopic stampede shows up at the terminals as a faint, restless voltage that never sits still. That hiss is thermal noise. You can't switch it off, you can't filter it away, and it doesn't care what your signal is doing — it's the static-on-a-radio floor that every analog circuit sits on top of. The hotter the part and the bigger the resistance, the louder the hiss, which is why low-noise front ends are often run cool and built from small resistances.

Here's the precise version once the intuition lands: a resistor R at absolute temperature T produces a flat, white noise voltage with power spectral density 4kTR (k is Boltzmann's constant, about 1.38e-23 J/K). "White" means equal power at every frequency, so the noise you actually see depends on how wide a bandwidth you let through: the RMS voltage over a band Δf is the square root of 4kTR·Δf. A 1 kΩ resistor, for instance, delivers roughly 4 nV per root-hertz at room temperature — open up a megahertz of bandwidth and that's already a few microvolts of irreducible fuzz.

This floor is what sets the smallest signal you can ever recover. Below it, your signal is simply buried in the hiss, and no amount of clever gain helps — amplify the signal and you amplify the noise right along with it. So the whole game in low-noise design is to keep the wanted signal comfortably above 4kTR: spend more current (higher gm), use only the bandwidth you truly need, lower the source resistance, and cool the part when you can. Thermal noise is the tax physics charges for working at a finite temperature, and you pay it in every analog signal path.

Also calledJohnson noiseJohnson-Nyquist noiseresistor noise

Thermoreception is your body's sense of warmth and cold — the way you can feel that a mug of cocoa is hot or that a snowball is freezing, even with your eyes closed. Tucked just under your skin (and inside your mouth and other surfaces) are tiny nerve endings that act like little thermometers. Some of them wake up when things get warm, others wake up when things get cool, and together they keep a running report on the temperature touching you and the temperature inside you.

The trick happens at the level of single molecules. Embedded in the membrane of these nerve endings are special proteins called temperature-sensitive ion channels — think of them as tiny gates that pop open at certain temperatures. When a gate opens, electrically charged particles (ions) rush through it, and that flow sparks a nerve signal that travels to the brain, where it is read as warmth or cold. One famous gate, called TRPV1, opens in real heat — and, curiously, also when chili pepper's capsaicin touches it, which is why spicy food literally feels hot. Another, TRPM8, opens in the cold and is also tripped by menthol, which is why mint feels cool. This sense protects you: it pulls your hand back from a stove before you are burned and makes you shiver or seek shelter before you freeze.

Also calledtemperature sensingthermal sensation温度感觉溫度感覺

The theta rhythm is a slow, steady wave of electrical activity in the brain, repeating about four to eight times a second, that you can pick up with electrodes much as a heartbeat shows up on a monitor. Imagine a stadium crowd swaying gently back and forth a few times every second: instead of each person moving on their own, thousands of brain cells rise and fall together in a shared, rolling beat. This rhythm is strongest in the hippocampus, the brain's memory and navigation hub, and it tends to switch on when an animal is actively exploring, moving, or paying close attention.

Its main job is timing. A clear, repeating beat gives far-flung groups of neurons a shared clock to follow, so that cells in the hippocampus and cells in the overlying cortex can fire in step rather than at cross purposes. When two regions ride the same theta wave, messages sent from one arrive just as the other is ready to listen, like two people on swings pumping in time so they can high-five at the top of each arc. This shared timing is thought to be how the brain stitches scattered pieces, where you are, what you see, what just happened, into a single memory.

The exact moment within each theta cycle also carries meaning, not just the wave itself. As an animal walks through a place, neurons that map locations fire a touch earlier on each successive wave, and that creeping shift in timing packs an ordered sequence of positions into a single rhythmic sweep. In this way the theta rhythm acts like a metronome that both keeps distant brain areas in conversation and lays out memories and routes in a neat, replayable order.

Also calledtheta oscillationtheta waveθ波θ振荡θ振盪θ脑波θ腦波

Thin-film deposition is the step where engineers grow the layers a quantum chip is built from, the superconducting metal that becomes the qubits and wiring, and the insulating layers that sit between them. You start with a bare, polished wafer and add material one atomically thin sheet at a time inside a vacuum chamber, building up a coating that might be only tens to a few hundred nanometers thick. Everything that comes later, drawing the circuit pattern and etching it, only works on the film you laid down first, so this quiet plating step decides much of what the finished qubit can do.

There are a few main ways to do it. Sputtering knocks atoms off a metal target with energetic ions and lets them rain onto the wafer, and is common for niobium and titanium nitride. Evaporation gently boils a metal in high vacuum so its atoms drift up and condense on the chip, and is the classic route for aluminum. Atomic layer deposition (ALD) builds an insulator up one chemical monolayer per cycle, giving exquisite thickness control. The knobs that matter are vacuum cleanliness, temperature, deposition rate, and how clean the wafer surface was beforehand, because every one of them shapes the grain structure of the metal and, crucially, the messy interface where the new film meets whatever was underneath.

The honest catch is that those interfaces and the film's own surface are exactly where qubits lose their energy. A deposition done in a slightly dirtier vacuum, or onto a surface with a stray oxide skin, seeds the microscopic defects that shorten coherence, and the damage is baked in before the circuit is ever patterned. Labs have squeezed real gains out of cleaner chambers, in-situ surface cleaning, and better-controlled growth, but getting low-loss films uniformly across a whole wafer, run after run, is still an unfinished craft rather than a solved recipe.

Also calledfilm deposition镀膜成膜鍍膜PVD/ALD

The threshold potential is the tipping point in voltage that a nerve cell must reach before it fires off a signal. A neuron normally sits at a slightly negative resting voltage, like a switch held in the off position. As incoming signals nudge that voltage upward, nothing dramatic happens at first. But once the voltage climbs to one particular level—often around minus 55 millivolts in many neurons—the cell crosses a line of no return and unleashes a full electrical spike called an action potential. That critical level is the threshold potential.

What makes the threshold so important is that it turns a smooth, gradual change into a sudden all-or-nothing event. Below threshold, small pushes simply fade away and the cell stays quiet. At threshold, special voltage-sensitive gates in the cell membrane (sodium channels) swing open all at once, letting charged particles rush in and snowballing the voltage upward on their own. This is why the threshold acts like the trigger of a gun: a gentle squeeze does nothing, but cross the trigger point and the shot fires at full force every time, no matter how hard you pulled. The threshold therefore decides whether a neuron speaks up or stays silent, making it the gatekeeper of every message the brain and nerves send.

Also calledfiring thresholdmembrane threshold兴奋阈值點火閾值

Real qubits are noisy. Every gate you apply, every moment a qubit just sits there waiting, adds a little error. So here is the obvious worry: if you build a bigger computer with more qubits and longer programs, don't the errors just pile up until the answer is garbage? The threshold theorem is the mathematical result that says no, not necessarily. It proves that if the error rate of your basic physical operations is below a certain cutoff value, called the threshold, then you can use quantum error correction to push the effective error rate of your computation as low as you like. Think of it like noise-canceling on a phone call: below a certain level of background noise the system can keep cleaning up faster than the noise creeps in, so a long call stays clear.

The catch is in the word below. Error correction spends extra physical qubits and extra operations to protect a small amount of real information (one protected, or logical, qubit). If your hardware is already cleaner than the threshold, adding more layers of protection makes things steadily better, and the cost grows only modestly as you demand higher reliability. If your hardware is dirtier than the threshold, adding protection makes things worse, because the correcting machinery introduces more errors than it removes. For the surface code, the most studied scheme, the threshold sits around 1% error per operation, which today's best hardware is only beginning to reach.

So the threshold theorem is the reason most researchers believe large, reliable quantum computers are possible in principle rather than ruled out by noise. But it is a statement about what is achievable, not a free lunch. Staying below threshold is hard, and the price of protecting even one logical qubit is often hundreds or thousands of physical qubits. That overhead is exactly why we are still in the NISQ era today, with no large-scale fault-tolerant machine yet built.

Also calledquantum threshold theoremfault-tolerance threshold theorem

Every rung below this one has fought the same enemy: distance. A signal that has to crawl out of one chip, across a circuit board, and into the next chip pays for every millimeter in delay, power, and lost bandwidth — that is the memory wall in physical form. A through-silicon via is the brute-force answer: instead of routing a connection sideways and out through the package, you drill straight down. A TSV is a narrow vertical tunnel etched clean through a thinned-down piece of silicon and filled with copper, so a chip can talk to the chip directly above or below it through a path only tens of microns long instead of centimeters.

The trick is that silicon is normally the floor you build transistors on, not something you poke holes through. To make TSVs work, the die is ground down until it is shockingly thin — often around 50 microns, thinner than a sheet of paper — then thousands of microscopic shafts are etched through it, lined with insulation so the copper does not short to the substrate, and filled. Stack several such thinned dies and align their TSVs, and you get a single tall block where every layer is wired to its neighbors by thousands of these vertical wires running in parallel. That parallelism is the whole point: many short, fat connections give you enormous bandwidth at low energy per bit.

This is the plumbing underneath 3D stacking and high-bandwidth memory. HBM is literally a stack of DRAM dies bonded on top of each other and threaded with TSVs, then placed beside a GPU or accelerator on an interposer so the two can exchange data over a very wide, very short bus. Without TSVs you would be back to skinny package pins and long board traces — the exact bottleneck that throttles how fast modern AI chips can be fed.

Also calledTSVthrough-silicon vias硅通孔矽穿孔

The thyroid-brain axis is the back-and-forth conversation between your brain and your thyroid — a small, butterfly-shaped gland in your neck that sets the speed of your body's engine. The thyroid releases hormones that tell almost every cell how fast to burn fuel, generate heat, and grow, which is why these hormones shape your energy, your weight, your mood, and even how quickly you think. But the thyroid does not decide this on its own: the brain is the thermostat that watches the body and keeps adjusting it. A deep brain region called the hypothalamus and a pea-sized gland just below it, the pituitary, send chemical orders down to the thyroid, while the thyroid's hormones travel back up in the blood and report their levels to the brain.

It works as a feedback loop, much like a heating system that switches the furnace off once the room is warm enough. The hypothalamus releases a signal (TRH) that nudges the pituitary, which in turn releases another signal (TSH, thyroid-stimulating hormone) that travels through the blood and tells the thyroid to make more hormone. When the level of thyroid hormone in the blood climbs high enough, it loops back and quiets the hypothalamus and pituitary, so they ease off — keeping the body's metabolism steady within a healthy range. This matters for the brain itself: thyroid hormone is essential for building a baby's brain before and after birth, and in adults too little leaves people sluggish, forgetful, and low, while too much makes them anxious, restless, and racing.

Because the loop runs in both directions, a problem anywhere along it ripples through the whole system. Doctors often measure TSH first, because a brain straining to push a sluggish thyroid (high TSH) or a brain backing off from an overactive one (low TSH) reveals the gland's true state more sensitively than the thyroid hormones alone — a neat example of reading the body's condition by listening to the brain's instructions.

Also calledhypothalamic-pituitary-thyroid axisHPT axis下丘脑-垂体-甲状腺轴下視丘-腦垂體-甲狀腺軸

A planner usually hands back a path: a list of points in space — go here, then here, then here — like dots on a map. But the dots say nothing about timing. They do not tell the robot how fast to travel, when to speed up, or when to ease off. Time parameterization is the step that pins a clock to that bare path: it decides, for every moment in time, exactly where the robot should be, so the silent string of points becomes a moving plan you can actually follow. The result is called a trajectory — a path with time attached.

The catch is that a robot cannot move however fast it likes. Each joint has a top speed it cannot exceed (a velocity limit) and a top rate at which it can change speed (an acceleration limit); push past either and the robot lurches, overshoots, or stalls. So time parameterization is like a careful driver planning a trip on a winding road: floor it on the straight stretches, brake well before the sharp bends, and never demand more grip than the tires can give. It stretches or compresses the timing along the path so the robot stays inside every limit while still finishing as quickly as those limits allow.

Trajectory smoothing is the close partner of this. A raw planned path is often jagged — sharp corners and sudden kinks where one straight segment meets the next. Asking a robot to follow such corners exactly would mean stopping dead and snapping to a new direction, which is jerky, slow, and hard on the hardware. Smoothing rounds those corners and blends the speed changes so motion flows in one continuous sweep, the way a skier carves a gentle curve instead of stamping out a sequence of straight lines. Together, timing and smoothing turn a geometric route into motion a real machine can perform gracefully.

Also calledtrajectory timing时间参数化軌跡平滑time-optimal trajectory generation

Imagine handing a courier a parcel and saying "this has to arrive by 9:00 sharp." You're not telling the courier which roads to take — you're stating the deadline, and it's their job to find a route that meets it. A timing constraint is exactly that kind of instruction, but aimed at your chip-design tools. You tell them how fast the clock ticks and what the deadlines are, and they go figure out the gates and wiring that hit those deadlines.

The most important thing you declare is the clock period — say, "this clock runs at 1 GHz, so a signal has roughly 1 nanosecond to travel from one register to the next." From that single statement the tools derive a timing budget for the paths in the design. They then lean on it twice: synthesis uses it to pick faster or smaller gates so the logic fits the budget, and static timing analysis uses it afterward to check that nothing arrives late (setup) — or, just as bad, too early (hold). Without constraints the tools have no deadline to aim at, and "is this chip fast enough?" becomes an unanswerable question.

Beyond the clock itself, you also describe the world outside your block — how much of the period is already used up by upstream logic before a signal reaches your input (input delay), and how much time the next chip downstream still needs after your output (output delay) — and you carve out exceptions for paths that don't play by the normal rules: a false path that never logically propagates and shouldn't be timed at all, or a multicycle path you deliberately allow two or more clock ticks to complete. In practice all of this is written in SDC (Synopsys Design Constraints), a Tcl-based text format that nearly every vendor's tools read, so the same intent survives as your design moves from one tool to the next.

Also calledSDCSDC constraintsclock constrainttiming budget时序约束時序約束

Back in Cycle 1, when you ran static timing analysis on the synthesized netlist, you were timing the chip on paper. The clock tree was still an ideal assumption, the wires were rough estimates, and a single "typical" set of conditions stood in for the whole factory. It is like checking whether a road trip fits in a day using a straight-line map and good weather: useful for planning, but not a promise. Timing signoff is the moment you redo that same analysis on the real, fully built layout — with the actual routed wires, the real clock tree, and every operating condition the part will ever see — and only then declare "this will work in silicon." It is the final gate before tapeout, the answer to "will it really run?" rather than "should it run?"

What makes it trustworthy is what you feed it. After routing, an extraction tool reads the finished geometry and computes the parasitic resistance and capacitance of every wire — how long each metal segment is, how wide, which layer, and which neighbors run alongside it coupling charge across the gap — and writes it out, typically as a SPEF file. The timer combines those real RC delays with the cell delays from the standard-cell libraries and recomputes setup and hold slack on every path. Crucially, it does this across all corners and all modes at once: corners are the physical extremes (slow/fast silicon, low/high voltage, cold/hot — slow-slow at low voltage hurts setup, fast-fast hurts hold), and modes are the functional states (mission mode, test/scan, low-power). The cross-product of corners and modes is the multi-mode multi-corner (MMMC) view, and a path must pass in every cell of that grid, because the chip has to work in all of them.

On top of the corners, signoff adds margin for effects an idealized run ignored: on-chip variation derating (OCV, and its sharper successors AOCV and POCV) so that two gates side by side aren't assumed to be identically fast, plus crosstalk delay from switching neighbors, IR-drop-aware delay from a sagging power grid, and clock jitter. Any path that still shows negative slack here is a real silicon risk, fixed with a timing ECO — a surgical resize, buffer, or reroute that must not break the corners that were already passing. Sign-off is reached only when worst negative slack is zero or better across the entire MMMC space; that, together with clean DRC and LVS, is what lets the design go to GDSII.

Also calledsignoff STAsignoff timingtiming sign-off时序签核時序簽核

Tissue engineering is the craft of building living, working body tissue in the lab instead of waiting for a donor. The classic recipe has three ingredients: living cells, a scaffold for them to grow on, and signaling molecules that tell the cells what to do. Think of growing a vine: you provide the seedling, a trellis for it to climb, and water and sunlight to coax it into shape.

The cells are the bricks; the scaffold is the temporary framework that holds those bricks in the right 3D arrangement; and the signals are the instructions that nudge cells to multiply, organize, and mature into the tissue you want. Over weeks the cells lay down their own natural surroundings, the scaffold gently dissolves, and what is left is, ideally, a patch of real tissue grown to order.

Simple flat tissues like skin and cartilage are the furthest along, and lab-grown skin grafts already help some patients. Whole complex organs like a heart or kidney remain a hard research goal, largely because thick tissue needs its own blood supply to survive. So tissue engineering is a fast-moving field of real promise, not a catalog of finished cures.

Also called组织工程組織工程

Tissue homeostasis is the steady balance a tissue keeps between cells being born and cells dying, so that its size and function stay roughly constant over time. It is the body's version of a well-run bathtub: the tap of new cells and the drain of old ones are tuned to each other, so the water level — the amount of working tissue — holds steady even though the water is always flowing.

Most tissues are quietly replacing themselves all the time. Your skin sheds and rebuilds over weeks, the gut lining turns over in days, and blood is constantly remade, all without you noticing, because new cells are produced at almost exactly the rate old ones are lost. Stem and progenitor cells supply the fresh cells; controlled cell death removes the worn-out ones.

When this balance tips, trouble follows: too much cell death (or too little replacement) wastes a tissue away, while too much division with too little death is one of the roads toward cancer. Regeneration is essentially homeostasis pushed into high gear after damage — so understanding the everyday balance is the foundation for understanding repair.

Also called组织稳态組織恆定tissue turnover

Tissue regeneration is the body regrowing what it lost back to its full working form, with the right cells in the right places — not just plastering over the gap with a scar. It is the difference between repainting a damaged car door and forging an identical new one. When a tissue truly regenerates, you often cannot tell afterward that anything was ever missing.

Our bodies do this unevenly. The liver can regrow a large chunk of itself, skin and the gut lining renew constantly, and blood is remade every day. But many tissues, like heart muscle and most of the nervous system, barely regenerate in adults and patch the damage with scar instead. Why some tissues rebuild and others give up is one of the field's central questions.

Other animals put us to shame: a salamander can regrow an entire amputated limb, complete with bone, muscle, and nerve. Studying how they do it — and why we mostly cannot — is a major route toward coaxing human tissue to rebuild rather than scar.

Also called组织再生組織再生

Tissue repair is the body's fast, default patch job: when something is damaged, it seals the breach quickly with tough scar tissue that restores integrity — the structure holds together — but not the original, specialized function. It is the emergency duct tape of biology: strong, quick, and good enough to keep you alive, but not the same as the part it replaced.

Repair wins because speed matters. An open wound is a doorway for infection and bleeding, so the body would rather close it fast with a generic, sturdy filler (mostly collagen) than slowly rebuild the exact original tissue. The trade-off is that the patched area is stiffer, less capable, and lacks the fine machinery the lost tissue had.

Repair and regeneration sit at opposite ends of a spectrum, and the same injury can lean either way depending on the tissue, the age, and the size of the damage. A big goal of regenerative medicine is to nudge the body away from quick repair and toward true rebuilding.

Also called组织修复組織修復

A tissue scaffold is a three-dimensional, sponge-like structure full of tiny pores that gives living cells a place to attach and grow into the shape of a tissue. It is the trellis of tissue engineering: just as a climbing plant needs a frame to spread across, freshly seeded cells need a physical framework to hold onto, or they clump into a useless ball instead of forming an organized sheet or organ.

The scaffold's open, interconnected pores let cells creep inward, while nutrients and oxygen flow through and waste flows out. It is usually made from a biomaterial designed to fade away on a schedule: as the cells multiply and lay down their own natural surroundings, the scaffold gradually breaks down into harmless pieces, ideally vanishing at the same pace that real, self-supporting tissue takes over.

The hard part is timing and architecture. Dissolve the scaffold too soon and the young tissue collapses; too slowly and the leftover material gets in the way or irritates the body. The pore size, stiffness, and shape all steer how cells behave, which is why designing a good scaffold is as much about geometry and chemistry as it is about biology.

Also calledscaffold组织支架組織支架

Think of the Toffoli gate as a careful light switch with a safety interlock. It watches two control wires and acts on a third, the target. The rule is simple: flip the target only when both controls are 1; if either control is 0, leave everything exactly as it was. Because it touches three bits at once, you will sometimes hear it called the controlled-controlled-NOT, or CCNOT.

What makes it special is that it is reversible: run it a second time and you are back where you started, because no information is ever thrown away. Ordinary classical logic is not like this. An AND gate, for example, takes two inputs down to one output, and you cannot recover the inputs from the answer. The Toffoli gate sidesteps that loss by keeping enough wires around, and it can imitate AND, NAND, and other classical operations while staying reversible. That is exactly what a quantum computer needs, since every quantum gate must be reversible (unitary).

So the Toffoli gate is the bridge between classical arithmetic and quantum circuits. When a quantum algorithm has to add numbers, compare them, or compute some ordinary function on the way to the part where quantum interference does the real work, Toffoli gates do that bookkeeping. They also appear constantly in fault-tolerant designs, where reliable logic has to be built up from simpler, error-corrected pieces.

Also calledCCNOTcontrolled-controlled-NOTCCX

A token is a signed string the server gives you after you log in, which you then send along on every later request to prove who you are — without typing your password again. Think of it as the wristband you get at a festival entrance: flash it, and you're waved through.

It's signed, so the server can tell at a glance whether it's genuine or tampered with. A common kind is the JWT (JSON Web Token), which actually carries a little readable payload inside — your user id, maybe your role, and an expiry time — wrapped in that tamper-proof signature.

You usually send it in an HTTP header like 'Authorization: Bearer <token>'. Because it stands in for your password, treat it like one: never paste it into a public chat or commit it to a repo, and let it expire so a stolen one doesn't work forever.

Also calledaccess tokenjwtbearer tokenauth token

A token standard is an agreed set of rules that a smart contract follows so that a token it creates behaves in a familiar, predictable way. A token here is simply an asset, a coin, a share, a collectible, that lives as an entry inside a contract on the blockchain. Without a common standard, every token would have its own quirks, and every wallet and exchange would need custom code to handle each one. A standard fixes that, much like a standardized power socket: any plug built to the same shape just works, no matter who made the appliance.

Concretely, a standard spells out the exact set of functions a token contract must offer and what each one does, for example a way to check someone's balance, a way to transfer tokens, and a way to authorize another contract to move tokens on your behalf. Because the names and behaviors are fixed, a wallet, marketplace, or other app can support any token built to that standard without knowing anything special about it in advance. The token's own contract still holds the real balances and rules; the standard just guarantees a common, public way to talk to it.

Token standards matter because they are the reason a single wallet can hold thousands of different tokens, and an exchange can list a new one within minutes. They turn tokens into interchangeable building blocks that snap neatly into the wider ecosystem. Different standards exist for different needs, notably ones for interchangeable units like a currency and ones for unique, one-of-a-kind items, each defining its own shared interface.

Also called代币标准代幣標準

Tokenomics — a blend of "token" and "economics" — is the design of how a crypto token is created, distributed, and used, and the incentives baked into all of it. Just as a country's economy depends on rules about how money is printed and who gets it, a token's health depends on choices like how many will ever exist, how new ones enter circulation, and what holders can actually do with them. Tokenomics is the study and craft of those choices.

The core ingredients are supply and incentives. Supply covers how many tokens exist, whether the number is capped or grows over time, and how they were handed out — sold to the public, granted to the founding team, set aside for a community, or earned through use. Incentives cover why anyone would want to hold or spend the token: maybe it pays fees on a network, grants voting rights, can be staked to earn rewards, or gets removed from circulation ("burned") as the system is used. Good tokenomics lines these up so that what is good for the individual is also good for the whole network.

Tokenomics matters because the design of a token shapes the behavior of everyone around it. A scheme that rewards genuine participation can bootstrap a thriving network from nothing; one that concentrates tokens in a few hands or rewards short-term flipping can hollow a project out. Understanding tokenomics is how you look past the marketing and read what a token is actually built to encourage.

Also calledtoken economics代币经济学代幣經濟學

Tonotopy is the brain's way of laying out sounds by pitch, like the keys of a piano. Low notes and high notes each get their own spot, and the spots are arranged in order from low to high. This orderly layout starts inside your ear, in a coiled, fluid-filled tube called the cochlea, and is then copied onto the surface of the hearing parts of your brain. So the same neat ordering of pitches that begins in your ear is preserved, step by step, all the way up to where you consciously hear.

The cochlea pulls this off because of its shape and stiffness. Picture it uncoiled into a long ribbon: the end near the entrance is stiff and narrow, so it vibrates best to high-pitched sounds, while the far tip is floppy and wide, so it answers to low-pitched sounds. A pure tone makes just one stretch of that ribbon shake hardest, and the hair-like sensor cells sitting there fire off a signal. Because each position responds to a particular frequency, the place that lights up tells the brain the pitch. The brain's hearing regions keep this place code, so neighboring patches of cortex respond to neighboring pitches, and that is why we can tell a high whistle from a low rumble.

Also calledtonotopic organizationtonotopic map音频图音頻圖频率拓扑頻率拓撲
See alsohair cell

Most qubits today are fragile. You store information in something tiny and delicate — the spin of an electron, a flicker of current in a superconducting loop — and the faintest nudge from the outside world (a stray photon, a bit of heat, a magnetic wobble) can scramble it. A topological qubit is a bet on a different idea: instead of writing the information at one spot where a local bump can erase it, you spread it out so that no single place actually holds the answer. The classic picture is a pair of Majorana modes sitting at opposite ends of a special wire; the bit of information lives in the relationship between them, not in either one alone. To corrupt it, the environment would have to disturb both far-apart locations in just the right coordinated way at once — and that is much harder than knocking out one spot, so the information is protected by the geometry of the system rather than by constant outside babysitting.

Think of it like this: writing a secret on a single sticky note is easy to smudge or lose, but splitting it so that you need two separate halves, kept in different rooms, to read anything — now a single accident in one room tells an eavesdropper nothing and ruins nothing. That built-in error resistance is the whole appeal. It would not make a quantum computer faster at any task, but it could make each qubit far more reliable, which is exactly the bottleneck holding today's machines back. The catch is that this is still mostly a hope, not a product. Cleanly creating, confirming, and manipulating Majorana modes has proven genuinely hard, some headline claims have been walked back or disputed, and no one has yet built a working topological qubit you could compute with.

Also calledtopological quantum bit拓扑量子比特拓撲量子位元

A tort is a civil wrong — when one person's careless or harmful act injures another, and the law lets the victim sue for money to make it right. Picture a shop that mops its floor but forgets the "wet floor" sign: a customer slips, breaks a wrist, and racks up a hospital bill. That slip is a classic tort, and the law's answer is not punishment but a check to cover the damage.

Here's the key split that trips people up: a tort is not a crime. A crime is an offense against society, prosecuted by the state, which can lock you up. A tort is a dispute between private parties, and a defendant found liable owes the victim money to cover the harm, rather than facing prison. The very same act, like a drunk-driving crash, can be both: the state prosecutes the crime, while the injured person separately sues in tort for their medical bills.

Most torts turn on negligence — failing to take the care a reasonable person would. But torts also cover deliberate harms (hitting someone, trashing their property) and even some accidents where you're liable no matter how careful you were. The unifying thread is simple: you hurt someone you had a duty not to hurt, so you owe them.

Also calledcivil wrongnegligencedelict侵权行为侵權行為民事侵权

Trajectory optimization is the art of taking a rough plan of motion and polishing it into the best possible version, where 'best' means it scores lowest on some cost you care about — usually a mix of things like wasted energy, jerky movement, time taken, or how close it passes to obstacles. Instead of asking only 'what path gets me there', it asks 'of all the ways to get there, which one is smoothest, cheapest, and safest', and then mathematically searches for that one. Think of it like planning a road trip: many routes reach the destination, but you want the one that burns the least fuel, avoids potholes, and keeps the ride comfortable.

Crucially, the search is not free to pick anything — it must obey constraints, which are hard rules the answer is forbidden to break. Some constraints come from physics and the machine itself, called dynamics: a real arm can only move its joints so fast and push with so much force, so the optimizer cannot invent a motion the motors could never produce. Other constraints come from the environment: the trajectory must stay out of every obstacle and inside the robot's reachable space. The optimizer juggles all of this at once, nudging the whole motion bit by bit — speeding up here, easing off there, bowing wider around a corner — until it settles on a trajectory that is as cheap as possible while still legal under every rule.

Because it shapes the entire motion as one connected whole rather than one step at a time, trajectory optimization tends to produce flowing, natural-looking movement, which is why it is popular for robot arms, walking robots, drones, and self-driving cars. The trade-off is that it is heavier to compute and can land in a 'good enough but not truly best' answer if the starting guess is poor, so engineers often feed it a decent rough plan first and let the optimizer refine from there.

Also calledmotion optimization最优轨迹规划

A transaction is the basic unit of action on a blockchain — a signed instruction to change the shared ledger, most commonly to move value from one party to another. It is the equivalent of a single entry in an account book or a single signed cheque: it says who is sending what, to whom, and proves the sender truly authorized it. Everything a blockchain records is ultimately built out of transactions; blocks are simply convenient bundles of them.

What makes a transaction trustworthy is the digital signature attached to it. The sender signs the instruction with a private key that only they hold, producing a signature that anyone can check against their public key but no one can forge. The network verifies three things before accepting it: that the signature is valid, that the sender actually controls the funds being spent, and that those funds have not already been spent elsewhere. Only then does the transaction become eligible to be written into a block.

Once a transaction is included in a block and that block is buried under enough later blocks, it is settled — effectively permanent and visible to all. There is no central clearing house, no business hours, and no way for the sender to quietly reverse it afterward. This is the quiet power of the model: a final, self-verifying record of who agreed to do what, produced without anyone needing to trust the people on the other side.

A transaction groups several database changes into one all-or-nothing unit: either every step succeeds together, or none of them happen at all. It's the database's way of making sure you never get stuck halfway through something that should have been one indivisible act.

The classic example is moving money. Transferring $100 means subtracting from one account AND adding to another — two steps that must travel as a pair. Wrap them in a transaction and if the second step fails (or the power dies between them), the database rewinds the first too. The money is never left half-moved, vanished from one side but not arrived at the other.

In practice you BEGIN a transaction, make your changes, then COMMIT to lock them all in — or ROLLBACK to undo the whole batch if something went wrong. Until you commit, it's as if none of it happened yet, and other users don't see your half-finished work.

Also calleddb transactioncommit/rollbackatomic operation

Transconductance is the answer to one simple question: when you nudge a transistor's gate voltage by a tiny amount, how hard does the drain current respond? Picture the gate as a gas pedal and the drain current as the car's speed. A car with a touchy pedal leaps forward at the lightest press; a sluggish one barely budges. Transconductance, written gm, is exactly that touchiness — the slope of output current versus input voltage, gm = dId/dVgs. Its units are siemens (amps per volt), because you are dividing a current change by a voltage change. A small push on the gate that 'leans' hard on the drain current means a big gm.

This one number quietly sets almost everything you care about in an amplifier, because voltage gain is gm working against whatever resistance sits at the output. In a common-source stage that gain is gain = -gm*ro, where ro is the transistor's own output resistance, so a stronger gm buys you more gain for free. For a MOSFET biased in saturation there is a handy shortcut: gm = 2*Id/Vov, where Id is the bias current and Vov = Vgs - Vth is the overdrive voltage. Read that relation carefully — it tells you that for a fixed current you get more gm by running a smaller overdrive, and that gm grows as you push more current through the device.

So when an analog designer 'spends current' to chase speed or gain, gm is the thing they are really buying. More gm means more gain, faster settling, and lower input-referred noise — but it costs bias current, headroom, or area. Every analog design is, at heart, a negotiation over how much gm you can afford and where you choose to put it.

Also calledgmsmall-signal transconductance小信号跨导小信號跨導

Transcranial magnetic stimulation is a way to nudge the brain into action from outside the head, without any surgery or needles. A researcher holds a wire coil against the scalp and sends a brief, very strong pulse of electric current through it. That current creates a fast-changing magnetic field, and because the field passes straight through skin and skull, it slips into the brain unblocked. There, the changing field coaxes its own small electric current to flow in the nearby brain tissue — and that induced current is what stirs the neurons underneath into firing.

The trick rests on a basic law of physics: a magnetic field that is rising and falling quickly will push electric charges into motion in any conductor nearby, and living brain tissue is a conductor. By aiming the coil over a chosen patch of the cerebral cortex — the brain's wrinkled outer layer — a single pulse can make those neurons fire. Aim it over the part that controls the hand, for instance, and the hand twitches. Fire a rapid train of pulses instead of one, and the method can either rev up or damp down the activity of that region for a while afterward.

This gives scientists a rare power: instead of only watching the brain and guessing, they can gently interfere with one spot and see what changes. Briefly disrupting a region during a task shows whether that region was truly needed for it, helping prove cause rather than mere coincidence. The same ability to tune a region up or down has also become a medical treatment, most established for depression that has not responded to other care.

Also calledTMSmagnetic brain stimulation磁刺激磁刺激

A transfer function is a compact mathematical fingerprint that captures how a system turns its input into its output. Think of a black box — a motor, a heater, a robot arm — where you feed something in (a voltage, a command) and something comes out (a speed, a temperature, a position). The transfer function is the rule that says, for any input you give, here is the output you will get. Instead of describing that rule moment by moment in time, it bundles the whole input-to-output relationship into a single tidy expression you can reason about all at once.

The trick that makes it so handy is a mathematical change of viewpoint called the Laplace transform, which swaps the messy language of things changing over time for a cleaner algebraic language. In that view the transfer function comes out as a simple ratio: the output expression divided by the input expression. That ratio is gold to an engineer, because hard questions about behavior over time — how fast the system responds, whether it overshoots, whether it stays stable — turn into easy algebra about that fraction. You can even chain boxes together in series just by multiplying their transfer functions.

It is worth knowing the limits. A transfer function is an idealized portrait: it assumes the system is linear (doubling the input doubles the output) and unchanging over time, which real machines only approximate. Push a motor past its limits or let parts wear and the simple fraction stops telling the whole truth. Even so, it remains one of the most powerful shortcuts in classical control, because near normal operating conditions it predicts behavior remarkably well with very little arithmetic.

Also calledsystem transfer function传函傳函

A transform tree is the piece of robot software that keeps track of where every named part of a robot is, relative to every other part, and how those relationships change moment to moment. A robot is full of named reference frames — one at the base, one at each joint, one on the camera, one on the gripper, one fixed to the world — and what you usually need to know is the pose (the position and orientation) of one frame as seen from another: where is the gripper relative to the camera, right now? The transform tree stores all of these relationships and answers exactly that kind of question on demand. Its best-known form, in the Robot Operating System, is literally called tf.

It is called a tree because the frames hang together like a family tree: the world frame is the root, the robot's base hangs off the world, the first arm link hangs off the base, the next link off that one, and so on out to the fingertips and the camera. Each parent-to-child link stores one rigid-body transform — the rotation and shift that takes you from the parent frame into the child frame. To find how any two frames relate, even ones far apart on different branches, the software simply walks the path of links connecting them and multiplies the transforms along the way. Arranging frames as a tree, with exactly one parent each, guarantees there is always one clear, unambiguous chain between any two of them.

Crucially, a transform tree is not a single frozen snapshot — it is time-stamped and constantly updated, because a robot's joints and wheels are always moving. Different parts report their transforms at different instants, so the system keeps a short rolling history and can interpolate to answer where was the gripper relative to the map at the exact moment that photo was taken. This is what lets perception, planning, and control all agree on one shared picture of space: a depth camera can spot an object, the tree can convert that sighting into the arm's own coordinates, and the arm can reach for it — all because every part trusts the same continuously maintained map of who is where.

Also calledtf treeframe tree坐标变换树tf 树

A transistor is a tiny switch with no moving parts: a small signal at one terminal controls a much larger current flowing between the other two. Think of a faucet where a feather-light touch on the handle governs a powerful gush of water — except here the "hand" is itself electrical, so transistors can control other transistors. That self-controlling loop is the seed from which every computer, phone, and digital chip grows; it is the single invention that all digital electronics is built from.

The first transistor was built at Bell Labs in 1947. The version that runs modern chips, the MOSFET, came about a decade later: a voltage on its insulated gate builds an electric field that opens or pinches off a conducting channel between source and drain — switching current on (a 1) or off (a 0). The same device can also amplify, nudging a faint signal into a strong one. Transistors shrank from thumb-sized to a few nanometers, and a phone chip now packs tens of billions onto a sliver of silicon the size of a fingernail.

Also calledswitchBJT晶体管電晶體

A transmembrane ion gradient is the lopsided arrangement of charged particles, called ions, on the two sides of a cell's outer skin (its membrane). Ions are simply atoms that carry a tiny electrical charge — the main ones in nerve cells are sodium, potassium, calcium, and chloride. The cell keeps far more of some ions outside than inside, and far more of others inside than outside. Picture a dam holding water high on one side and low on the other: nothing is moving yet, but the lopsidedness itself is stored energy, ready to do work the instant a gate opens.

This stored energy is what makes a neuron able to fire. The cell spends a lot of fuel running tiny molecular pumps that constantly bail ions back to the side they came from, keeping the imbalance topped up — like a bucket brigade refilling the high side of the dam. When a nerve channel briefly opens, ions rush down their gradient from the crowded side to the empty side, and that rush of charge is the electrical signal a neuron uses to send a message. Without this pre-loaded imbalance, there would be nothing to release, and the brain's signaling would simply stop.

So the gradient is less a single event than a permanent readiness. Each ion has its own private gradient, and the cell juggles all of them at once; the combined push and pull sets the cell's baseline voltage and decides how strongly and quickly it can respond. In this sense the gradient is the battery that every electrical message in the nervous system draws upon.

Also calledionic gradiention concentration gradient离子浓度梯度離子濃度梯度

A transmon is the most common kind of superconducting qubit, the type of artificial atom used in most superconducting quantum computers (including the big machines from IBM and Google). The basic idea is to build a tiny electrical circuit out of superconducting metal that, when chilled to near absolute zero, has neatly separated energy levels. You pick the lowest two of those levels and call them |0> and |1>, and that circuit now behaves like a qubit you can control with microwave pulses.

Earlier superconducting qubits were painfully sensitive to charge noise: stray electric charges drifting nearby would jostle the energy levels and scramble the information almost immediately. The transmon's clever fix is to add a relatively large capacitor across the circuit. This flattens out the qubit's dependence on charge so much that charge noise barely matters anymore, which is the main reason transmons hold their state long enough to be useful. The trade-off is that the energy levels become more evenly spaced (less anharmonicity), so |0> and |1> sit closer in spacing to higher, unwanted levels. Engineers manage this with carefully shaped pulses so a gate nudges the qubit between |0> and |1> without accidentally leaking it up to level 2 or beyond.

Also calledtransmon qubittransmon 超导量子比特transmon 超導量子位元

A trapped-ion qubit stores quantum information inside a single charged atom (an ion). Picture one atom floating almost perfectly still in empty space, pinned there by carefully shaped electric and magnetic fields the way a marble settles into the bottom of an invisible bowl. The atom has internal energy levels, and you pick two of them to stand for |0> and |1>. Because the atom is held away from any surface and is naturally identical to every other atom of its kind, it is extremely well isolated from the noisy outside world, and it stays in a usable quantum state for a long time. You write to it and read from it by shining precisely tuned lasers (or microwaves) on it: the laser nudges the atom between its two chosen levels, and a different laser makes the atom glow brightly for one state and stay dark for the other so a camera can tell which it is.

The big practical strengths are long coherence times (the qubit holds its state for a relatively long while before noise scrambles it) and very high gate fidelity (operations come out very close to what you intended, with few errors). Trapped ions can also talk to many partners in the same trap because they share a common vibrational motion, which makes two-qubit gates flexible. The trade-offs are real, though: each operation is driven by lasers and that mechanical motion, so gates tend to be slower than on superconducting chips, and scaling up is hard. Keeping a hundred or a thousand ions in one trap, all addressed by their own steady laser beams, gets unwieldy fast, which is why much of the engineering effort goes into linking many smaller traps together rather than building one giant one.

Also calledtrapped ion qubition-trap qubit离子阱量子比特離子阱量子位元囚禁离子量子比特囚禁離子量子位元

Traumatic brain injury, or TBI, is damage to the brain caused by an outside physical force — a blow, a bump, a violent jolt, or something that pierces the skull. The brain is a soft, jelly-like organ floating in fluid inside the hard case of the skull, so a sudden impact or a whiplash-style shake can slam it against the bone, stretch and tear its delicate wiring, and bruise its tissue. The triggers are everyday ones: falls, car crashes, sports collisions, assaults, and, in war zones, the pressure wave from a nearby blast.

Doctors picture TBI as a sliding scale rather than a single thing. At the mild end is a concussion, where the brain is briefly knocked off balance — causing headache, dizziness, confusion, or a short blackout — but usually recovers over days or weeks. At the severe end, the force can rip the long signal-carrying fibers (axons) throughout the brain, cause bleeding and swelling inside the rigid skull, and leave a person unconscious for a long time, with lasting trouble in movement, memory, mood, or thinking. Severity is judged by how alert the person is, how long they black out, and what brain scans show.

An important idea is that the harm comes in two waves. The primary injury is the damage done in the instant of impact — torn fibers, bruised tissue, broken blood vessels — and that part cannot be undone. The secondary injury unfolds over the hours and days that follow, as swelling, bleeding, starved blood supply, and runaway inflammation choke and poison cells that the first blow had spared. Much of modern emergency care for head injury is a race to limit this second wave, because that is the part medicine can still change.

Also calledTBIhead injury脑外伤颅脑损伤腦外傷顱腦損傷

A traveling-wave parametric amplifier is the first thing a qubit's faint readout signal meets on its way out of the fridge. Reading a qubit means catching a microwave echo so weak it is close to a single photon, so it has to be amplified before noisy room-temperature electronics would drown it out. A TWPA does this while adding almost the least noise the laws of physics allow, which is why it is called quantum-limited.

Physically it is a long superconducting transmission line, hundreds or thousands of Josephson junctions in a row, that the signal travels down rather than bouncing inside a single resonant box. You inject a strong pump tone alongside the weak signal; the line's nonlinearity lets the pump pour its energy into the signal as both ride along together, so the signal grows by 20 decibels or more over the length of the line. Because nothing has to resonate at one fixed frequency, a single TWPA amplifies a wide band at once, often several gigahertz wide.

That bandwidth is the whole point for scaling. A narrowband Josephson parametric amplifier handles essentially one readout tone, so a chip with many qubits read out on many frequencies would need many of them. One TWPA can amplify a whole comb of multiplexed tones together. The catch: TWPAs are long and finicky to fabricate, the strong pump can leak back and disturb the qubits, and protecting them from reflections still leans on bulky off-chip isolators, so they help with scaling without solving it.

Also calledTWPA行波参量放大器行波參量放大器

The triune brain model is an old and widely repeated story, proposed by physician Paul MacLean around the 1960s, that the human brain is built from three layers stacked up one after another over the course of evolution. In the tale, a primitive reptilian core handles raw survival drives like aggression and territory, an emotional limbic layer was added by the first mammals, and a thinking neocortex was bolted on last in primates and humans. It is the source of the catchy phrase reptilian brain, sometimes called the lizard brain.

The picture is appealing because it is tidy: each layer seems to map neatly onto instinct, emotion, and reason, as if your skull held a little museum of evolutionary history. But modern comparative neuroscience treats the model as outdated and largely wrong. Brains did not evolve by simply adding fresh layers on top of older animals' brains. Reptiles, birds, and mammals all inherited the same basic ancestral brain regions from a shared ancestor, birds without any mammal-style neocortex can be strikingly clever, and the parts that handle feeling and thinking are woven together rather than stacked like an onion.

Today the triune brain matters mostly as a cautionary example of how a memorable but mistaken metaphor can outlive the evidence that should have buried it. It still surfaces in self-help books, business talks, and popular psychology, so it is worth recognizing precisely so you can set it aside. Specialists instead describe brain evolution as the gradual remodeling of structures shared across all backboned animals, not a tower of ever-smarter add-ons.

Also calledreptilian brain idealizard brain三位一体脑三位一體腦

Trustlessness means you do not have to trust any particular person, company, or middleman for a system to work correctly — because you can verify the rules and the records for yourself. The word is a little misleading: you are not trusting nobody, you are trusting math, code, and openly checkable evidence instead of someone's promise. It is the quality that lets total strangers transact safely without a referee.

It is built from the other foundations stacked together. Digital signatures prove who authorized each action; hashes and the chain of blocks make the history tamper-evident; running a full node lets you independently check that every transaction follows the rules; and a consensus mechanism lets the whole network agree on the one true ordering without a boss. Because anyone can audit all of this, you never have to take a counterparty's word for anything — you can confirm it yourself, or rely on the fact that thousands of others can.

The payoff is that cooperation no longer depends on reputation, paperwork, or a trusted authority that could fail, cheat, or be coerced. Instead of 'don't be evil,' the design aims for 'can't be evil within the rules.' That said, trust does not vanish entirely — it shifts onto the correctness of the code and the honesty of the broader network, which is why audited software and a healthily decentralized network still matter.

Also calledtrustless system无需信任去信任無需信任

Two qubits sitting next to each other on a chip are a bit like two tuning forks on the same table: strike one and the other starts to hum. That whispering between neighbors is exactly what you need when you want them to interact during a two-qubit gate, and exactly what you do not want the rest of the time, when each qubit is supposed to sit quietly and hold its state. A tunable coupler is an extra circuit element placed between two qubits that acts like a volume knob on their conversation, so you can turn the interaction up to do a gate and turn it down to near silence the instant the gate is done.

In a superconducting chip the coupler is usually its own little circuit, often a small SQUID loop or an extra transmon, threaded by a magnetic flux you control with a nearby current line. Changing that flux shifts the coupler's frequency, and at one special setting the unwanted always-on interaction between the two qubits cancels out, leaving an effective coupling of essentially zero. Nudge the flux away from that point and the coupling reappears, strong and fast, so a two-qubit gate that once took hundreds of nanoseconds can finish in tens. Because the off state is genuinely off, idle qubits stop slowly poisoning each other through the residual ZZ interaction that fixed couplers leave behind.

The catch is that you have traded one hard problem for a more manageable one, not for none. Every coupler needs its own control line and flux bias, which adds wiring, heat, and another knob that has to be calibrated and kept stable; the flux line itself can leak noise into the qubits. Tunable couplers are now standard on several leading superconducting processors precisely because suppressing idle crosstalk matters so much for fidelity, but they are not magic: they help most where qubit frequencies are well spread out, and crowded, noisy chips remain the real bottleneck to scaling.

Also calledadjustable couplertunable bus可调耦合器可调耦合元件可調耦合器

A tuning curve is a simple graph that shows how strongly a single neuron reacts as you slowly change one feature of what it is sensing. Imagine turning a radio dial: most stations are static, but at one spot the music comes in loud and clear. A neuron often behaves the same way. As you sweep a stimulus across its possible values — the angle of a line you show the eye, the pitch of a tone, the direction an arm points — the neuron stays fairly quiet for most settings and then fires fast at one favorite value. Plot the stimulus along the bottom and the neuron's firing rate up the side, and you usually get a hill-shaped curve that rises to a peak and falls off on either side.

That peak is the neuron's preferred stimulus, and the width of the hill tells you how picky it is: a narrow, sharp curve means the cell cares about a very specific value, while a broad, gentle curve means it responds to a wide range. Scientists love tuning curves because they reveal what a neuron is for and how the brain encodes information. Since no single fussy cell can pin down a value on its own, the brain reads many neurons together — each with its peak in a slightly different place — and combines their votes. The strongest and the in-between responses across the whole population point to the answer, a strategy known as population coding.

Also calledresponse curvestimulus-response curve反应曲线反應曲線神经元调谐曲线神經元調諧曲線

A twist is a compact way to describe everything about how a rigid body is moving at one instant, packed into a single six-number bundle. Three of the numbers describe how fast and about which axis the body is spinning (its angular velocity), and the other three describe how fast and in which direction a chosen reference point on the body is sliding along a straight line (its linear velocity). Bundling both together makes sense because real objects usually move and turn at the same time — think of a thrown football that flies forward while it spirals.

Why keep them as one object instead of two separate ideas? Because translation and rotation are deeply intertwined when something moves. If a robot's whole arm is rotating, then a tool clamped near the far end is not only spinning, it is also being swept sideways through space — its straight-line speed depends on the turning and on how far out it sits. A twist captures this entire coupled picture honestly in one go, so the linear and angular parts are never accidentally treated as if they were independent. (This is also why the linear part is tied to a specific reference point: the same motion gives a different linear velocity at a different point on the body.)

Twists are the velocity counterpart to pose. A pose answers "where and how is the body placed right now?"; a twist answers "and how is that placement changing this very moment?" Engineers lean on them constantly when they want a robot to move its hand along a smooth path at a controlled speed, because a twist is the single quantity that says, all at once, how the linear and angular motion should blend together.

Also calledtwistspatial velocity空间速度空間速度

Imagine that here and there inside a quantum chip there is a single atom that has two slightly different spots it could sit in, and it keeps quietly flipping between them. That tiny flippable thing behaves like its own little two-level system, an accidental, unwanted cousin of the qubit you actually built. There are thousands of them, hiding in the thin native oxide on a metal surface, in the amorphous glass under a junction, and at the interfaces between materials. They matter because each one can soak up energy at a particular frequency, and a quantum chip is exquisitely sensitive to losing even one photon's worth of energy.

The trouble starts when one of these defects happens to sit at the same frequency as a qubit or its readout resonator. Then they resonate together, and the qubit's energy leaks into the defect instead of staying where you want it, which shows up as a shorter coherence time. This is why TLS are the dominant coherence-limiter precisely under the conditions that matter most: very low microwave power, around the single-photon level, and millikelvin temperatures, where other loss channels have mostly gone quiet. Their effect is also frustratingly drifty. A defect can wander in frequency over hours or days, so a qubit that looked clean on Monday can develop a sudden bad spot on Tuesday as a TLS swings into resonance.

There is no clean way to remove them yet, only ways to have fewer and to dodge the worst. Engineers grow cleaner films, strip away lossy surface oxides, shrink the amount of amorphous dielectric that the qubit's electric field touches, and pick materials like tantalum or titanium nitride that happen to host fewer harmful defects. Tunable qubits can also be parked away from a known defect's frequency. But TLS are a property of disordered, glassy matter itself, so as of today they remain one of the hardest and least glamorous obstacles between small noisy chips and large reliable ones.

Also calledTLStunneling two-level system二能级系统缺陷二能階系統缺陷

Two-photon microscopy is a way of taking sharp, detailed pictures deep inside living brain tissue, in an animal that is still alive and even awake. It relies on fluorescence: the tissue is tagged with a special dye or protein that glows when light strikes it. Normally one packet of light (one photon) carries enough energy to make the dye glow. Here the trick is the opposite — the microscope uses gentler, lower-energy infrared light, where it takes two photons arriving at the very same instant to add up to enough energy to make the dye glow even once.

Because two photons hitting together is so unlikely, the glow happens only at the single tiny spot where the laser is squeezed to its tightest focus, and nowhere along the path leading to it. (This dependence on light being concentrated, rather than just present, is what is meant by calling the effect nonlinear.) That self-confining glow gives two big rewards. First, the long-wavelength infrared light slips through tissue without scattering as much as ordinary light, so it reaches far below the surface — letting researchers see cells hundreds of micrometers down, where older microscopes only see a blur. Second, since the rest of the sample is never lit up, the delicate living cells suffer far less light damage and can be watched for hours.

These strengths make two-photon microscopy a workhorse for studying the brain at work in a living body — what scientists call in vivo, meaning inside the intact organism rather than in a dish. A common use is watching individual neurons fire in real time by following calcium signals, flashes of brightness from a glow that flares each time a cell becomes active.

Also called2-photon imagingtwo-photon excitation microscopy双光子激发显微镜雙光子激發顯微鏡
U

An ultrasonic sensor measures distance using sound: it chirps out a very high-pitched click — too high for human ears — and listens for the echo bouncing back off whatever is in front of it. Because sound travels through air at a steady, known speed, timing how long the echo takes to return reveals how far away the object is. It is much like how a bat finds its way in the dark, and how a parking sensor beeps faster as your bumper nears a wall.

Inside, a small element vibrates to send the pulse, then goes quiet and acts as a microphone to catch the returning echo. The longer the wait, the farther the object. Because the sound spreads out in a wide cone rather than a thin beam, the sensor can tell you roughly how far the nearest thing is, but not its precise shape or exactly which direction within that cone it sits.

Its appeal is that it is cheap, simple, and rugged, which makes it a favorite for basic obstacle and proximity detection on small robots and cars. The trade-offs: it is far less precise than LiDAR, soft or angled surfaces can swallow or deflect the echo so the object goes unseen, and it is slower, since each reading must wait for sound to make the round trip.

Also calledsonarultrasonic rangefinder超声波测距聲納

The uncanny valley is the unsettling, slightly creepy feeling many people get when a robot or animated character looks almost human, but not quite. A clearly machine-like robot, with metal arms and blinking lights, feels friendly and harmless. A real person feels comfortable too. But something stuck in between, a face that is nearly lifelike yet has stiff eyes, waxy skin, or a smile that does not move right, can give us a chill. Plotting how warm we feel toward a robot against how human it looks, the line climbs, then suddenly dives down into a dip, that dip is the valley, before climbing again as the robot becomes truly indistinguishable from a person.

Nobody is certain why this happens, but a common idea is that the small flaws read as wrongness, the way a corpse or a sick person looks human but signals that something is off. The brain expects a human and then catches the mismatch, and that jolt feels like unease or even dread. The term was coined in 1970 by Japanese roboticist Masahiro Mori, and movement makes the effect stronger, a near-human face that twitches or moves jerkily is more disturbing than a still one.

For people who design humanoid and social robots, the valley is a practical warning. Pushing a robot to look as human as possible can backfire and make users trust it less, so many designers deliberately stop short, giving a robot a clearly stylized, cartoon-like, or obviously mechanical face that is appealing precisely because it does not pretend to be one of us.

Also calleduncanny valley effect恐怖谷效应恐怖谷效應

Unimate was the world's first industrial robot — a heavy hydraulic arm that started working on a General Motors assembly line in 1961. It is to robots roughly what the first automobile was to cars: not the most capable by today's standards, but the machine that proved the whole idea could work and launched everything that followed. Its job was simple and grim by human standards: lifting hot, freshly cast metal parts off a die-casting machine and stacking them, a task dangerous and exhausting for people.

The arm grew out of the ideas of inventor George Devol, who filed a patent for a 'programmed article transfer' in 1954, and engineer Joseph Engelberger, who is often called the father of robotics for turning that patent into a real, selling product. Unimate had no eyes or sense of its surroundings; it simply replayed a sequence of motions stored on a magnetic drum, repeating the same choreography precisely, shift after shift.

Its importance is historical more than technical. Unimate showed factory owners that a reprogrammable machine could take over the dull, heavy, and hazardous parts of manufacturing, and it kicked off the wave of industrial automation that reshaped how cars and countless other goods are built. Nearly every factory arm in the world today traces its lineage back to that first Unimate on the GM line.

Also calledfirst industrial robot第一台工业机器人第一台工業機器人

A unit quaternion is a way to store a 3D rotation as just four numbers that, taken together, behave very nicely. You can think of it as a careful repackaging of the axis–angle idea: it quietly encodes which axis to spin around and how far, but spreads that information across four values so the math becomes smooth and reliable. The word 'unit' means the four numbers are scaled so their combined size is exactly one, which is the condition that makes the quaternion describe a pure rotation and nothing else.

Robots and game engines reach for quaternions because they dodge the problems of the simpler alternatives. Unlike Euler angles, a quaternion never suffers gimbal lock, so no orientation ever causes the controls to seize up. Unlike a rotation matrix, which needs nine numbers, a quaternion needs only four, so it is cheaper to store and pass around. And it is numerically stable: after many turns are combined, small rounding errors can be cleaned up just by rescaling the four numbers back to size one, instead of slowly distorting the rotation.

The price is that quaternions are hard to read by eye, since the four numbers do not map onto anything a human pictures directly, and they have a quirk where a rotation and its 'double cover' twin describe the same physical pose. So engineers usually compute and blend orientations as quaternions under the hood, then convert to roll-pitch-yaw or an axis and angle only when a person needs to understand the result. Smoothly blending between two orientations, an operation called slerp, is an everyday quaternion task in animation and robot motion.

Also calledquaternionversor四元数四元數

A unit test is a tiny piece of code whose only job is to check that one small piece of your real code does what it's supposed to. You feed it a known input, say what answer you expect, and the test shouts if reality disagrees. The 'unit' is the smallest sensible thing to test on its own — usually a single function.

Each one is dead simple: 'when I add 2 and 3, I expect 5'. On its own that feels almost too obvious to bother writing. The payoff comes from having hundreds of them and running the whole batch in seconds. Change one line of code, run the tests, and they instantly tell you whether you just quietly broke something three files away.

That's the real gift — a safety net. Without tests, every change is a small gamble: did this break anything? With them, you edit boldly, run the suite, and trust the green checkmarks. They're also living documentation: reading a test shows exactly how a piece of code is meant to be used.

Also calledtesttest caseassertiontest suite

Once you decide to build a big system out of small chiplets instead of one giant die, a new problem appears: how does one chiplet actually talk to the one sitting next to it? For years every company answered that with its own private, in-house link, which meant a chiplet from one vendor simply could not plug into another vendor's die — the way a charger from one phone maker used to refuse to fit anyone else's phone. UCIe, the Universal Chiplet Interconnect Express, is the open industry standard that fixes this. Think of it as the USB of chiplets: a published, royalty-free socket-and-protocol agreement so that pieces of silicon from different companies, and even built on different process nodes, can be wired together and just work.

Concretely, UCIe standardizes the die-to-die interface in layers — the electrical bumps and signaling of the physical layer, a die-to-die adapter that handles reliability and link negotiation, and a protocol layer that carries familiar traffic like PCIe and CXL across the gap. It comes in profiles for different reaches: a 'standard package' flavor that runs over an ordinary organic substrate for longer, cheaper hops, and an 'advanced package' flavor that runs over a silicon interposer or bridge for the very short, dense, high-bandwidth links between tightly-packed chiplets. Either way, the point is a common contract at the chiplet boundary instead of a hundred incompatible private ones.

Why this matters traces straight back to the limits below it on the ladder. Squeezing everything onto one monolithic die hurts yield, and forces logic, memory, and analog to share a single process node even though each wants a different one. Chiplets answer that by letting you build from known-good dies and mix nodes — but only if they can be connected. UCIe is the connective tissue that turns 'chiplets' from a one-company trick into an open ecosystem, the same role a standard socket plays in any modular system: it lets a designer shop for the best chiplet for each job and trust that it will fit.

Also calledUCIeUniversal Chiplet Interconnect Express

Think about how, in ordinary digital electronics, you don't need a different piece of hardware for every possible logical operation. A handful of basic gates — AND, OR, NOT, or even just NAND on its own — can be wired together to compute any function at all. A universal gate set in quantum computing is the same idea, one layer up: it's a small collection of quantum gates from which you can build any quantum computation you want, just by applying them in the right sequence.

One common universal set is {H, T, CNOT} — the Hadamard gate, the T gate, and the controlled-NOT. With only these three, you can approximate any quantum operation you need. The word approximate matters and is not a weakness: quantum gates rotate states by continuous angles, so a finite toolbox can't hit every possible operation exactly. Instead, you compose these gates to land as close to the target as you like, and a result called the Solovay-Kitaev theorem promises you can get there efficiently, without needing an absurd number of gates for each extra digit of precision.

So when engineers design a quantum processor, they don't try to build hardware for thousands of distinct operations. They build a few high-quality gates that together are universal, then express every algorithm as a sequence drawn from that set — much like a compiler turning your code into a stream of a few machine instructions. Which exact gates are chosen depends on the hardware, but the promise of universality is the same: nothing computable on a quantum computer is left out of reach.

Also calleduniversal set of quantum gates

Universal grammar is the idea that every human baby is born with a kind of built-in blueprint for language — not English or Mandarin specifically, but the hidden scaffolding that all languages share. Think of it like a music box that comes pre-wired to play tunes: which song it ends up playing depends on what the child hears around them, but the machinery for making music was there from the start.

The puzzle it tries to solve is how fast and how well children learn to talk. A toddler hears messy, incomplete, often ungrammatical speech, never gets a rulebook, and yet by age four is fluently building brand-new sentences and reliably respecting subtle structural rules — even while still making the ordinary childhood slip-ups like "goed" or "foots." The linguist Noam Chomsky argued this is too good to be pure imitation: children must arrive already knowing the deep ground rules that all human languages obey, so they only need to fill in the local details.

It's easy to misread this as "we're born already knowing words," but that's not the claim — vocabulary and the specific grammar of your language are entirely learned. What's said to be innate is the abstract template underneath: a feel for how words group into phrases, how questions and negatives are formed, what a possible human language can and can't look like. The proposal remains debated — many researchers think general learning power, not a dedicated language blueprint, does the work — but it reshaped how we think about the mind.

Also calledUGChomskyan linguisticslanguage acquisition devicelanguage faculty普遍语法通用语法語言習得機制

Imagine you've designed a complex chip block and now have to prove it actually works. You could hand-write a one-off test program for it — but the next engineer building the next block starts from scratch, and nobody's tests look alike or talk to each other. UVM is the industry's answer to that mess: a big, pre-built SystemVerilog class library that hands you ready-made parts — drivers, monitors, scoreboards, sequencers — so everyone builds testbenches the same way, out of the same Lego bricks, and reuses them from project to project.

More precisely, UVM (Universal Verification Methodology) is a standardized framework — an Accellera standard, later adopted as IEEE 1800.2 — for building large, layered verification environments. Its real power is structure plus stimulus. The structure is a tree of reusable components: an agent wraps a driver (which wiggles the pins on the design), a monitor (which watches them), and a sequencer (which feeds in stimulus); higher up, scoreboards check that what came out matches what was expected. The stimulus side is built on constrained-random sequences — instead of you writing each test vector by hand, UVM generates floods of legal-but-unpredictable transactions and tracks, via functional coverage, which corners of the design have actually been exercised.

The thing that makes UVM "universal" is that these pieces are decoupled by design. Transaction-level modeling (TLM) connects components through abstract ports, so a monitor doesn't care who's listening; a factory lets you swap in a different driver or sequence at runtime without editing the environment; and a configuration database passes settings down the hierarchy. The payoff is a verification IP block — say, a UART or PCIe agent — that a team can drop into an entirely different chip with little more than re-wiring its interface. The cost is a steep learning curve: UVM is heavy, and a "hello world" testbench involves a surprising amount of boilerplate.

Also calledUVMUniversal Verification MethodologyUVM class library通用验证方法学通用驗證方法學

An unmanned aerial vehicle, or UAV — the everyday word is drone — is a flying machine that carries no human pilot on board. Instead it is flown either by a person on the ground holding a controller, or by an onboard computer following a stored plan, or by some blend of the two. Taking the pilot out of the aircraft is a bigger change than it sounds: the machine can be made small and cheap, it can fly into places too dirty, dull, or dangerous for a person, and no one is hurt if it crashes. That single shift is why drones have spread from a niche military tool into farms, film sets, delivery routes, and toy shops.

Drones come in two broad shapes, and the difference is essentially the difference between an airplane and a helicopter. Fixed-wing drones have stiff wings like a plane; as they fly forward, air flowing over the wings holds them up, so they glide along efficiently and can stay aloft a long time, but they must keep moving forward and usually need room to take off and land. Rotary-wing drones, the familiar little quadcopters with spinning propellers, hold themselves up by pushing air down with their blades; this lets them hover in one spot, rise straight up, and squeeze into tight places, at the cost of using more energy and rarely flying as far. Some craft mix both ideas to get hover plus range.

Drones are also described by how much they do on their own, a scale running from fully remote-controlled (a human steers every moment) up through following pre-set waypoints, to genuine autonomy where the drone senses obstacles, picks its own route, and reacts to wind and surprises without help. That autonomy, plus their bird's-eye view, is what makes them so widely useful: mapping fields, inspecting bridges and power lines, filming, searching for lost hikers, monitoring crops, and carrying small parcels.

Also calledUAVdrone无人飞行器無人飛行器

The unscented Kalman filter, or UKF, is another way to make a Kalman filter cope with a curvy, nonlinear world — but instead of flattening the curve with math, like the extended Kalman filter does, it samples the curve. The idea is that it is often easier and more accurate to push a few carefully chosen points through the true equations than to approximate the equations with a straight line. If you want to know where a thrown ball lands under wind, you learn more by tossing a handful of test balls than by drawing a straight line tangent to the ball's path.

Here is how it works. The filter's current uncertainty is shaped like a fuzzy cloud around its best guess. The UKF picks a small, clever set of representative points from that cloud — called sigma points — typically one at the center and a couple spread out along each direction of uncertainty. It then runs every one of those points through the robot's real, unmodified motion and sensor equations, curves and all. Looking at where the points land, it measures the new center (the mean) and the new spread (the covariance), and from those it rebuilds the updated cloud — no slope-taking, no Jacobians required.

Because it feeds the genuine nonlinear equations rather than a flattened stand-in, the UKF usually tracks sharp curves more faithfully than an EKF, with comparable computing cost and no hand-derived derivatives. That accuracy and convenience make it a popular choice for tricky systems like spacecraft attitude or aggressive drone maneuvers. The name is a bit of an in-joke from its inventor and carries no deep meaning; what matters is the sigma-point trick at its heart.

Also calledUKF无味卡尔曼滤波器無味卡爾曼濾波器

Every voluntary move you make travels down a two-stage relay, and the upper motor neuron and lower motor neuron are those two stages. The upper motor neuron is the command cell. Its body sits up in the brain, mostly in the motor strip of the cortex, and its long fiber runs down through the brainstem and spinal cord like a wire carrying an order from headquarters. The lower motor neuron is the delivery cell. Its body sits in the brainstem or in the spinal cord, and its fiber reaches all the way out to a muscle, where it actually tells that muscle to contract. The upper cell decides and instructs; the lower cell is the only one that touches muscle. Nothing moves unless the lower neuron fires.

The hand-off happens at a junction, usually in the spinal cord, where the upper motor neuron passes its message to the lower one. Picture a head office sending a memo to a floor manager (the upper neuron to the lower neuron), and only the floor manager can speak directly to the workers, the muscle fibers. This two-step design lets the brain plan smooth, deliberate action while the spinal cord handles the moment-to-moment firing. It also means the upper neuron does more than push the gas pedal: a big part of its job is to ride the brakes, holding back the lower neuron's own reflexes so movement stays controlled instead of jerky.

The split matters most when something breaks, because each level fails in its own telltale way, and a clinician can read the pattern to locate the damage. Damage to the lower motor neuron cuts the wire to the muscle: that muscle goes limp and floppy, loses its reflexes, weakens, and over weeks wastes away and may twitch on its own. Damage to the upper motor neuron leaves the lower neuron intact but uncontrolled, so it overreacts: the limb becomes stiff and tight, reflexes get exaggerated, and a stroked sole turns the big toe upward instead of curling it. Floppy with lost reflexes points downstream to the lower neuron; stiff with overactive reflexes points upstream to the upper neuron.

Also calledUMN vs LMNcentral vs peripheral motor neuron上运动神经元 下运动神经元上運動神經元 下運動神經元

Utilitarianism is a strikingly simple rule for telling right from wrong: the best action is the one that produces the greatest total well-being — the most happiness and the least suffering — counting everyone affected. Picture a city planner deciding where to build a hospital: a utilitarian doesn't ask which choice feels noble or follows tradition, but simply tacks up a giant ledger of who gains and who loses, and picks whichever site adds the most good to the world overall.

Its great appeal is fairness and clarity. Your happiness counts, but so does a stranger's, equally — no one's well-being gets extra weight for being rich, royal, or simply you. Jeremy Bentham, who set out the idea in his 1789 Principles of Morals and Legislation, built it on exactly this equal counting of every person. His follower John Stuart Mill, raised in Bentham's circle, later summed up that spirit with the dictum "everybody to count for one, nobody for more than one," and refined the view by insisting that the deep, lasting joys of art, love, and thought count for more than fleeting pleasures — better to be a dissatisfied human than a satisfied pig.

But the arithmetic has teeth, and that's where the hard cases bite. If torturing one innocent person would somehow delight a huge crowd, the raw sums might say to do it — yet our conscience screams no. This is the standing objection: by chasing the greatest total, utilitarianism can seem willing to trample an individual for the group. It reminds us that "the right thing" may be more than a sum, however carefully we add it up.

Also calledthe greatest happiness principleBenthamism最大幸福原则最大幸福原則

A UTXO — short for unspent transaction output — is a discrete chunk of cryptocurrency that someone has received and not yet spent. Instead of keeping a running balance for each user the way a bank account does, blockchains like Bitcoin track money as a great pile of these individual chunks, each one stamped with the condition needed to unlock it. Your wallet's balance is not a single number stored somewhere; it is simply the sum of all the unspent chunks you currently control.

The clearest way to picture a UTXO is as a physical banknote. You cannot tear a twenty-dollar bill in half to pay fifteen dollars; you hand over the whole bill and receive five dollars in change. A blockchain transaction works the same way: it consumes one or more whole UTXOs as inputs, and produces new UTXOs as outputs — one going to the recipient and, usually, one of change coming back to you. The old chunks are marked spent and the freshly minted ones become the new spendable money.

This design has real advantages. Because each chunk is either fully unspent or fully spent, the network can check for double-spending with a simple lookup, and many transactions can be verified independently and in parallel. The trade-off is that thinking in whole-bill chunks is less intuitive than a plain balance, which is why some other blockchains chose the account model instead. Both ultimately answer the same question — who owns what — by very different bookkeeping.

Also calledunspent transaction output未花费交易输出未花費交易輸出
V

A vaccine is a safe preview of a dangerous germ. It shows your immune system what an enemy looks like — without the enemy actually attacking — so that if the real thing ever arrives, your body recognizes it fast and fights it off far more effectively — often stopping illness entirely, and at the least making it much milder. Think of it as a fire drill: nobody gets hurt, but everyone learns exactly what to do when the alarm is real.

This is why vaccines feel almost magical: the protection happens in advance. Your immune system remembers the preview and keeps trained defenders on standby — for years and, with some vaccines, for life. Others fade over time, which is why certain vaccines need booster shots. The very first one came from a sharp observation — in 1796 Edward Jenner noticed that milkmaids who had caught mild cowpox never seemed to get deadly smallpox, so he deliberately gave a boy a touch of cowpox, and it protected him. The Latin for cow, vacca, is where the word "vaccine" comes from.

One common mix-up: a vaccine does not give you the disease it protects against. It hands your body a harmless rehearsal — a weakened germ, a dead one, or just a recognizable piece of it. And vaccines protect more than just you. When enough people in a community are immune, the germ runs out of places to spread, which shields the few who can't be vaccinated — newborns, the very ill. That shared shield is called herd immunity.

Also calledjabshotimmunizationinoculation预防针預防針

The vagus nerve is the longest of the twelve cranial nerves—the cables that run directly out of the brainstem rather than through the spinal cord—and the only one that wanders far past the head, all the way down into the chest and belly. Its name comes from the Latin word for "wandering," because it strays so far from home: branching out to the throat, heart, lungs, stomach, and much of the gut. Picture it as a thick, two-way phone line laid between the brain and your internal organs, constantly carrying messages in both directions so the two can keep each other informed.

Most of that traffic actually flows upward, from the organs to the brain: the vagus is the main reporter telling the brainstem how fast the heart is beating, how full the stomach is, how the lungs are doing. In the other direction, it carries the calming, "rest and digest" commands of the parasympathetic nervous system—the branch of the autonomic system that puts the body at ease—gently slowing the heartbeat, easing breathing, and stirring the gut to digest a meal. This makes the vagus a central player in the brain–body axis, the loop of signals by which mind and body shape each other; it is why a deep, slow breath can steady a racing heart, and why doctors can sometimes treat epilepsy or depression by sending tiny electrical pulses along this very nerve.

Also calledtenth cranial nervecranial nerve XCN X第十对脑神经第十對腦神經迷走神經

A validator is a participant in a proof-of-stake blockchain who has locked up a deposit in order to help run the network — proposing new blocks, checking other people's blocks, and voting on which chain is the real one. Validators are the proof-of-stake counterpart to proof-of-work miners: both keep the ledger honest, but a validator earns the right to do so by putting capital at risk rather than by spending electricity.

A validator's job runs in two modes. Some of the time the network randomly selects it to be the block proposer: it gathers pending transactions, assembles the next block, and broadcasts it. The rest of the time it acts as an attester, examining blocks proposed by others and signing off that they follow the rules. These signatures, gathered from many validators, are how the network reaches agreement on each block — a kind of continuous, weighted vote.

The deposit is what keeps a validator honest. Follow the rules and it collects steady rewards; break them — by going offline at the wrong moment, or by signing two conflicting blocks — and part of its stake can be automatically destroyed, a penalty called slashing. Because misbehaving directly burns the validator's own money, the cheapest path is almost always to behave, which is exactly how a crowd of self-interested validators ends up securing the chain for everyone.

Also calledvalidator验证者驗證者验证节点驗證節點

A variable is a named box that holds a value. You give the box a label — like score or username — put something inside it, and later you can read what's there or swap it for something new. It's the most basic building block of almost every program.

The name is the whole point: instead of repeating a value all over your code, you store it once and refer to it by name. Change what's in the box in one place, and everywhere that reads it sees the new value.

Why 'variable'? Because the contents can vary — they change over time. score might start at 0, climb to 10, then reset. The label stays the same; what's inside is free to move.

Also calledvarbindingidentifier

Imagine you are trying to find the lowest point in a foggy valley, but you can only feel the slope under your feet and take small steps. VQE works in much that spirit. It is a hybrid algorithm — part quantum, part ordinary classical computer — built to estimate the lowest energy state (the ground state) of a quantum system, such as a molecule. The quantum computer prepares a trial state using a shallow, tunable circuit whose knobs are a set of numbers (parameters), then measures it to estimate that state's energy. A classical optimizer running on a normal computer reads the estimate, nudges the parameters to try to lower it, and the loop repeats until the energy stops dropping.

Why bother with this back-and-forth? Because of a guarantee from physics called the variational principle: the energy you measure for any trial state can never dip below the true ground-state energy. So if you keep adjusting the circuit to push the measured energy down, you are squeezing toward the real answer from above — you always know you have an upper bound, never a false low. The circuit stays short on purpose, which matters because today's hardware is noisy and loses its quantum behavior quickly. By offloading the heavy optimization to a classical computer, VQE asks the fragile quantum part to do only a little, which is why it is one of the leading candidates for getting genuine value out of current NISQ-era machines.

Also calledVQE

Vascularization is the process of growing a network of blood vessels into a tissue so that every cell, even those buried deep inside, gets a steady delivery of oxygen and nutrients and a way to carry waste out. Picture a city that needs roads reaching every building — without that plumbing, the buildings in the center are cut off and cannot survive.

Living cells can only sit a fraction of a millimeter from a blood supply; any farther and they suffocate. A thin patch of lab-grown skin or cartilage can soak up nutrients from its surroundings, so it gets by. But anything thick — a chunk of muscle, a slice of liver, a whole organ — needs its own internal piping, or the cells in the middle die before the tissue can mature.

This is why vascularization is widely called the single biggest bottleneck in building thick, complex tissue. Researchers try to coax vessels to sprout in, to pre-build hollow channels for blood to flow through, or to print vessel-like networks directly. Solving it well is one of the key steps that stands between today's thin tissue patches and tomorrow's lab-grown organs.

Also called血管化

Vasopressin is a tiny chemical messenger — a hormone — that the brain makes to tell the body to hold on to water. Picture a small water company that, on a hot day when supplies run low, quietly sends a notice telling every household to stop letting water drain away. Vasopressin is that notice. It is built in the hypothalamus, a control hub deep in the brain, and released from the pituitary gland just below it into the bloodstream. Its other name, antidiuretic hormone, simply means the hormone that keeps you from making too much urine.

When your body senses that your blood is getting too concentrated or your blood volume is dropping — say you have been sweating, or you have not had a drink in hours — vasopressin levels rise. It travels to the kidneys and tells them to pull water back out of the urine they are forming and return it to the blood, so you lose less fluid. At the same time it can gently squeeze blood vessels to prop up blood pressure (that is where the name vasopressin, meaning vessel-pressing, comes from). This makes it one of the body's main tools for keeping its internal water and pressure steady, a balancing act called homeostasis.

Vasopressin is not only a plumbing hormone. The same molecule, acting on the brain itself rather than the kidneys, helps shape social behavior in many animals — influencing pair bonding, recognizing familiar individuals, parental care, and, in some species, territorial or aggressive responses. This is why it is often discussed alongside its close cousin oxytocin as a chemical that links the body's inner balance to how an animal connects with others, a clear example of the brain and body speaking the same chemical language.

Also calledantidiuretic hormoneADHAVP抗利尿激素精氨酸加压素精氨酸加壓素

Velocity kinematics is the study of speeds rather than positions: given how fast each of a robot arm's joints is turning right now, how fast and in what direction is its hand actually moving? It is the moving-picture companion to ordinary position kinematics, which only asks where the hand ends up for a given set of joint angles. Velocity kinematics instead asks how the hand is sliding and rotating at this very instant.

The tool that links the two is the Jacobian — the table that maps joint speeds to hand speed. Feed in the joint turning-rates and the Jacobian hands back the hand's linear speed (its travel left-right, up-down, forward-back) and angular speed (its rolling and tilting). Run the same relationship backward and you solve the everyday control problem: "I want the hand to glide this way at this speed — how fast should each joint turn?" Because the link is so direct, velocity kinematics is what lets a robot trace smooth, controlled paths in real time, rather than just hopping from one fixed pose to the next.

There is a catch worth knowing early: the relationship holds only for the arm's pose at this instant, and it shifts as the arm moves. So a controller cannot solve it once and forget it; it keeps recomputing the link, tick after tick, as the arm flexes. This constant refreshing is exactly what makes the motion come out smooth instead of jerky.

Also calledfirst-order kinematics速度运动学速度解

The ventral tegmental area, usually shortened to VTA, is a small cluster of cells tucked deep in the middle of the brain, in a region called the midbrain. It is most famous as one of the brain's main wellsprings of dopamine — a chemical messenger that neurons use to signal something like wanting, expecting a reward, or noticing that things turned out better than predicted. Think of the VTA as a tiny pump station: when something good or surprising happens — a bite of food, a kind word, a win in a game — it sends a pulse of dopamine fanning out along long fibers to other parts of the brain, and that pulse helps stamp in the lesson eat that again, do that again.

Those fibers reach forward into reward and decision-making areas such as a deep hub called the nucleus accumbens and the planning region behind your forehead, the prefrontal cortex. By tuning how much dopamine arrives there, the VTA shapes motivation (how hard you will work for something), pleasure and the feeling of craving, and how you learn which actions pay off. This makes it central to everyday drive and joy — and also to what goes wrong when these systems are pushed too hard. Addictive drugs like cocaine and nicotine hijack the VTA's dopamine signal, which is part of why they grip so tightly, and changes in this circuit are also tied to depression, where motivation and the capacity for pleasure can fade.

Also calledVTA腹侧被盖核腹側被蓋核

Deep inside the brain there is not solid tissue all the way through. Instead, the brain is hollowed out by a connected set of fluid-filled spaces called the ventricular system, four chambers linked by narrow channels. They are filled with a clear, watery liquid called cerebrospinal fluid, or CSF. The fluid is made on tufts of tiny blood vessels called the choroid plexus that line these chambers, slowly leaking and filtering a fresh batch out of the bloodstream all day long.

Once made, the fluid does not just sit there. It flows from chamber to chamber, then out through small openings into a thin gap that wraps around the whole brain and spinal cord, before being soaked back up into the blood. Because the brain floats in this fluid, it weighs far less than it would in air, so it does not crush itself under its own weight, and the liquid acts as a shock absorber that softens the jolts of everyday bumps and movement. The same flow also rinses the brain, carrying away waste products and helping deliver some nutrients, a kind of slow internal plumbing and cleaning service.

When this plumbing is blocked, fluid backs up and presses outward, a dangerous condition called hydrocephalus that can swell the chambers and damage surrounding tissue. Doctors also tap a little of this fluid with a needle in the lower back, a lumbar puncture, to look for signs of infection, bleeding, or disease, because the CSF carries clues about what is happening throughout the nervous system.

Also calledCSF脑脊髓液腦脊髓液ventricles脑室腦室

Verilog is the most widely used hardware description language (HDL) — a text language for describing digital circuits rather than writing step-by-step instructions. You declare a `module` with inputs and outputs and then say, in code, how the outputs depend on the inputs. A tool later turns that description into real gates.

The crucial mental shift is that Verilog is not a programming language. Lines do not run one after another; they describe hardware that all exists and reacts at the same time. An `assign` statement is a permanent wire, not a one-time calculation, and an `always @(posedge clk)` block describes flip-flops that all update together on each tick of the clock.

Most modern projects use SystemVerilog, a superset that adds richer types and verification features, but engineers still say "Verilog" for both.

Also calledHDLSystemVerilog硬件描述语言硬體描述語言

The vertebrate brain plan is the shared blueprint that every backboned animal is built from — fish, frogs, lizards, birds, mice, and people all grow a brain divided into the same three big chunks. From the spinal cord forward, these are the hindbrain (the back part, sitting just above the spinal cord), the midbrain (the middle), and the forebrain (the front). Think of it like the floor plan of a house: a mansion and a tiny cottage can look wildly different from the street, yet both have a kitchen, a living room, and bedrooms in roughly the same arrangement. Vertebrate brains differ enormously in size and detail, but the basic rooms — and the order they come in — are always the same.

This shared plan exists because all vertebrates inherited it from a common ancestor that lived more than 500 million years ago, and evolution has kept (conserved) the layout ever since. The three divisions each have steady jobs: the hindbrain handles basic survival housekeeping like breathing, heartbeat, and balance; the midbrain relays signals and helps coordinate seeing and hearing into action; and the forebrain deals with smell, emotion, and — at its front, the part called the cerebrum — thinking, learning, and choosing. What changes between species is mostly how much each part is enlarged or folded, not whether the parts are there. That is why a scientist who knows where the midbrain sits in a salmon can find the matching region in a sparrow or a human.

Also calledbasic vertebrate brain bauplanthree-part brain脊椎动物脑蓝图脊椎動物腦藍圖

Viral tract tracing is a way to map which neurons are wired to which, by letting a harmless, engineered virus do the legwork. Researchers inject the virus into one spot in the brain; it infects the neurons there, hijacks their cellular machinery to copy itself, and along the way produces a bright marker, such as a glowing fluorescent protein, that fills each infected cell. When the tissue is later examined under a microscope, the connected neurons light up — like dye poured in at one bus stop spreading out along every route that passes through it.

What makes these viruses special is that some of them can cross the synapse — the tiny gap where one neuron passes a signal to the next. A virus that travels backward, against the flow of signals, hops from a neuron to the cells that feed into it, revealing the inputs; one that travels forward follows the flow onward to the targets, revealing the outputs. Step by step, the virus traces out the chain of partners and turns an invisible circuit into a visible map.

The viruses are deliberately crippled so they cannot spread an infection or sicken the animal, and clever genetic tricks can limit them to a single jump or to one chosen cell type. This precision is why the method has become a workhorse for charting the brain's anatomical wiring — the connectome — linking distant regions and pinning down exactly which populations of neurons talk to which.

Also calledviral tracingtranssynaptic tracing病毒示踪法跨突触示踪跨突觸示蹤

A viral vector is a virus that has been stripped of its disease-causing genes and turned into a tiny delivery truck. Viruses are nature's experts at sneaking genetic material into our cells — that is exactly how they infect us. Gene therapy borrows that talent: it empties out the virus, removes the parts that make us sick, and loads a helpful gene into the cargo hold instead.

When the repurposed virus reaches a cell, it docks and unloads its package the same way a wild virus would, slipping the therapeutic gene inside. But because its own attack instructions are gone, it cannot multiply or spread illness — it simply drops off the cargo and stops. The cell then reads the delivered gene as if it were one of its own.

Different viral vectors suit different jobs: some reach many cell types, some prefer specific tissues, and some keep the new gene working longer than others. The trade-offs — how much cargo fits, how long the effect lasts, and whether the immune system notices the delivery truck — shape which vector a therapy chooses.

Also called病毒载体病毒載體viral delivery vector

A vision-language-action model, often shortened to VLA, is a single large learned system that takes in what a robot sees and what it is told in plain words, and directly puts out the movements to do the task. Show it a camera image of a cluttered table, tell it in everyday language to put the red mug in the sink, and it produces the stream of motor commands that drives the arm there — without separate hand-coded steps for recognizing the mug, planning a path, and gripping. Vision, language, and action are fused into one model that maps see-and-hear straight to move.

These are called robot foundation models because, like the large models behind modern chatbots, they are trained once on enormous and varied data and then reused across many tasks, rather than being built fresh for each chore. A VLA soaks up huge amounts of images, text, and robot demonstrations, learning broad common sense about objects, words, and how bodies move. The hope is that this shared base lets one model drive many different robots through many different jobs, and even handle instructions it was never explicitly trained on, simply by understanding language the way a capable generalist would.

Their great promise is generality: instead of programming a robot task by task, you can increasingly just ask it, in ordinary words, and lean on everything the model already learned. Their great difficulty is that the real world is unforgiving and physical — a chatbot that misreads a sentence writes a clumsy paragraph, but a VLA that misreads a scene can knock a glass off the counter. So these models still need careful testing, guardrails, and plenty of real and demonstrated robot data before they can be trusted to act safely outside the lab.

Also calledVLArobot foundation model机器人基础模型機器人基礎模型

The visual pathway is the chain of brain stations that carries what your eyes catch all the way to the part of the brain that lets you actually see it. Light first lands on the retina, a paper-thin sheet of light-sensitive cells lining the back of each eyeball. The retina turns that light into tiny electrical pulses, much like a camera sensor turning a scene into a digital signal. Those pulses then leave the eye and travel inward, hop through a relay station, and finally arrive at the back of the brain, where they are read out as the picture you experience.

Trace the route step by step. The pulses run out of the eye along a thick bundle of nerve fibers called the optic nerve. The two optic nerves, one from each eye, meet at a crossing point where some fibers swap sides, so signals from your left field of view end up on the right side of the brain and the right field on the left side. From there the fibers reach the thalamus, a deep relay hub that sits in the middle of the brain and forwards almost all incoming senses; the vision part of it tidies and routes the signals. Finally a fresh set of fibers fans out to the visual cortex, the wrinkled outer layer at the very back of the head, which pieces the signals together into edges, motion, color, and the full scene you recognize.

Because vision relies on this whole relay line, where it breaks matters as much as whether it breaks. Damage at the eye or optic nerve can dim or blind one eye, while damage further along, after the crossing point, knocks out the same half of the visual world in both eyes at once. Mapping exactly which slice of sight goes missing lets doctors pinpoint where along the pathway the trouble lies, even without looking inside the skull.

Also calledvisual systemretinogeniculate pathway视路視路视觉传导通路視覺傳導通路

Visual servoing means steering a robot's movement using a live camera feed as the constant feedback, correcting the motion many times a second based on what the robot sees right now. It is the difference between glancing at a target, closing your eyes, and reaching blindly, versus keeping your eyes open and adjusting your hand the whole way there. In visual servoing the robot keeps looking, compares where things appear against where it wants them to appear, and nudges its motors to shrink that gap — over and over, in a tight loop, until the picture matches the goal.

The trick is the closed loop. An open-loop reach computes one plan up front and commits to it, so any error — a slightly wrong measurement, an object that shifted, a joint that drooped — goes uncorrected and the robot misses. Visual servoing closes the loop by feeding the camera's view back into the controller continuously: see the error, move a little to reduce it, look again, move again. Because every cycle uses fresh vision, the robot naturally copes with things it did not perfectly know in advance, much as you can thread a needle by watching and adjusting rather than by calculating the thread's path once.

This is what lets a robot do delicate, vision-guided tasks in a changing world: a welding arm that tracks a moving seam, a drone that holds station over a drifting boat, a manipulator that aligns a plug with a socket, or a camera-equipped gripper that keeps centering on fruit even as the branch sways. The cost is that the controller must process images and react fast enough that the loop stays stable rather than overshooting and oscillating.

Also calledvision-based control视觉反馈控制視覺反饋控制VS

Visual SLAM is doing the whole sense-where-you-are-and-build-a-map trick using ordinary cameras as the main eyes. As the camera moves through a scene, the same object — a window corner, the edge of a poster, a speck on the floor — appears in frame after frame but shifts a little each time. By tracking how those visual features slide across the image, the robot can reason backward to two things at once: how the camera itself must have moved, and where in space those features actually sit. It is the same instinct you use leaning out of a train window: near things streak past fast, far things drift slowly, and from that parallax your brain reads both your speed and the layout of the world.

Doing this with cameras is appealing because cameras are cheap, light, and pour out a torrent of detail — a single image holds thousands of trackable points, and that same richness powers loop closure, since a place can be re-recognized by how it looks. The flip side is that a plain camera measures direction but not distance: it tells you a point lies somewhere along a ray, not how far down that ray. Visual SLAM recovers depth by watching a feature from two viewpoints and triangulating, the way two eyes give you depth — which is why moving the camera, or using two cameras side by side, is what unlocks a real-scale map.

Because it leans on appearance, visual SLAM is at its best in well-lit, textured places full of distinct features, and at its worst staring at a blank white wall, in the dark, or when everything blurs during a fast turn. Real systems often shore it up by fusing the camera with an inertial sensor that feels acceleration and rotation, so that when the picture briefly goes uninformative, the motion estimate carries on instead of collapsing.

Also calledvSLAMvisual simultaneous localization and mappingVSLAM視覺定位與建圖

Visual-inertial odometry, or VIO, is a way for a robot to track its own motion by blending two very different senses: what its camera sees and what its inner sense of motion feels. The camera watches the world slide past — as you walk forward, nearby objects sweep by quickly while distant ones barely shift, and from that flow the robot can read how it has moved. The inertial sensor, meanwhile, is like the feeling in your gut when an elevator starts: it senses acceleration and turning directly, with no need to look at anything. VIO marries these two so the robot can estimate where it has gone using just a small camera and a tiny motion chip, no GPS required.

Each sense covers the other's weakness, which is the whole point. A camera gives a rich, detailed read of motion but stumbles when the view is blurry, dark, or staring at a blank wall with nothing to track; it is also relatively slow, delivering only tens of frames a second. The inertial sensor is lightning-fast and works in pitch darkness, but on its own it drifts badly because it must add up its readings and the small errors snowball within seconds. Fused together, the fast inertial sensor carries the estimate smoothly through the gaps and the blurry moments, while the camera repeatedly anchors it back to what is really there, holding the drift in check.

This is worth contrasting with plain wheel odometry, which estimates motion by counting wheel turns. Wheel odometry is simple and cheap, but it is fooled by anything the wheels do that the body does not — slipping on ice, spinning in mud, or skidding — and it only works for things that roll on wheels. Visual-inertial odometry needs no wheels at all, so it works for drones flying, phones held in your hand, and headsets on your face, and it is not lied to by a slipping wheel; the trade is that it demands more computing power and a scene with enough visible texture to track.

Also calledVIO视觉惯性里程视惯里程计

A volcano is a doorway in the Earth's crust where molten rock, ash, and gas push up from the hot interior and break out at the surface. Think of the planet as having a thin, cracked shell over a fiercely hot inside; a volcano is one of the places where that inside leaks out, building a mountain from its own erupted material, layer upon layer.

Volcanoes are not scattered at random. Most of them line up along the edges of the giant slabs called tectonic plates, where one plate dives under another or two pull apart, and a few sit over deep, stationary "hotspots" far from any boundary, like the chain that made Hawaii. This is why a world map of volcanoes traces the same seams as a map of earthquakes.

One common myth is that the glowing orange rock pours straight up from the planet's molten core. It doesn't. The melt comes from the upper mantle, only tens of kilometres down, and it usually rises because of falling pressure or added water, not because the rock below is simply liquid waiting to spill.

Voltage is the electrical "push" that drives a current — the difference in electrical energy, per bit of charge, between two points, which makes electric charge want to flow from one to the other. Think of water in two tanks joined by a pipe: the bigger the difference in water level, the harder the water is pushed through. Voltage is that height difference for electricity. A 1.5 V battery gives a gentle nudge; a 230 V outlet shoves much harder.

Because voltage is a difference, it only exists between two points — there is no such thing as the voltage of a single, lonely point. That is why a bird on a high-voltage wire is unharmed: its two feet sit on nearby spots of the same wire, almost the same voltage, so there is barely any difference to push current through it. Connect a flashlight bulb across a battery's two terminals, though, and that 1.5 V difference drives just enough current to make it glow.

Also calledpotential differenceelectric potentialEMF电位差電位差

A voltage-controlled oscillator is an oscillator whose output frequency you steer with a knob made of voltage. Feed it a higher control voltage and it ticks faster; lower the voltage and it slows down. Think of a singer who slides their pitch up and down as a conductor raises and lowers a hand — the VCO is the singer, and the control voltage is the conductor's hand. By itself a VCO is a free-runner: it oscillates happily on its own, but its exact frequency drifts with temperature, supply voltage, and the luck of manufacturing, so you almost never trust it alone.

That is why a VCO is usually the engine inside a phase-locked loop. The loop watches how the VCO's phase compares to a clean reference, and gently nudges the control voltage until the two line up and stay there — the VCO becomes the muscle the PLL steers to reach and hold a target frequency. The key design number is the VCO gain, Kvco, in hertz (or radians) per volt: it tells you how many MHz of frequency you get for each volt of tuning. A big Kvco gives wide tuning range but makes the oscillator twitchy — every millivolt of noise on the control line smears into frequency wobble, which shows up as jitter and phase noise on the output clock.

Two common flavors do the actual oscillating. An LC VCO swings energy back and forth between an inductor and a capacitor, and you tune it by changing the capacitance with a varactor (a voltage-dependent capacitor) — these are quiet and prized in RF radios. A ring VCO chains an odd number of inverter-like stages into a loop and speeds them up or slows them down by starving or feeding their bias current; these are small, easy to build in plain digital CMOS, and dominate clocking on chips, at the cost of more phase noise.

Also calledVCOvoltage-tuned oscillator

A voltage-gated ion channel is a tiny protein doorway in the wall of a cell that opens or shuts depending on the electrical charge across that wall. Cells, especially neurons, keep a small voltage between their inside and outside, like a charged battery. This particular kind of channel can feel that voltage, and when it shifts past a certain point, the door swings open and lets specific charged particles called ions — such as sodium, potassium, or calcium — rush through. When the voltage swings back, the door closes again. So it is a gate whose key is not a chemical or a touch, but electricity itself.

This voltage-sensing trick is what makes fast electrical signaling in the brain and nerves possible. When a small electrical disturbance reaches one of these channels, it pops open, ions flood in or out, and that changes the voltage even more, which pops open the next channel a little further along, and the next, and the next. The result is a wave of opening and closing that races down a nerve fiber — the nerve impulse, or action potential. Different channels are tuned to let different ions through and to open and close at different speeds, and this precise choreography is what lets neurons fire, muscles contract, and the heart beat in rhythm. Many medicines and venoms work by jamming these channels open or shut.

Also calledvoltage-dependent ion channelvoltage-sensitive channel电压敏感通道電壓敏感通道

A voltage-sensitive dye is a special molecule that scientists slip into the thin outer wall of a brain cell, called the membrane, so they can watch the cell's electrical activity with light instead of wires. The dye is built to react to voltage — the tiny electrical charge difference across that wall. When the cell's voltage changes, the dye changes how brightly it glows under a microscope. So a flash of brightness becomes a visible stand-in for an electrical event you could otherwise never see with your eyes.

This matters because nerve cells signal with astonishingly fast voltage pulses, and the usual way to record them is to poke a single cell with a fine electrode — accurate, but you only hear from one cell at a time. A voltage-sensitive dye lets a camera capture many cells, or a whole patch of tissue, all at once: every spot that lights up is reporting its own voltage, moment by moment. It is like swapping a single microphone held to one person's mouth for a wide camera that watches a whole crowd react together.

The trade-offs are real. The flashes are faint and fast, so the signals are often noisy and easily drowned out by ordinary brightness changes; bright light and the dye itself can slowly harm living cells; and the readout shows relative change rather than an exact voltage in millivolts. Newer genetically encoded versions, where the cell makes its own light-sensitive voltage reporter, address some of these limits, but plain chemical dyes remain a workhorse for seeing fast electrical activity spread across space.

Also calledpotentiometric dyeVSDvoltage-sensitive dye imaging电压敏感染料成像電壓敏感染料成像膜电位染料

Voluntary movement is any action you choose to do on purpose, like reaching for a cup, waving hello, or saying a word out loud. Involuntary movement happens on its own, without you deciding to make it, like your heart beating, your eyelid blinking when dust flies near it, or your hand jerking back from a hot stove before you even feel the heat. The simplest way to tell them apart is to ask, "Did I have to want this for it to happen?" If the answer is yes, it is voluntary; if your body just did it, it is involuntary.

The two kinds of movement come from different paths in your nervous system. Voluntary movements usually start in the outer wrinkled layer of the brain, where a plan is formed ("pick up the cup") and sent down through the spinal cord to the right muscles. Involuntary movements take shortcuts that skip conscious thinking: a reflex, for example, can loop through the spinal cord and fire a muscle before the signal ever reaches the part of the brain that creates awareness, which is why you pull away from pain so fast. Many automatic actions, like breathing or digesting, are also run quietly by deeper brain regions so you do not have to remember to keep doing them.

The line between the two is not a hard wall, and that is part of what makes the body so clever. Some movements can be both: breathing happens automatically, yet you can take over and hold your breath on purpose. Practice can also push an action from one side toward the other, so that a beginner driver consciously steers and brakes, while an expert does much of it without thinking, almost on autopilot.

Also calledwilled vs automatic movement自主运动与非自主运动自主運動與非自主運動

A vulnerability is a flaw in software that an attacker can exploit to do something they shouldn't — read private data, take over an account, crash the system. It's an unlocked window in an otherwise solid house: harmless until someone notices it, dangerous the moment they do.

Vulnerabilities aren't usually put there on purpose; they slip in through honest mistakes — a missing check, an out-of-date library, an input nobody thought to clean. The whole security cycle is about finding them, reporting them quietly, and shipping a fix (a 'patch') before attackers find them first.

Big ones get a public ID — a CVE number — so the world can track them. The scary kind is a 'zero-day': a vulnerability attackers are already using before the maker even knows it exists, leaving zero days to prepare a defense.

Also calledvulnsecurity holeweakness
W

A wafer is a thin, polished disc of silicon or sapphire, often 100 to 300 millimeters across, and a quantum chip is a tiny rectangle cut from it. Wafer-scale integration means building and processing qubit devices across the whole disc at once — patterning, depositing metal, and forming junctions over the entire surface in one run — rather than coaxing along one chip at a time. The point is repeatability and numbers: do the work once for the wafer and you get dozens or hundreds of nominally identical chips, made under the same conditions, that you can then measure against each other.

Most of the steps borrow from ordinary semiconductor foundry practice: a sputtered or evaporated film goes down across the wafer, lithography prints the same pattern in every chip site, and etching carves it out everywhere together. The hard, quantum-specific parts are the Josephson junctions, whose tiny size sets each qubit's frequency, and the surfaces and interfaces that must stay clean enough to keep loss low. Doing all of this uniformly edge to edge is the real game — and it pairs naturally with high-throughput testing, where automated probes screen many chips on the wafer quickly so you keep the good ones and learn which process knobs moved the results.

The honest part is that 'wafer-scale' in quantum today usually means many small chips per wafer, not one giant processor spanning the whole disc — that monolithic dream runs straight into yield, since a single bad junction or lossy patch can spoil a device, and the odds of a flaw climb fast with area. Junction frequencies still scatter across the wafer, edges behave differently from the center, and a process that is gorgeous on one die can drift on the next. Wafer-scale work is how you get consistency and statistics to fight those problems; it is a manufacturing discipline being built up, not a finished path to large machines.

Also calledwafer-scale processingfull-wafer fabricationwafer-level integration晶圆级处理整片晶圆制造晶圆级整合晶圓級處理整片晶圓製造

Warehouse and logistics robotics is the use of robots to store, move, sort, and pack goods inside the big distribution centers that sit between a factory and your front door. When you order something online, your item lives somewhere among millions of products on shelves; the job of these robots is to find it, bring it, and route it toward the right delivery truck quickly and without mistakes. The warehouse becomes a kind of giant, constantly shuffling machine, with robots as its moving parts.

A signature idea here is goods-to-person: instead of a worker walking miles of aisles to hunt for items, short robots slide under whole movable shelves and carry them to a person standing still at a packing station — the shelves come to the human, not the other way around. Doing the roaming are autonomous mobile robots (AMRs), wheeled machines that build a map of the floor and navigate around people, pillars, and each other without following painted lines or buried wires. Other robots handle sortation, the high-speed fanning-out of packages onto the correct chute or lane by destination, and increasingly arms do picking, plucking individual items off shelves.

The overall goal is order fulfillment — turning a customer's click into a packed, labeled, shipped box — done faster, more cheaply, and more accurately, especially during demand spikes like holiday rushes when hiring enough people is hard. The deep challenge is coordination: hundreds of robots, conveyors, and humans must share a crowded floor without colliding, jamming, or losing track of where each item is, which makes the software that schedules and routes the fleet just as important as the machines themselves.

Also calledfulfillment roboticsAMR履约机器人履約機器人

The water cycle is the journey that water takes around our planet, over and over, with no real beginning or end. The Sun heats the ocean and warms puddles until water rises invisibly into the air as vapor (evaporation); high up where it's cold, that vapor gathers into clouds (condensation); the clouds let go as rain or snow (precipitation); and the water trickles downhill through rivers and soil, back to the sea (runoff), ready to climb skyward again. So the Sun lifts water up and gravity pulls it back down, turning the loop together. Hang wet laundry in the sun and watch it dry — you've just witnessed the first step.

This endless loop is why we have fresh water at all. The ocean holds almost all of Earth's water, but it's salty; evaporation leaves the salt behind, and the water that falls back as rain and snow is what replenishes the fresh water we can drink. Every river, lake, glacier, and raindrop is borrowed from this cycle, and the same molecules have been recycled for billions of years.

A common misconception is that the cycle creates or uses up water. It doesn't — the total amount on Earth barely changes; the cycle just keeps moving the same water between sea, sky, and land. So the water in your glass today may once have fallen as snow on a dinosaur.

Also calledhydrologic cycleH₂O cycle水文循环水文循環

A webhook is a reverse API: instead of you repeatedly asking a service 'anything new yet? anything new yet?', the service calls you the moment something happens. You hand it a URL of yours up front, and it promises to send a little message there whenever the event you care about occurs.

Picture the difference between standing at the mailbox opening it every five minutes versus just having the mail carrier ring your doorbell when a letter arrives. The first way (you asking over and over) is called polling, and it's wasteful — most of the time the answer is 'nope, nothing.' A webhook is the doorbell: the service does the calling, only when there's actually news, so you find out instantly and your code can sleep the rest of the time.

You see them everywhere once you know the shape. Stripe pings your URL when a payment succeeds; GitHub pings it when someone pushes code; a chat app pings it on every new message. You write a small endpoint that sits and waits, and the outside world knocks on it when it has something to tell you.

Also calledweb hookcallback urlhttp callbackreverse apievent notification

A WebSocket is a way to keep a live, two-way line open between the browser and the server, so messages can flow both directions the instant they happen. It's what powers chat apps, live scores, multiplayer games, and 'someone is typing…' — anything where the server needs to push news to you without being asked first.

To see why it matters, picture the normal way the web works: request and response, like sending letters. The browser mails a question, the server mails an answer, and then the line goes dead until the browser writes again. The server can't speak up on its own. If you wanted live updates that way, you'd have to keep nagging — 'anything new? anything new?' — over and over, which is slow and wasteful.

A WebSocket replaces the letters with a phone call that stays connected. After one quick setup (a 'handshake' that upgrades an ordinary connection), the line stays open and either side can talk whenever it likes — no re-asking, no delay. That open channel is the whole point: it makes the server able to tap you on the shoulder the moment something changes.

Also calledwswssreal-time connection

Wernicke's area is a patch of brain in the upper-back part of the temporal lobe — the chunk of the brain roughly behind and above your ear — that helps you understand the meaning of words you hear or read. Think of it as the brain's interpreter: sounds and letters come in, and this region turns them into ideas you can actually grasp. In most people it sits in the left half of the brain, the same side that handles most language work.

When this area is damaged — often by a stroke — a person can usually still speak smoothly and effortlessly, but the words come out jumbled and largely meaningless, and they struggle to understand what others are saying. This pattern is called Wernicke's aphasia. It contrasts with damage to a different language region (Broca's area) near the front of the brain, where speech becomes slow and labored but comprehension stays mostly intact. Studying these two patterns taught scientists an important lesson: understanding language and producing language rely on partly separate brain machinery.

Modern brain imaging shows the real picture is messier than one tidy spot. Language comprehension actually draws on a network of connected regions, and Wernicke's area is best understood as a key hub within that network rather than a single self-contained "meaning center." Still, the name remains a useful landmark for the temporal-lobe machinery that links the sounds and shapes of language to their meanings.

Also calledWernicke areareceptive speech area感觉性语言中枢感覺性語言中樞韦尼克语言区韋尼克語言區

Wheel-leg locomotion is a robot's way of getting around that combines wheels and legs so it can enjoy the best of both — the smooth, tireless efficiency of rolling on easy ground, plus the agile climbing of stepping over rough ground that would stop a plain wheeled robot. Wheels are wonderfully cheap on energy and fast on flat, hard surfaces: a wheel just turns and the robot glides, sipping very little power. But a wheel is helpless against a stair, a tall curb, or a deep ditch — anything taller than roughly its own radius simply blocks it. Legs are the opposite: they can reach up, plant a foot, and step onto or over almost anything, but they are slow, complicated, and burn a lot of energy even to stand still. Hybrid locomotion is the engineer's attempt to stop choosing between the two.

There are a few common recipes for blending them. One is to put a wheel at the end of each leg, so the machine rolls along on its wheels over flat ground and then, when it meets an obstacle, lifts a leg and steps the wheel up and over — a delivery robot that scoots down the path and then strides up the front steps. Another is the 'wheg', a single part that is half wheel and half leg: a spoked, paddle-like wheel whose stubby legs spin around and claw their way up bumps and stairs that a round wheel would skid against. A third approach simply carries both systems and switches between them, driving on wheels when it can and walking on legs when it must.

The payoff is a machine that is far more versatile than a wheels-only or legs-only design, able to cover ground quickly and still tackle terrain that would defeat a simple rover — which is exactly why hybrids are attractive for search-and-rescue in rubble, planetary exploration, and robots that must move through human spaces full of curbs and stairs. The price is added mechanical complexity, more motors and joints to build, control, and keep from breaking, and a constant judgement call the robot must make: roll for speed, or walk for capability.

Also calledhybrid locomotionwheel-legged robotwhegs轮腿式机器人混合移动

Wheeled locomotion is the most common way a robot gets around: round wheels turn against the ground, and that spinning quietly carries the whole machine forward, backward, or around a curve. Think of a shopping cart, a wheelchair, or a robot vacuum gliding across a kitchen floor — no lifting, no stepping, just a smooth, continuous roll. Because a turning wheel only ever touches the floor at one moving point and never has to be picked up and set down, rolling is one of the calmest and most reliable ways to move a body from here to there.

The big reason engineers reach for wheels first is efficiency. A leg has to swing up, plant down, and catch the body's weight at every single step, burning energy and risking a stumble; a wheel just keeps rolling, so almost all the motor's effort goes straight into forward motion rather than into lifting the robot up and down. Wheels are also mechanically simple — often just a motor and an axle — which makes them cheap, sturdy, and easy to control, and they let a robot carry heavy loads steadily without tipping. That is why warehouse robots, delivery carts, and self-driving cars almost all roll rather than walk.

The catch is that wheels love flat, firm, continuous ground and struggle the moment the world gets rough. A curb, a staircase, deep sand, a tangle of rubble, or a gap wider than the wheel can each stop a wheeled robot cold, because a wheel cannot step over an obstacle the way a leg can lift over it. So wheeled locomotion is a trade: you give up the ability to clamber over broken terrain in exchange for speed, simplicity, and efficiency on the smooth surfaces that fill most human-built spaces.

Also calledwheeled mobility轮式运动輪式運動

A white-matter tract is a bundle of nerve fibers that carries signals from one part of the brain to a distant part. Each fiber is the long output cable of a neuron, called an axon, and these axons run side by side in their thousands or millions like the wires inside a thick electrical cable. The tract's job is simple to state but vital: it links faraway brain regions so they can work together as a network rather than as isolated islands.

The fibers in a tract are coated in a pale, fatty wrapping called myelin, which insulates each axon and lets its signals travel far faster, much as plastic insulation around a copper wire keeps the current clean and quick. That fatty coating is why these bundles look whitish to the eye, and why the deep wiring of the brain is called white matter, in contrast to the grayer cell bodies on the surface. So a brain has two broad ingredients: gray matter, where neurons do their computing, and white-matter tracts, the long-distance cabling that connects it all.

Tracts come in three broad styles by where they run. Some, like the corpus callosum, cross between the left and right halves of the brain; some run forward and back within one half, linking front regions to back ones; and some run up and down, connecting the cortex to the spinal cord and the body. Researchers can now trace these bundles in a living person with a special kind of MRI scan, mapping the brain's wiring without ever opening the skull, and damage to a tract can quietly disconnect two healthy regions and disrupt skills like speech or movement.

Also calledfiber tractnerve fiber bundle白质束白質束神经纤维束神經纖維束

Whole-body control is a way of commanding a robot with many joints — like a humanoid with two arms, two legs, and a torso — so that all of those joints work together as one team to do several things at once. Instead of telling each joint what to do separately, you tell the robot what you want in plain goals: keep your balance, reach for that cup, hold your gaze steady, and do not push too hard on the table. The controller then solves, many times a second, for the single set of joint commands that best satisfies all those goals together. Think of it like a person reaching for a high shelf: your legs, hips, back, and shoulders all adjust at the same time, automatically, so you do not topple over while your hand goes up.

The reason it must be solved all at once is that a robot's tasks compete for the same body. Reaching far forward shifts the robot's weight, which threatens balance; turning the head changes nothing about the feet but everything about where the cameras point. A whole-body controller treats every goal as a task and works out joint motions and forces that serve them jointly, respecting hard limits along the way — joints can only bend so far, motors can only push so hard, and feet must not slip. It does this by setting up and solving a small optimization problem on every control cycle, asking which command best honors all the requests at the same instant.

Crucially, the goals are usually ranked by priority, because they cannot all be perfectly satisfied at once. Balance and not breaking your own arm sit at the top; reaching the exact target comes next; looking graceful comes last. A prioritized whole-body controller satisfies the high-priority tasks first and uses whatever freedom is left over to chase the lower ones, so a humanoid can keep its footing even if that means missing the cup by a centimeter. This is what lets legged robots walk over rubble, lift loads, and steady themselves all at the same time instead of doing them one at a time.

Also calledWBCwhole-body controller全身控制器

Whole-brain modeling is the practice of building a working computer simulation of the entire brain — not neuron by tiny neuron, but as a connected network of dozens or hundreds of brain regions, each treated as a single busy node that produces its own rhythm of activity. Think of it like simulating a country's whole economy by modeling each city and the highways between them, rather than tracking every single person. The model captures how these regions push and pull on one another so that, when you run it, patterns of brain-wide activity emerge on the screen the way they would inside a living head.

The wiring between the nodes is not invented — it comes from real brain scans. A technique called diffusion MRI traces the long fiber bundles that physically link regions (the brain's 'roads'), giving the model its map of connections. Each region is then given a small set of equations describing how its activity rises and falls and how strongly it responds to its neighbors. Researchers tune these settings until the simulation reproduces the slow, large-scale fluctuations actually recorded by brain imaging such as functional MRI. This lets them ask 'what if' questions safely on a computer — what happens to the rest of the brain if one region is damaged, slowed by disease, or nudged by a drug or stimulation — turning a static scan into a dynamic, testable picture of how the whole brain behaves over time.

Also calledlarge-scale brain modelingvirtual brain全脑模型全腦模型虚拟大脑虛擬大腦

Whole-organ engineering is the long-term goal of building a complete, transplantable organ from scratch — out of living cells and a supporting scaffold — to replace one that has failed. Rather than waiting for a matching donor, the dream is to manufacture a kidney, liver, or heart on demand, ideally from the patient's own cells so it would never be rejected. It is the grand finale that the whole field of tissue engineering is reaching toward.

The recipe blends the tools from across this field. A scaffold provides the organ's shape — perhaps a decellularized donor framework or a 3D-printed structure — and the right cells are seeded onto it, then matured inside a bioreactor that feeds them and exercises them until they knit into working tissue. The hardest part is plumbing: a real organ needs a dense network of blood vessels to nourish every cell, and recreating that fine vasculature is a formidable obstacle.

This matters because it would end transplant waiting lists and the lifelong anti-rejection drugs many recipients must take. But it is crucial to be honest: for complex solid organs, whole-organ engineering remains largely unachieved and experimental. Simpler tissues like skin, cartilage, and bladder patches have reached patients, yet a fully grown, transplantable kidney or heart is still a frontier under research, not a treatment you can receive today.

Also called全器官工程整器官工程

Working memory is the small mental workbench where you hold a few pieces of information and actively juggle them while you think. When someone tells you a phone number and you repeat it under your breath until you can dial, or you keep the start of a sentence in mind so its end makes sense, that's working memory at work — a scratchpad that's always running.

Its most famous feature is how tiny it is. You can keep only a handful of items in play at once — often said to be around four — and they fade within seconds unless you keep refreshing them. That's why a long string of digits slips away, but chunking them into groups (like a phone number) suddenly makes them manageable. This little workbench quietly sets the limit on mental arithmetic, following directions, and holding a thread in conversation.

A common mix-up: working memory is not the same as long-term memory, your vast permanent library of facts and experiences. Working memory doesn't store anything for keeps — it's the desk you work at, not the filing cabinet. It also isn't a measure of how smart you are, though a roomier workbench does make many thinking tasks easier.

Also calledshort-term memorythe magical number sevenBaddeley's model短期记忆短期記憶工作記憶

These are the two most important coordinate frames in robotics, and the whole trick is that one stays still while the other moves. The world frame (also called the global or fixed frame) is bolted to the environment — a fixed corner of the room or a spot on the map — and it never budges, no matter what the robot does. The body frame (also called the local or moving frame) is glued to the robot itself and travels everywhere the robot goes, turning when the robot turns. They are simply two different vantage points for describing the same scene.

The difference shows up the moment a robot gives a command. 'Drive to the door' is a world-frame thought — the door has a fixed spot on the map. But 'turn left and go forward two metres' is a body-frame thought — 'left' and 'forward' mean whatever the robot is currently facing, so the very same command sends it somewhere different depending on which way it started. It is exactly the gap between 'meet me at the north entrance' (world) and 'it's on your right' (body): one is anchored to the map, the other to you.

Good robots fluently translate between the two, dozens of times a second. A camera on the robot naturally sees the world in the body frame (the cup is up-and-to-the-left of the lens), but the planner usually thinks in the world frame (the cup sits at a fixed map location). Converting a measurement from one frame to the other is one of the most common operations in all of robotics, and forgetting which frame you are in is one of the most common bugs — a robot that confuses 'left of me' with 'west on the map' will wander off in a confidently wrong direction.

Also calledglobal frame vs local framefixed frame vs moving frame世界系与本体系全局坐标系局部坐标系全域座標系局部座標系

A world model is a robot's learned, internal copy of how its surroundings behave — a private little simulator it carries in its head. Given the current situation and an action it is considering, the world model predicts what will probably happen next: where the cup will slide, how the door will swing, what the camera will see a moment later. It is the difference between a robot that can only react to what is in front of it and one that can quietly imagine, before lifting a finger, the likely consequence of each choice.

What makes a world model powerful is that, once learned, the robot can run it over and over in pure imagination, far faster and cheaper than acting in reality. It can dream up many possible action sequences, see in its model which ones lead to good outcomes, and only then commit to the best plan — all without bumping a single real object or wearing out a single real motor. This is why world models are so prized in robot learning: real robot time is slow, expensive, and risky, while imagined time inside a good model is nearly free.

The catch is that the model is only ever a guess, stitched together from the experiences the robot has had. Where it has seen a lot, its predictions are sharp; where it has seen little, its imagined future drifts away from reality, and plans built on those shaky dreams can fail in surprising ways. So a robot must keep gathering fresh experience to correct its world model, and wise systems track how confident the model is — trusting it where it is reliable and staying cautious where it is merely guessing.

Also calledlearned dynamics model学习到的动力学模型內部世界模型

Wound healing is the staged, well-rehearsed process the body runs to close a wound. It is less like a single act and more like a four-shift construction crew arriving in order: first an emergency crew seals the breach, then a cleanup-and-security team clears the rubble and fights off intruders, then the builders lay fresh material, and finally a long finishing crew tidies everything up. Each shift hands off to the next.

The shifts have names. Clotting stops the bleeding within minutes, plugging the hole like a temporary cork. Inflammation then floods the site with immune cells that fight germs and clear debris, which is why a fresh wound is red, warm, and swollen. New tissue formation follows, with cells building fresh skin and tiny blood vessels. Finally, remodeling slowly strengthens and reorganizes the patch over weeks to months.

When these stages run cleanly, a wound closes neatly. When they stall — often the case in diabetes, poor circulation, or infection — a wound can stay open and become chronic. Understanding each stage is the first step toward helping stubborn wounds finally close.

Also called伤口愈合傷口癒合

A wrench is the way robotics bundles together everything you can do to push a solid object around: a straight push or pull (a force) and a twisting effort (a torque) packaged as one six-number object. The name is a small pun — it is not the hand tool, but it captures the same idea, since turning a real wrench applies both a push at your hand and a twist at the bolt. Three of the six numbers describe the force (how hard and in which direction it shoves), and the other three describe the torque (how hard and about which way it tries to spin the object). Carrying them together as a single quantity keeps the bookkeeping honest when a body is being shoved and twisted at once.

Why pair them rather than track force and torque separately? Because in the real world they almost never act alone, and they are deeply linked: a force applied off to the side of an object's center also makes it want to rotate, so a single off-center push secretly contains a torque. By writing the whole effect as one wrench tied to a chosen reference point, you can faithfully add up several pushes and twists, move the description from one frame of reference to another, and reason about balance — whether all the wrenches on a body cancel out, leaving it steady, or sum to something that will make it accelerate and turn.

Wrenches are the natural partner of twists, which package a body's linear and angular velocity into one six-number object the same way. This pairing is no accident: a twist says how a body is moving, a wrench says how it is being acted upon, and multiplying them gives the power flowing into the body. That symmetry is why grippers, force-controlled arms, and walking robots reason in wrenches — it lets a robot ask one clean question, what total force-and-twist am I applying or feeling, instead of juggling many separate numbers.

Also calledspatial forceforce-torque vector六维力旋量力
X

Xenotransplantation is transplanting living organs, tissue, or cells from one species into another — most famously, putting an organ from an animal into a human. The idea is to ease the chronic shortage of human donor organs: many more people need a kidney or a heart than there are donors, and an animal source could, in principle, be available on demand. Pigs are a leading candidate because some of their organs are close to human size.

The body's biggest objection is the immune system, which is built to attack anything it reads as foreign — and a whole animal organ screams 'foreign'. So researchers gene-edit the donor animals, switching off pig genes that trigger rejection and adding human ones to calm the immune response. Surgeons then transplant the organ much like a human one and use strong medicines to keep the recipient's immune system from destroying it.

This matters because it could one day relieve long transplant waiting lists, and the first experimental human cases have happened. But it is still early and risky. The two great hurdles are rejection — the body may attack the organ despite every precaution — and infection, the worry that an animal virus could cross into people. It is a frontier under careful study, not a routine option.

Also called异种移植異種移植跨物种移植
Z

A zero-knowledge proof is a method by which one person (the prover) can convince another (the verifier) that a statement is true, while revealing nothing beyond the fact that it is true. The verifier comes away certain the claim holds, yet learns none of the underlying secrets that made it true. It is one of the most surprising ideas in cryptography, because at first glance proving something usually means showing your evidence.

The classic illustration is proving you know a password without ever typing it. Imagine a ring-shaped cave with a locked door across the back, and a friend who waits at the entrance. You walk in by one of two passages; your friend then shouts which side they want you to emerge from. If you really know the secret that opens the door, you can always come out the requested side, every time, no matter which they call. After enough rounds, your friend is convinced you know the password, yet they never heard it. A zero-knowledge proof packages that kind of repeated, unfakeable demonstration into a single piece of math.

This matters far beyond party tricks. It lets you prove you are over 18 without revealing your birthday, prove you have enough funds without disclosing your balance, or prove a whole batch of transactions was computed correctly without re-running it, which is exactly how zk-rollups scale a blockchain. Zero-knowledge proofs let blockchains keep their core promise of verifiability while restoring a measure of privacy that fully public ledgers otherwise give up.

Also calledZKP零知识证明零知識證明

The zero-moment point, almost always shortened to ZMP, is a single spot on the ground that walking robots use as a balance check. Imagine a robot standing on one foot. The ground pushes back up on that foot, but it does not push evenly — it presses harder under the toe or the heel depending on how the robot is leaning. The ZMP is the one place on the sole where all that upward pressure can be thought of as pushing through a single point with no leftover twisting or tipping force around it. If you balanced the whole foot on a single pin stuck in at the ZMP, the foot would not start to rock or tip at that instant.

Why does this matter? A foot can only push, it cannot pull or grab the floor. So as long as the ZMP stays inside the patch of ground actually covered by the foot (or by both feet), the robot is safe — the ground can supply whatever push is needed and the foot stays flat. But the moment the ZMP reaches the very edge of the foot and tries to go past it, there is no more ground out there to push against, the foot peels up at one side, and the robot begins to topple. Walking controllers therefore plan every step so the ZMP stays comfortably inside the support area, and they nudge the arms, hips, or stride to pull it back if it drifts.

The ZMP is the workhorse criterion behind most classic two-legged robots, because it turns the messy question of "will it fall?" into one tidy rule: keep one computed point inside the contact area on the floor. It works beautifully for flat, predictable ground and confident, deliberate walking. It is less suited to running or hopping, where both feet leave the ground and there is momentarily no support patch to stay inside at all.

Also calledZMPzero-tilting-moment point零力矩點

A zk-rollup is a rollup that proves its off-chain transactions are correct by attaching a compact cryptographic validity proof to every batch it posts to the main chain. Instead of asking the world to trust the batch and watch for fraud, it hands the base chain a short mathematical certificate that the new state follows from the old one by the rules. The base chain checks that certificate and, if it holds, accepts the batch as final, no waiting and no disputes required.

The proof itself is a zero-knowledge proof (often a zk-SNARK or zk-STARK): a way to demonstrate that a computation was performed correctly without revealing all the inputs, and crucially in a form that is tiny and quick to verify even though the computation behind it was huge. Producing the proof is expensive and slow; checking it is cheap and fast. That asymmetry is the whole point, because the expensive part happens once, off-chain, while the cheap check is what the busy base chain has to do.

Compare it to a teacher who, instead of re-solving a thousand exam problems, is handed a single sealed answer key that can be verified to match the official solutions in seconds. Because correctness is proven up front, zk-rollups offer fast finality and let users withdraw to the base chain almost immediately, rather than waiting out a challenge window as optimistic rollups do. This makes them a strong long-term answer to scaling, with the same proof machinery also unlocking privacy-preserving applications.

Also calledzero-knowledge rollupvalidity rollup零知识卷叠零知識捲疊

A zk-SNARK is a particular, highly practical form of zero-knowledge proof, and its name is an acronym for its defining traits: Zero-Knowledge (it reveals nothing beyond the truth of the claim), Succinct (the proof is very small and very fast to check), Non-interactive (the prover sends a single proof, with no back-and-forth required), and ARgument of Knowledge (it convincingly shows the prover actually knows the secret information). These properties together make it ideal for blockchains.

Its superpower is succinctness. A computation can involve millions of steps, yet the resulting zk-SNARK proof can be just a few hundred bytes and verifiable in milliseconds. This is what lets a blockchain confirm that an enormous batch of off-chain work was done correctly without redoing any of it, which is the engine inside most zk-rollups. The non-interactive part is equally important: the prover posts one self-contained proof that anyone, anytime, can check, without a live conversation.

Think of it as a tamper-evident stamp on a sealed report: tiny, instantly recognizable, and impossible to forge, yet it certifies that a vast amount of hidden work was carried out exactly to specification. One classical caveat is that many zk-SNARK systems need a one-time trusted setup to generate their public parameters, and that secret material must be destroyed afterward; newer schemes such as zk-STARKs avoid this requirement at the cost of somewhat larger proofs.

Also calledSNARKsuccinct non-interactive argument of knowledge