Why do equations typically have variable names like x and y?
In computer programming, we value meaningful names for variables. For example, if I were trying to calculate a square root, I would call the value I was trying to determine square_root, not x. This makes my code easier to understand.
Is this common in math and I just don't realize it?