I've been trying to work out the difference between scale and precision in relation to decimal numbers.
Precision is the number of digits in a number. Scale is the number of digits to the right of the decimal point in a number. For example, the number 123.45 has a precision of 5 and a scale of 2.
Most of the articles seem to be related to SQL data types, as per the following image:
Questions
- Does the same hold true in a purely mathematical context?
- If the above question is true, given the value
0.001, is its scale3and precision4?
Edit (for Bounty)
Based on feedback in the comments I've received so far, it seems that "no, scale and precision aren't the terms used to define these numbers", so perhaps a more appropriate question is:
What are the equivalent terms in mathematics?

