Is there an easy way to find the radix r?

  • Thread starter Thread starter mr_coffee
  • Start date Start date
AI Thread Summary
To find the radix r for the numbers (BEE)r = (2699)10 and (365)r = (194)10, it's essential to recognize that bases must be greater than the highest digit present. For (BEE)r, since 2699 is odd, it cannot be hexadecimal, as hexadecimal would require it to be even. For (365)r, the base must be at least 7 due to the digit '6', and polynomial expansion can be used to derive the equation 3*r^2 + 6*r - 189 = 0, which can be solved using the quadratic formula. Converting between bases like base 4 and octal can be efficiently done by first converting to binary. Understanding these principles allows for easier base conversions and radix calculations.
mr_coffee
Messages
1,613
Reaction score
1
Hello everyone.

I'm suppose to figure out the radix r of these 2 numbers:
(BEE)r = (2699)10; //the 10 means base 10
Of course r has to be 16 because HEX is the only one with A-F
(365)r = (194)10;
Is there an easy way to figure out the radix here or do i just have to convert 194 to each of the bases and see which one works out?
Also if i wnated to convert
310.2 base 4 to octal, would i just divide by 8 as if u were going to convert a decimal to octal or would I first convert it to decimal by this method:
4^2 * 3 + 4^1x1 + 0 + .5 = 52.5 base 10 now divide by 8 and multiply by 1/8 to get the decimal part.
 
Engineering news on Phys.org
Not so fast!
Just because a number has Bs and Es in it doesn't mean its Hexadecimal. It could be in any base from "15" up. In fact, I can look at this example and tell its not Hex. Both Decimal and Hex have Even base, thus an "even" number in one base would have to be even in the other. The decimal 2699 is Odd, while 'BEE' in Hex would be even, thus it can't be Hex. You'll have to figure out what it is.

For the (365)r = (194)10, I don't know any direct comparisons (doesn't mean there isn't one, though), but there are a couple of things you can do. First, since it has a '6' in it, the base can be no lower than "7", so start at that. Then, if the first 'digit' found is incorrect you can stop there and eliminate that base. Same with the second, third, etc., so you generally don't have to convert the whole number if it isn't correct. If it is the correct base, you'd wind up converting the whole thing.

Finally, it is easy to convert back and forth between bases 2, 4, 8, 16, etc. Simply find the binary for the first value, then take it into the second. Example:
310.2 in base (4) gives us:

3 => 11, 1 => 01, 0 => 00, and 2 => 10, so we have:

11,01,00.10 ie. "110100.10" and if we group these as an Octal, we have:

110,100.100 so the Octal would be:

64.4

If you wanted the Hex, you'd get:

0011,0100.1000 = 34.8



KM
 
Last edited:
That in the second paragraph above holds only when converting to some other base from base ten. Going the other way, the considerations are a little bit different.

KM
 
Last edited:
Awesome, thanks a lot man!
 
use polynomial expansion. you can expand out the number 365, for example, with radix r by saying 3*r^2 + 6*r + 5 = 194. Then you simply need to bring everything over to the left of the equation, so you get 3*r^2 + 6*r - 189 = 0. Then just use the quadratic formula to solve for r. :)
 
Hey guys. I have a question related to electricity and alternating current. Say an alien fictional society developed electricity, and settled on a standard like 73V AC current at 46 Hz. How would appliances be designed, and what impact would the lower frequency and voltage have on transformers, wiring, TVs, computers, LEDs, motors, and heating, assuming the laws of physics and technology are the same as on Earth?
While I was rolling out a shielded cable, a though came to my mind - what happens to the current flow in the cable if there came a short between the wire and the shield in both ends of the cable? For simplicity, lets assume a 1-wire copper wire wrapped in an aluminum shield. The wire and the shield has the same cross section area. There are insulating material between them, and in both ends there is a short between them. My first thought, the total resistance of the cable would be reduced...
I used to be an HVAC technician. One time I had a service call in which there was no power to the thermostat. The thermostat did not have power because the fuse in the air handler was blown. The fuse in the air handler was blown because there was a low voltage short. The rubber coating on one of the thermostat wires was chewed off by a rodent. The exposed metal in the thermostat wire was touching the metal cabinet of the air handler. This was a low voltage short. This low voltage...
Back
Top