Set of integers.
Chat with our AI personalities
The set of integers.
.{..., -3, -2, -1, 0, 1, 2, 3, ...}
presuming you mean ten bits, every bit is a power of 2, beginning with power 0, right to left. So, 11 = 2^1+2^0=3 and 101=2^2+0+2^0=5 The value of a ten bit word depends on the bits which are set (=1). This allows representation of values from 0 through 1023, effectively 1K as rounded in "computerese". All bits set=1 yields 1023, no bits set (all clear) yields 0.
It would help if we could see the said graph but this browser is simply not up to it.
A huge number. 0 + 1 + 2 = 3 0 + 2 + 1 = 3 1 + 0 + 2 = 3 1 + 2 + 0 = 3 2 + 0 + 1 = 3 2 + 1 + 0 = 3 -0 + 1 + 2 = 3 -0 + 2 + 1 = 3 1 - 0 + 2 = 31 + 2 - 0 = 32 - 0 + 1 = 32 + 1 - 0 = 3 0 - 1 + 3 = 2 0 + 3 - 1 = 2 -1 + 0 + 3 = 2 -1 + 3 + 0 = 2 3 + 0 - 1 = 2 3 - 1 + 0 = 2 -0 - 1 + 3 = 2-0 + 3 - 1 = 2-1 - 0 + 3 = 2-1 + 3 - 0 = 23 - 0 - 1 = 23 - 1 - 0 = 2 0 - 2 + 3 = 1 0 + 3 - 2 = 1 -2 + 0 + 3 = 1 -2 + 3 + 0 = 1 3 + 0 - 2 = 1 3 - 2 + 0 = 1 -0 - 2 + 3 = 1-0 + 3 - 2 = 1-2 - 0 + 3 = 1-2 + 3 - 0 = 13 - 0 - 2 = 13 - 2 - 0 = 1 1 + 2 - 3 = 0 1 - 3 + 2 = 0 2 + 1 - 3 = 0 2 - 3 + 1 = 0 -3 + 1 + 2 = 0 -3 + 2 + 1 = 0 For each of these equations there is a counterpart in which all signs have been switched. For example 0 + 1 + 2 = 3 gives -0 - 1 - 2 = -3and so on. Now, all of the above equations has three numbers on the left and one on the right. Each can be converted to others with two numbers on each side. For example:the equation 0 + 1 + 2 = 3 gives rise to0 + 1 = 3 - 20 + 1 = -2 + 30 + 2 = 3 - 10 + 2 = -1 + 31 + 2 = 3 - 01 + 2 = -0 + 3-0 + 1 = 3 - 2-0 + 1 = -2 + 3-0 + 2 = 3 - 1-0 + 2 = -1 + 31 + 2 = 3 + 01 + 2 = +0 + 3 As you can see, the number of equations is huge!