First time here? Check out the FAQ!

Ask Your Question
1

binary value

asked 7 years ago

santoshi gravatar image

how to obtain binary of following an integer.as the object is very large 189866136719308462018271159242437168532L

Preview: (hide)

Comments

(I tried repeated times to post the answer, got internal error, that i should report...)

bin( 189866136719308462018271159242437168532L )
dan_fulea gravatar imagedan_fulea ( 7 years ago )

2 Answers

Sort by » oldest newest most voted
1

answered 7 years ago

slelievre gravatar image

One can convert this "long" to a "Sage integer", and use the method "bits".

sage: a = 189866136719308462018271159242437168532L
sage: b = ZZ(a).bits()

How many bits do we have:

sage: len(b)
128

Show the first eight bits

sage: b[:8]
[0, 0, 1, 0, 1, 0, 0, 1]

and the last eight bits

sage: b[-8:]
[0, 1, 1, 1, 0, 0, 0, 1]
Preview: (hide)
link
1

answered 7 years ago

dan_fulea gravatar image

updated 7 years ago

Alternatively, if we want the binary representation as a p h o n e number:

sage: a = 189866136719308462018271159242437168532L
sage: bin(a)
'0b10001110110101101110001101000111101110110011101001111001010101010010100111110111010100011010100111001000110100000000110110010100'

sage: type(bin(a))
<type 'str'>

This is similar to

sage: hex(a)
'0x8ed6e347bb3a795529f751a9c8d00d94L'
sage: oct(a)
'02166556150756635171252247672432471064006624L'

We can check that this matches the bits solution from the answer of slelievre:

sage: ZZ(a).bits() == [ int(s) for s in bin(a)[:1:-1] ]
True

Of course.

Note: Repeated times i tried to post versions of this answer. (The solution was to take a shower, then i wrote the word phone in an "unexpected" way. It seems that we cannot post the string pho.. number followed by an obvious such number here.)

Preview: (hide)
link

Comments

@dan_fulea -- regarding pho.. ..mber, yes, this is one of the strings that cause questions or answers to be rejected automatically, as it frequently signals spam. It would be nice if that could be bypassed for users with sufficient karma, but I'm not sure the Askbot engine allows that.

slelievre gravatar imageslelievre ( 7 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 7 years ago

Seen: 2,604 times

Last updated: Apr 07 '18