473,378 Members | 1,580 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

sign magnitude, ones complement, two's complement

From least to greatest is it

sign magnitude
ones complement
two's complement

Where sign magnitude is the least way to represent integers
and two's complement is the best way to represent integers?

What are the pitfalls of them?
Nov 13 '05 #1
8 14355
Mantorok Redgormor writes:
sign magnitude
ones complement
two's complement What are the pitfalls of them?


I doubt if sign magnitude has ever been used in a popular US computer. The
disadvantage of ones complement is that there are two representations for 0,
"positive" zero and negative zero. OTOH subtraction is less onerous with a
ones complement hardware design.

Two's complement is certainly the dominant form in current computers.
Nov 13 '05 #2

"osmium" <r1********@comcast.net> wrote in message
news:bl************@ID-179017.news.uni-berlin.de...
Mantorok Redgormor writes:
sign magnitude
ones complement
two's complement
What are the pitfalls of them?


I doubt if sign magnitude has ever been used in a popular US computer.

The disadvantage of ones complement is that there are two representations for 0, "positive" zero and negative zero. OTOH subtraction is less onerous with a ones complement hardware design.
I believe the IBM 7090. But then they internally convert to ones complement
to do addition and subtraction.

Multiply and divide are easier in sign magnitude, and I believe divide is
done that way on most computers now.
Two's complement is certainly the dominant form in current computers.


Except for those made by Univac.

-- glen
Nov 13 '05 #3
Glen Herrmannsfeldt writes:
I doubt if sign magnitude has ever been used in a popular US computer.
I believe the IBM 7090. But then they internally convert to ones complement to do addition and subtraction.


I'll be damned! And also the 7094 according to this link. Just to cloud
the issue they use twos complement for some index fiddling if you look at
the instruction repertoire; which is also on this site.

http://www.frobenius.com/binary.htm
Nov 13 '05 #4
>From least to greatest is it

Least to greatest *WHAT*? Number of transistors in the CPU
to implement it? Tax rate? Weight of the documentation?
sign magnitude
ones complement
two's complement

Where sign magnitude is the least way to represent integers
and two's complement is the best way to represent integers?
Which is better, rat poison, a condom, or a Pepsi? It does rather
depend on what you want it for.
What are the pitfalls of them?


Unless you are designing a CPU or selecting one to buy, you don't
get to choose, and there are many MANY factors much more important
than this (like availability of a good compiler for it).

Gordon L. Burditt
Nov 13 '05 #5
osmium wrote:
Mantorok Redgormor writes:
sign magnitude
ones complement
two's complement

What are the pitfalls of them?


I doubt if sign magnitude has ever been used in a popular US
computer. The disadvantage of ones complement is that there are
two representations for 0, "positive" zero and negative zero.
OTOH subtraction is less onerous with a ones complement hardware
design.

Two's complement is certainly the dominant form in current
computers.


Actually arithmetic is more convenient in 2's complement, because
there is no need for end-around-carries.

However negation of a value is simpler in 1's complement. By
making the basic arithmetic operation a subtractor (rather than an
adder) you can avoid negative zero ever appearing, thus allowing
use of that value as a trap (e.g. uninitialized).

--
Chuck F (cb********@yahoo.com) (cb********@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!

Nov 13 '05 #6
osmium wrote:

Mantorok Redgormor writes:
sign magnitude
ones complement
two's complement

What are the pitfalls of them?


I doubt if sign magnitude has ever been used in a popular US computer.


The first computer I ever programmed used signed magnitude.
Was it "popular?" Hard to tell, but IBM thought enough of the
design to build the machines and offer them in a range of sizes
(twenty, forty, or sixty thousand decimal digits of memory).

--
Er*********@sun.com
Nov 13 '05 #7
Eric Sosman wrote:

osmium wrote:

Mantorok Redgormor writes:
sign magnitude
ones complement
two's complement

What are the pitfalls of them?


I doubt if sign magnitude has ever been used in a popular US computer.


The first computer I ever programmed used signed magnitude.
Was it "popular?" Hard to tell, but IBM thought enough of the
design to build the machines and offer them in a range of sizes
(twenty, forty, or sixty thousand decimal digits of memory).

Upthread, someone mentioned the last might have been the IBM 7094 which
came out in Jan 1963 and was the last of the 'Old Iron' before the
'Modern' IBM 360 and later. How 'popular' could the 7094 have been? How
many of them were built? I don't know the number. 100? More?

My first computer was the Philco 2000/212 which came out the same month
as the 7094. In long suit we had 32K of 48-bit (8-character) words of
RAM in four 8K banks. Each bank had a cycle time of 1.1 microseconds.
Bank selection was done in the low order two bits of address so that we
could get four 48-bit words every 1.1 usecs. This was 'core' memory with
real magnetic cores.

We left the 7094 for dead.

Philco Computers, Willow Grove, PA, R.I.P.
--
Joe Wright http://www.jw-wright.com
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 13 '05 #8

"CBFalconer" <cb********@yahoo.com> wrote in message
news:3F***************@yahoo.com...
osmium wrote:
Mantorok Redgormor writes:
sign magnitude
ones complement
two's complement
What are the pitfalls of them?

(snip)
Two's complement is certainly the dominant form in current
computers.


Actually arithmetic is more convenient in 2's complement, because
there is no need for end-around-carries.


With popular adder designs end-around carry isn't hard to do, and shouldn't
be slower. It complicates serial adders, but since the PDP-8S I don't know
that there have been any machines with serial binary adders.
However negation of a value is simpler in 1's complement. By
making the basic arithmetic operation a subtractor (rather than an
adder) you can avoid negative zero ever appearing, thus allowing
use of that value as a trap (e.g. uninitialized).


Yes, negation can be complicated with two's complement, as it can overflow.
On some machines this means processing a trap or exception for that case.

-- glen
Nov 13 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

37
by: Claude Gagnon | last post by:
Hi, How can we compare sign of numbers in C++ ? Bye, Claude
4
by: Abby | last post by:
I have an array which contain Hex no. in each position. For examples, unsigned char data; data = 0x00; data = 0x01; data = 0x02; data = 0xE; data = 0xEF; --> This is the checksum value
10
by: Sona | last post by:
Hi, Could someone please explain what sign-extension means? If I have a hex number 0x55, how does this get sign-extended? Can a sign-extended counterpart be equal to -91? In a program I'm...
5
by: John Devereux | last post by:
I was wondering what is the "best" way to set a variable to "all ones". In particular where I do not know the precise type of the variable (or more accurately, when I don't want to worry about...
7
by: Greenhorn | last post by:
Hi, Is two's complement always used as a storage method or is it computed while computing the expression involved. e.g., int a = -2, b = 3, c = 4, d; d = b - c; Here, is 'a' stored as two's...
6
by: Jason Heyes | last post by:
Does a function exist in the standard library to compute the sign of an integer? Example: int sign(int v) { return v > 0 ? 1 : (v < 0 ? -1 : 0); } Thanks.
14
by: darthghandi | last post by:
What would be the most efficient way to calculate the two's complement of a variable length byte array? Thanks for your time.
8
by: scrier | last post by:
Hi, What i'm trying to accomplice is to change the sign of an integer value. Not do the 2 complement so I get the negative value, but to change sign of something that already has done the 2...
7
by: schaefer.mp | last post by:
To compute the absolute value of a negative base raised to a fractional exponent such as: z = (-3)^4.5 you can compute the real and imaginary parts and then convert to the polar form to get...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.