User:Dimawik/Computer arithmetic
From Wikipedia, the free encyclopedia
Computer arithmetic is a subfield of the computer architecture[1] that deals with both the hardware implementation of arithmetic operations in a computer and software algorithms supporting the arithmetic, with an emphasis on speeding up the numeric calculations.[2] The term also designates the corresponding branch of the computer engineering.[3]
| This user page is actively undergoing a major edit for a little while. To help avoid edit conflicts, do not edit it while this notice is displayed. This page was last edited 2 years ago, at 00:07, 13 March 2024 (UTC) (). Please remove this template if this page hasn't been edited for a significant time. If you added this notice, remember to remove it or replace it with {{under construction}} between editing sessions. |
The field of computer arithmetic covers hardware implementation of adders (including counters) and subtractors, multipliers, dividers, square rooters and evaluators for other arithmetic functions. The software side of the computer arithmetic involves design and analysis of arithmetic algorithms.[3] Bitwise operations like NOT, AND, OR, XOR, bit shifts also belong to "computer arithmetic".[4]
Number representation
Integer numbers
While multiple number representations were historically considered and used (including binary coded decimal tribit,[3] and residue number system[5]),[6] modern computer almost exclusively use the binary representation.[citation needed] For the signed integers the two's complement approach is typical (for example, 4-bit integers have a range from -8 (1000) to +7 (0111).[3]
Real numbers
| This user page or section is undergoing significant expansion or restructuring. You are welcome to assist in its construction by editing it as well. If this user page has not been edited in several days, please remove this template. If you are actively editing this article or section, you can replace this template with {{in use|5 minutes}}.
This page was last edited by Dimawik (talk | contribs) 2 years ago. (Update timer) |
The real numbers are treated as a combination of a whole (a.k.a. integral part) and a fractional part) expressed as a single sequence of bits. The position of a radix point separating the parts is implied (fixed). For example, a signed "1+3" integer uses 4 bits, three of which represent the fractional part (with the accuracy of 1⁄8 and range from -1 coded as binary 1.000 to +0.875 coded as 0.111).[7]
Evolution of instruction set
| This user page or section is undergoing significant expansion or restructuring. You are welcome to assist in its construction by editing it as well. If this user page has not been edited in several days, please remove this template. If you are actively editing this article or section, you can replace this template with {{in use|5 minutes}}.
This page was last edited by Dimawik (talk | contribs) 2 years ago. (Update timer) |