Jump to content

Talk:Non-adjacent form: Difference between revisions

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
Content deleted Content added
m Forgotten initialization
Line 14: Line 14:
<math>e_i:=c_i+b_i-2c_{i+1};</math><br>
<math>e_i:=c_i+b_i-2c_{i+1};</math><br>
'''end'''<br>
'''end'''<br>

== Encoding the NAF of an m-bit number using m+1 bits ==

The article currently states that "[b]cause every non-zero value has to be adjacent to two 0's, the NAF representation can be implemented such that it only takes a maximum of m + 1 bits for a value that would normally be represented in binary with m bits." Can someone provide more details on this "implementation"? [[Special:Contributions/188.169.229.30|188.169.229.30]] ([[User talk:188.169.229.30|talk]]) 19:39, 27 April 2013 (UTC)

Revision as of 19:39, 27 April 2013

The paragraph on alternating signs is not correct. Just consider the binary representation of decimal 9, being 1001, which is its unique NAF form.

It is however correct that the Booth Algorithm determines a signed digit representation where the signs of the non-zero digits alternate.

BUT the Booth algorithm does not generate a NAF representation! Take as an example a binary string with an isolated 1, say ......, which by the Booth Algorithm converts into ......

The original algorithm for converting a binary number into its equivalent and unique NAF form was given by Reitwiesner in 1960, but normally it is described by the following right-to-left algorithm:

Input: in 2's complement
Output:

for to do

 

end

Encoding the NAF of an m-bit number using m+1 bits

The article currently states that "[b]cause every non-zero value has to be adjacent to two 0's, the NAF representation can be implemented such that it only takes a maximum of m + 1 bits for a value that would normally be represented in binary with m bits." Can someone provide more details on this "implementation"? 188.169.229.30 (talk) 19:39, 27 April 2013 (UTC)[reply]