Money serves three functions: medium of exchange (trade without barter), unit of account (common measure of value), and store of value (save purchasing power over time). Fractional reserve banking multiplies the money supply: banks lend out most deposits, those loans become new deposits elsewhere, and the chain continues as a geometric series.
Three functions of money
Without money, trade requires a "double coincidence of wants": you must find someone who has what you want and wants what you have. Money eliminates this friction. It also provides a common yardstick for prices and a way to carry purchasing power into the future.
Scheme
; Barter vs money: the double coincidence problem; Three people, three goods. Can they all trade?
(define alice '("has: wheat""wants: shoes"))
(define bob '("has: shoes""wants: iron"))
(define carol '("has: iron""wants: wheat"))
(display "Barter economy:") (newline)
(display " Alice ") (display (car alice)) (display ", ")
(display (cadr alice)) (newline)
(display " Bob ") (display (car bob)) (display ", ")
(display (cadr bob)) (newline)
(display " Carol ") (display (car carol)) (display ", ")
(display (cadr carol)) (newline)
(newline)
(display "No bilateral trade works!") (newline)
(display "Alice wants shoes from Bob,") (newline)
(display "but Bob wants iron, not wheat.") (newline)
(newline)
(display "With money:") (newline)
(display " Alice sells wheat for $5") (newline)
(display " Alice buys shoes for $5") (newline)
(display " Everyone trades. Done.")
Fractional reserve banking
Banks keep a fraction of deposits as reserves and lend the rest. When that loan is deposited elsewhere, the receiving bank lends again. Each round creates new money. The total money created from an initial deposit is a geometric series.
Central banks control the money supply through the reserve ratio, the interest rate, and open market operations (buying/selling government bonds). Lowering the reserve ratio increases the multiplier. Lowering interest rates encourages borrowing. Buying bonds injects reserves into the banking system.