Digits

Digits

The fundamental symbols used to express numbers are called digits. The symbols 0, 1, 2, 3, …, 9 form the basic set of digits in our standard base-10 numerical layout. The Decimal System (Base-10 System): This is the most universally implemented numerical framework. It consists of the digits 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9, where the positional value of each place represents a specific power of 10. For example, the value of the number 543 is calculated expanded as: \[5 \cdot 10^2 + 4 \cdot 10^1 + 3 \cdot 10^0 \]This configuration serves as our standard system for day-to-day computations. Example: Let a and b be two digits. The minimum possible value of the sum a + b is \(0 + 0 = 0\) , while the maximum possible value is \(9 + 9 = 18\). • If \(a\) and \(b\) are distinct digits, the minimum possible value of the sum \(a+b\) is \(0+1 = 1\), and its maximum possible value is \(8 + 9 = 17\). For the difference \(a-b\), the minimum possible value is \(0- 9 = – 9\), and the maximum possible value is \(9- 0 = 9\).

Numbers

A number is a mathematical object formed by combining one or more digits to represent a specific quantitative value. While the symbol 5 independently represents a single digit, combining two instances of this digit sequentially forms the number 55. Numeral Systems: Numeral systems allow quantitative values to be structured using alternative bases. Beyond the standard decimal framework, computer science relies heavily on frameworks such as the binary system (base-2), the octal system (base-8), and the hexadecimal system (base-16). These alternative notations are utilized based on specific engineering requirements. A comprehensive breakdown of Numeral Systems and Base Arithmetic will be covered in detail in the upcoming chapters.  

← Previous Page | Next Page →