|
|
|
|
|
by fluidcruft
1250 days ago
|
|
I just never find myself working out formulae/series/proofs on paper using zero-indexing. When you look up derivations/solutions in books and references they're one indexed. A recent example was a formula that had a (n-1)!*n! term that made sense from understanding the derivation. But I forgot to code it as (n-2)!*(n-1)! at first. So you end up having to translate from one-indexed derivations to zero-indexed code and it leads to different bugs. Ultimately zero-indexing just trades one layer of bugs for another. IMHO zero-indexing makes sense to people thinking about the machine, not necessarily the work people are trying to use the machine to do. To be fair sometimes the opposite is true and zero-indexing gives less complex expressions. |
|