5
1
In Bitcoin core, when generating a new address for receiving a payment, you get this dialogue:
There is a tick-box for "Generate Bech32 address".
I understand that this is a relatively new feature not yet supported by all wallets. The tooltip help claims that
Bech32 addresses ... are cheaper to spend from and offer better protection against typos"
- How much cheaper than the "P2SH wrapped SegWit address"? (and why?)
- Don't P2SH wrapped SegWit addresses include check-digits at the end?
I did find a 52-minute Youtube video where someone with a familiar name was giving a presentation on Bech32 but I'm hoping that it can be explained simply and concisely for the non-technical end-user wondering whether to click that check-box or not.

1"So, the amount of saving is insignificant." the result is around 25% less weight per input. Since when is a one quarter reduction insignificant? – G. Maxwell – 2018-09-06T03:13:03.503
In addition to the scriptSig being removed, the public key and signature are moved into the witness data. The latter two are significant savings. – Dustin – 2018-10-01T23:05:48.963
Edit: Comparing two witness transactions that both keep public key and signature separate this is ostensibly correct. BIP 141 has this to say: "Comparing with the previous example, the scriptPubKey is 11 bytes smaller (with reduced security) while witness is the same. However, it also requires 35 bytes in scriptSig." – Dustin – 2018-10-01T23:11:53.070