• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Multiplying binary.

jsbush

Diamond Member
Hey, could someone help me out please.

would 1101.11 x 1.1011 = 1110.10111??

If its wrong could you show me how you did it please?


Thanks, your help is much appriciated.
 
10111.001101

just multiply using the same rules as you would with base 10 (multiply as if the decimals aren't there, then count the total number of digits after the decimals and apply to the final answer)
 
Originally posted by: jonmullen
can you do fractional binary?
you can do fractions in any base system. for base "g",
0.n = n * 1/g
0.0n = n * 1(g*g)
etc.

You young fellers have it easy in assembly classes now with x86 having hardware multiply and divide. When I was a lad we had to not only walk to school 5 miles uphill through the snow, but had to program 6502 and 8080 chips with just shifts and add/subtract.


 
Originally posted by: DaveSimmons
Originally posted by: jonmullen can you do fractional binary?
you can do fractions in any base system. for base "g", 0.n = n * 1/g 0.0n = n * 1(g*g) etc. You young fellers have it easy in assembly classes now with x86 having hardware multiply and divide. When I was a lad we had to not only walk to school 5 miles uphill through the snow, but had to program 6502 and 8080 chips with just shifts and add/subtract.

Bring it on old man.
 
Back
Top