Bitcoin addresses do not actually exist on the Bitcoin network. They are an abstraction for humans to be able to easily send money to each other.
What Bitcoin actually uses are transaction outputs. A transaction creates outputs which consist of the value and the output script. When you send money to someone, you are spending from an Unspent Transaction Output (UTXO) and creating new UTXOs.
When you send to an address, you are really creating a UTXO with the value you want and an output script that is specified by the address. Addresses encode a version number and some data (usually a hash). So your wallet software takes the address, decodes it, and constructs an output script based upon the data and the version number (the version number specifies what the output script format should be).
So addresses themselves do not actually exist on the network; they do not actually carry a balance nor do you actually send to or from an address. However many places will just say "balance of an address" and show such information as a convenience. This "balance" is calculated by constructing the output script an address specifies and then searching through the UTXO set for UTXOs with output scripts that match the constructed script. The values of these UTXOs are summed and that becomes the address's balance.
Ok so I suppose that saying "address balance" is really just a convenience thing - an easier way of saying "unspent transaction outputs. – Howiecamp – 2018-03-28T00:53:32.340
1@Howiecamp correct in some cases, but using that word also promotes misunderstanding, as people are inclined to think about addresses in the same way as bank account numbers which is wrong – MeshCollider – 2018-03-28T00:54:14.503
In that case it's too bad that nomenclature has taken hold - because it certainly is pervasive. – Howiecamp – 2018-03-28T00:56:38.887
1
Very true. There's an interesting talk Andreas Antonopolous gives at Harvard from 2015 where he talks about this same topic. Here it is (https://www.youtube.com/watch?v=Ur037LYsb8M)
– m1xolyd1an – 2018-03-28T01:42:00.500"requiring a private key" how so? – CodesInChaos – 2018-03-28T11:56:44.650
1@CodesInChaos you need to sign a transaction using a private key to prove you own the bitcoins you are trying to spend – MeshCollider – 2018-03-28T12:23:54.810