JOVANA
Explore Library Glossary Getting Started Three Levels Fields How it works Mission
Join the mission
All guides

From Bits to Signals on a Wire

You already know a network chops everything into packets and stacks the work in layers. Now we go all the way to the bottom: how a single 1 or 0 actually becomes a wiggle of voltage, light, or radio that crosses real copper, glass, or air.

The bottom of the stack

Everything you learned in the earlier rungs eventually has to touch the real world. A packet is a tidy idea, but a wire knows nothing about packets, addresses, or layers. By the time the data reaches the very bottom, it is just a long string of 1s and 0s that must somehow be pushed across copper, glass, or empty air to a receiver who turns it back into the same string of 1s and 0s. That job, and nothing more, is the physical layer.

Notice how small that job is. The physical layer does not check for errors, does not know where the data is going, and does not care whether this bit belongs to a video call or an email. It is the dumbest, most honest layer of all: take a bit on this side, make a physical thing happen, and hope the same bit appears on the other side. Everything clever you have met so far is built on top of this one humble promise.

Analog and digital: smooth waves, sharp steps

What actually travels on a wire is a signal — a physical quantity that changes over time, like a voltage rising and falling. There are two flavours. An analog signal varies smoothly through every value in between, the way the volume knob on an old radio glides from quiet to loud. A digital signal jumps between a small number of fixed levels, like a light switch that is only ever fully on or fully off. The contrast between these two is the analog vs digital signal distinction, and it shapes everything below.

Here is the twist that surprises most beginners: the wire itself is fundamentally analog. Copper carries continuous voltage; fiber carries continuous light; air carries continuous radio waves. There is no tiny digital pipe inside a cable. When we want to send the digital bits 1 and 0, we have to choose physical shapes to stand for them — for example, a high voltage for a 1 and a low voltage for a 0. Turning bits into a sendable waveform is the heart of the next two guides; for now, just hold the idea that bits are an abstraction and the medium is always a smooth, messy, analog place.

Why bother with digital at all, if the world is analog? Because every real medium adds a little distortion and noise along the way. An analog signal drifts, and copies of copies get steadily worse. But if a 1 only has to be told apart from a 0, the receiver can shrug off small disturbances and still read the right bit. Digital is not more natural than analog — it is a deliberate trick to survive an imperfect world.

Two numbers people constantly confuse

In the foundations rung you already met three things that get blurred together — bandwidth, throughput, and latency — and you learned that more bandwidth does not cut latency, because nothing beats the speed of light. The physical layer adds a second, sharper version of the same trap, this time about the word bandwidth itself.

To a physicist, bandwidth is a width in hertz: the range of frequencies a channel will let through, like the band of pitches a telephone line can carry. To a networking person, bandwidth usually means a data rate in bits per second. These are not the same kind of quantity at all — one is measured in hertz, the other in bits per second — even though we sloppily use one English word for both. The clean term for how many bits cross per second is the data rate, and it is what we actually care about when we say a link is 100 Mbps or 1 Gbps.

There is a third number lurking nearby. The baud rate (or symbol rate) counts how many distinct signal changes — symbols — happen per second, while the bit rate counts bits per second. They feel identical until you realize one symbol can carry more than one bit. If each symbol picks one of four voltage levels, it encodes two bits at once, so the bit rate is double the baud rate. Mixing up bit rate and baud is a classic mistake; guide 3 will show exactly how packing more bits into a symbol works with QAM.

Why a wire has a speed limit

You might hope that if bits are cheap to flip, we could send them as fast as we like. Physics says no. As you cram more symbols per second onto a channel, they begin to smear into one another, and the receiver can no longer tell where one ends and the next begins. The frequency width of the channel — its true hertz bandwidth — sets a hard ceiling on how many clean symbols per second can get through. That is the spirit of the Nyquist limit, the first of two famous walls you will meet head-on in guide 2.

The second wall is noise. Every real medium adds random hiss, and as a signal travels it also fades — its strength drops with distance, an effect called attenuation. What matters is not the noise alone but how loud the signal is compared to it, captured by the signal-to-noise ratio. When the signal is barely above the hiss, the receiver guesses wrong and you get bit errors. Shannon's famous result ties these together: a channel's hertz bandwidth and its signal-to-noise ratio together fix the absolute maximum data rate, no matter how clever your engineering. Again, guide 2 does the real math; here just feel that the limit is real and unavoidable.

This is the deepest honesty of the physical layer: there is a hard wall, and good engineering can approach it but never break it. When a salesperson promises a faster connection, they are buying you more bandwidth or a cleaner channel, never a loophole around physics. It is the same lesson as the speed of light setting latency — limits at the bottom of the stack are not bugs to be fixed, they are the stage on which everything else is performed.

Putting bits on the medium

So how do bits actually become a waveform? There are two broad styles. In a baseband scheme you send the bits more or less directly — you map them onto voltage levels right on the wire, with no carrier underneath. This is what plain Ethernet over twisted pair does, and the trick of choosing those voltage patterns so the receiver can stay in step is called line coding. Baseband is simple and works beautifully on a wire you own from end to end.

The other style is modulation: you start with a steady, fast carrier wave and gently tweak its height, timing, or phase to ride the bits on top of it. This is how Wi-Fi rides radio, how your phone talks to a tower, and how cable broadband shares one coax among many channels. Sending many such carriers side by side over a shared medium is broadband, in contrast to baseband's single direct signal. The reason we modulate is that a chosen carrier can travel where raw bits cannot — through the air, or far down a cable without smearing.

BITS  ----> SIGNAL ON THE MEDIUM

1 0 1 1 0
  |
  v   baseband (direct levels, e.g. Ethernet on copper)
  +--> _|‾|_|‾‾|___   high = 1, low = 0
  |
  v   modulation (tweak a carrier, e.g. Wi-Fi on radio)
  +--> ~~/\/\~~  carrier, altered to spell out the bits

medium: twisted pair | coax | optical fiber | air
Two ways to turn the same five bits into something a medium can carry.

Finally, all of this needs something to travel through, and the choices have wildly different personalities. Cheap twisted pair runs short hops to your desk; coaxial cable carried decades of cable TV and broadband; optical fiber pushes light enormous distances with tiny loss, and single-mode fiber is the long-haul champion of the global backbone; and where no cable can reach, we fall back to radio through the air. Guides 4 and 5 dig into sharing a single medium among many users and into the strengths and limits of each material — but you now have the whole map of this rung in your head.