of     1   

UnsourcedAnon
#181971890Tuesday, January 19, 2016 2:15 AM GMT

Hello. Given that I am rather calmer than usual, I suppose a wholesome discussion of base-two sequences will entertain our fellow users, yes? Good then. We will start with a basic sequence of my choosing: "01010", which equals "10" in base-ten calculations. Such a sequence is actually equivalent to this: (0 * 2^4) + (1 * 2^3) + (0 * 2^2) + (1 * 2^1) + (0 * 2^0). As you may have noticed, the exponential values for each term of the binary sequence decreases as you move rightwards. This is solely because of the fact that the exponents themselves are the actual positions of the numbers within the sequence, beginning from the 0th term. A 'simple' formula for calculating binary numbers is thus "(n * 2^p)." Since binary utilizes only 1 and/or 0, "n" is simply either of these values. "p" merely represents numerical position. Yes, this example should provide us with a wholesome conversation of knowledge to discuss.
kingdestroyah
#181971960Tuesday, January 19, 2016 2:16 AM GMT

01000110 01110101 01100011 01101011 00100000 01101111 01100110 01100110 00100000 01101101 01100001 01110100 01100101 ☭Why have friends when you can have a cult of personality instead?☭ http://www.roblox.com/Lick-the-Corn-item?id=177372709
UnsourcedAnon
#181972562Tuesday, January 19, 2016 2:25 AM GMT

"01000110 01110101 01100011 01101011 00100000 01101111 01100110 01100110 00100000 01101101 01100001 01110100 01100101" Very interesting sequence. Are you attempting to obtain the ASCII value or the numerical value?
UnsourcedAnon
#181975051Tuesday, January 19, 2016 3:06 AM GMT

It is rather upsetting that such a discussion of binary has been relatively-ignored. I made the false assumption that the individuals on the website would enjoy an attempt at constructing an intellectual conversation. Nonetheless, the provided formula applies for every numerical-base, with the necessary modifications.
UnsourcedAnon
#181987774Tuesday, January 19, 2016 9:02 AM GMT

Alright then. Since I do not want to disregard such a splendid discussion, I will attempt to structure our binary explanation to solve a basic mathematical problem. Imagine that a male individual by the name of "John" is going to the market. Within the market, we have the following items to purchase: {8 Apples, 4 Pears, 2 Kiwis, 1 Pineapple} Now, suppose that the cost of said items is equivalent to the quantity of the specified items. Because John is rather poor, we will need to somehow specify which items that John intends to purchase. This is where base-two is useful. Since binary merely uses the two states of {0,1}, it is an appropriate solution to this problem. If John intends to purchase only the pears and apples, this is the appropriate order: {1,1,0,0} If John intends to purchase only the kiwis and pineapples, this is the appropriate order: {0,0,1,1} If John intends to purchase all of the items, this is the appropriate order: {1,1,1,1} All of those solutions are fairly accurate simply because 0 and/or 1 represent off/on, specifically. {1,1,1,1} = 8 + 4 + 2 + 1 = 15. Hopefully this experiment with an array of values provides a clearer interest in base-two manipulation.
UnsourcedAnon
#182176295Friday, January 22, 2016 8:09 PM GMT

Another basic binary problem with added logic will suffice: Suppose that we are attempting to a operate a device with six buttons. Each individual button simply activates a specific function for the machine. As a result, pressing each button results in the voltage state of that particular button changing, which determines whether the function itself is currently being used. To accommodate this, assume that "0" refers to low-voltage. "1" refers to high-voltage. The central electricity-usage of the machine is determined by the sum of the electricity-usage of the individual buttons. The electricity-usage of each button is determined by the mathematical expression "(n * 2^p)", assuming that "n" refers to the position of the button. Due to electricity-constraints, our machine has a electriciy-usage limit of 128 megawatts. Thus, the order of buttons must be such that the sum of the buttons actively using megawatts remains less than or equivalent to the specified limit. Given that our machine has a minimum electricity-usage limit of 64 megawatts, how can we provide a combination of buttons such that the activated buttons are greater than two yet use a combined electricity-cost less than the total megawatt limitation? To provide a hint, I will mention that use of the logical negation symbol "~"(Logical-complement) is permitted.

    of     1