0% found this document useful (0 votes)
26 views7 pages

History and Algorithms of Arithmetic

Uploaded by

Elijah Imperial
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views7 pages

History and Algorithms of Arithmetic

Uploaded by

Elijah Imperial
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Arithmetic Algorithm

Submitted by:
Elijah Red Tingzon
John Daile Mike Custodio
Emerson Cabasa
Chester James Alvarado
Arthur Fuenteblanca
Prince Rafael Caber

Submitted to:
Mr. Fernando Medrina
History of Arithmetic Ancient Civilizations

Early Beginnings As societies advanced, so did their


understanding of arithmetic. By around 2000
BCE, the Egyptians and Babylonians had
The origins of arithmetic can be traced back to developed more sophisticated arithmetic
ancient civilizations around 3000 BCE, when operations, including basic rules for addition,
early humans began to develop numeral systems subtraction, multiplication, and division. The
to solve practical problems. The Sumerians in Rhind Mathematical Papyrus (circa 1650 BCE)
Mesopotamia are often credited as one of the is one of the earliest known documents that
first cultures to establish systematic methods for detail arithmetic methods used in ancient Egypt.
dealing with numbers, utilizing tally marks and
rudimentary counting tools like pebbles and
sticks. This early form of arithmetic was Notable Contributions:
primarily concerned with counting objects, such
- Egyptians: Utilized fractions and had a more
as livestock or trade goods, and laid the
complex numeral system.
foundation for more complex calculations.
- Babylonians: Established multiplication tables
and dealt with geometrical exercises.
Key Developments:

- Tally Marks and One-to-One Correspondence:


Greek Influence
Early humans used tally marks to keep track of
quantities, a method that established the basis
for counting. The ancient Greeks made significant strides in
- Numeral Systems: The Egyptians developed the study of arithmetic during the 6th century
hieroglyphic symbols for numbers, while the BCE. They shifted from practical applications to
Babylonians created a base-60 system that a more abstract understanding of numbers. The
influenced later mathematical concepts. Pythagoreans introduced rigorous mathematical
proofs and explored properties of numbers
beyond mere counting.
Important Concepts: Medieval to Modern Era

- Abstract Number Theory: The Greeks


recognized that numbers could represent more
During the Middle Ages, Islamic scholars made
than just physical quantities.
significant contributions to arithmetic by
- Theorems and Proofs: They developed preserving Greek texts and expanding upon
foundational principles that would influence them. Mathematicians like Al-Khwarizmi wrote
mathematics for centuries. influential works that introduced algorithms for
solving equations, which laid the groundwork
for modern algebra.
The Concept of Zero and Decimal System

Advancements:
The Hindu-Arabic numeral system, which
- Mechanical Calculators: Invented in the 17th
includes the concept of zero, emerged in India
century, these devices automated arithmetic
around the 5th century CE. This system was
calculations.
revolutionary as it introduced place value
notation and allowed for more efficient - Development of Number Theory: In the 18th
calculations. Arab mathematicians later refined and 19th centuries, mathematicians formalized
these concepts and transmitted them to Europe number theory and established axiomatic
during the medieval period. foundations for arithmetic operations.

Key Innovations: Contemporary Arithmetic

- Zero: Introduced as a placeholder, enabling the


representation of large numbers.
The 20th century saw a revolution in arithmetic
- Decimal System: Facilitated easier with the advent of electronic calculators and
computation compared to earlier systems. computers, drastically increasing both speed and
accuracy in calculations. Today, algorithms
underpin many aspects of arithmetic operations
in various fields, from finance to engineering.
Current Trends: sequence to form a number. Each digit, when the
number is written in expanded form, represents a
- Digital Calculators: Allow for rapid
multiple of a power of ten; for example, 247 = 2
computations that were once tedious by hand.
× 10^2 + 4 × 10^1 + 2 × 10^0. Therefore, this
- Computer Algorithms: Enable complex number system is called a base-10, or decimal,
mathematical operations performed at number system.
unprecedented speeds.

An algorithm that uses ten to an integer power n,


Conclusion 10^n, to perform calculations is a base-10
algorithm. Many of the rules that are used in
fundamental arithmetic are actually algorithms
The history of arithmetic reflects humanity's
for the base-10 system.
quest for understanding numerical relationships
and solving practical problems. From ancient
tally marks to modern algorithms, each The base-10 number system is used every day
advancement has built upon previous and may seem ordinary, but it is a very powerful
knowledge, shaping the way we approach and elegant system with which to express
mathematics today. numbers. Although most people may not be
aware of it, when adding and subtracting
Definition of an Algorithm numbers, for example, one is essentially using

An algorithm is a sequence of steps or shortcut rules that are based on base-10

instructions outlining how to solve a problem. algorithms.

One can think of an algorithm as a problem-


solving formula or recipe. The term "algorithm"
derives its name from al-Khwarizmi (c. 780–c.
850), an Arab mathematician who wrote an
influential book on algebraic methods.

The Hindu-Arabic Number System

In the Hindu-Arabic number system, it is often


referred to as the Arabic system, ten numerals or
digits (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) are used in a
Addition Algorithms In the first parenthesis, add 10 to 4, so 14 is
greater than 7.
Consider 448 + 246.
764 - 347 = (700 + 50 + 14) - (300 + 40 + 7)
The base-10 algorithm for the same problem is
shown explicitly below.

But 14 × 100 = (10 + 4) × 100 = 10 + 4 × 100. So now the resulting problem is to subtract 7
The 10 here is responsible for the 1 "carry-over" from 14, 40 from 50, and 300 from 700.
to 8, the first digit on the left. Therefore,
764 -347 = (700 -300) + (50 -40) + (14 -7)
= 6 × 10^2 + (8 + 1) × 10^1 + 4 × 10^0
=400 +10 +7
= 6 × 10^2 + 9 × 10^1 + 4 × 10^0
=417
= 600 + 90 + 4

= 694.
Another algorithm for subtraction is called
"subtraction by taking complements." Consider
764 -347 again. Adding the same number, c, to
both terms will not affect the answer because c +
Subtraction Algorithms (-c) =0. So effectively the value does not

A base-10 algorithm for solving the subtraction change.

problem 764 - 347 follows. 764 -347 = (764+c) - (347+c)

764 - 347 = (700 + 60 + 4) - (300 + 40 + 7)

Choose c so that 347+c becomes a multiple of

Here the idea is to subtract corresponding ten, say one thousand. Therefore, c =653.

numbers: 7 from 4, 40 from 60, and 300 from 764 -347 = (764+653) -(347+653)
700. It is known that 7 is greater than 4, and 7
=1,417-1,000
from 4 is -3, but suppose nothing is known about
negative numbers. In the first parentheses, write =417
60 as 50 + 10.

764 - 347 = (700 + 50 + 10 + 4) - (300 + 40 + 7)


Multiplication Algorithms 2. The second step is to multiply the numerator
by 10^3. This is necessary to keep the division
The following presents a multiplication
answer unchanged because multiplying both the
algorithm in a vertical and horizontal format.
dividend and divisor by the same number keeps
Consider24 ×12. To understand this, write 24 as
the fraction unchanged. Therefore, the decimal
20+4, and 12 as 10+2.
point in the dividend moves three places to the
Using the distributive property of multiplication right.
over addition, one can write

= (10 ×20) +(10 ×4) +(2 ×20) +(2 ×4)


3. The resulting problem is to divide 28,750.26
=200+40+40+8 by 21,685.

=288.

The third step is to proceed with long division to

Division Algorithm get the answer.

Consider the division of a decimal number by


another decimal number; for example, dividing
28.75026 by 21.685.

By using a division algorithm, this problem can


be solved in three steps:

1. The first step is to multiply the divisor by a


power of ten which makes it a whole number.
Multiplying by ten moves the decimal point one
place to the right. Therefore, the divisor should
be multiplied by one thousand or 10^3, because
there are three digits to the right of the decimal
point in the divisor.
References:

1. [Link]
arithmetic
2. [Link]
3. [Link]
[Link]
4. [Link]
5. [Link]
6. [Link]
7. [Link]

Common questions

Powered by AI

The Hindu-Arabic numeral system revolutionized arithmetic by introducing the concept of zero and place value notation, which allowed for more efficient calculations. This system facilitated the management of large numbers and complex operations, which were cumbersome in older systems like the Roman numerals that lacked place value. Its introduction enabled mathematicians to perform calculations with greater precision and less effort, leading to further advancements in fields such as algebra and calculus in European and Arab regions .

Tally marks, as used in ancient numeral systems, were basic recording tools for accounting quantities and facilitated primitive arithmetic operations such as counting and simple addition. In contrast, digital calculators in modern arithmetic represent a significant advancement, providing the capability to perform rapid, complex mathematical operations efficiently and accurately at the push of a button. The change from tally marks to digital calculators underscores a larger trend in arithmetic evolution, from manual, limited-capacity methods to automated, high-capacity computational systems .

Early civilizations focused on practical arithmetic to address tangible problems like trade, construction, and agriculture, utilizing simple numerals and operations. The Greeks, however, introduced an abstract focus, examining numbers conceptually rather than practically. They explored properties of numbers, developed mathematical proofs, and established theorems regarding number theory. This shift laid the groundwork for theoretical mathematics, leading to principles that continue to underpin contemporary mathematical thought and research .

Algorithms in modern computational systems facilitate arithmetic operations by providing step-by-step procedures for solving problems, enabling quick and accurate computations that were previously labor-intensive when done manually. Computer algorithms allow for the performance of complex calculations at high speeds, driving advancements across various fields such as finance, engineering, and science, where rapid data processing is essential .

During the medieval period, Islamic scholars preserved Greek mathematical texts and expanded upon them, making significant contributions to modern algebra. Al-Khwarizmi wrote influential works that introduced systematic problem-solving methods, or algorithms, for solving equations. These algorithms provided a foundation for algebraic rules and were critical to the development of modern algebraic methods, influencing later European mathematical thought .

The concept of zero was crucial in the development of the Hindu-Arabic numeral system as it functioned as a placeholder and allowed for a true place-value system, facilitating arithmetic operations with large numbers. Initially developed in India, zero was met with resistance in Europe but was later accepted due to its efficiency. Different cultures interacted with the idea differently; in India, it was integral to their numeral system, while Europe only adopted it in the medieval period through Arabic influence. This change enabled advancements in calculus, analysis, and other mathematical fields .

Key innovations during the 18th and 19th centuries that formalized number theory included the establishment of axiomatic foundations for arithmetic operations. Mathematicians like Gauss contributed significantly to these developments by constructing systematic theories about numbers, which included the concept of prime numbers, modular arithmetic, and more. These foundational principles allowed for greater exploration and understanding of numbers, leading to the advancement of mathematical fields such as abstract algebra and calculus .

Babylonians used a base-60 numeral system and had developed multiplication tables and geometric exercises, which were integral in shaping early mathematical concepts. In contrast, the Egyptians used a more complex numeral system that also included fractions and mainly focused on practical arithmetic such as calculations for construction and agriculture. Both cultures contributed significantly to modern mathematics; the base-60 system influenced divisions of time and angles, while Egyptian fractions laid groundwork for later mathematical theories .

The invention of mechanical calculators in the 17th century marked a significant evolution in arithmetic by automating calculation processes that were previously performed manually. Devices such as the Pascaline and the Leibniz Wheel enabled rapid computations with improved accuracy, paving the way for more complex calculations and influencing the design of future computational machinery. This technological advancement was crucial in setting the stage for the eventual development of electronic computers in the 20th century .

The ancient Greeks transformed the study of arithmetic by shifting focus from practical applications to abstract number theory, introducing rigorous methods such as proofs and theorems. This approach laid foundational principles that influenced mathematics for centuries, fostering developments in algebra, calculus, and other mathematical disciplines. The recognition of numbers beyond mere counting enabled a deeper understanding of mathematical principles and promoted intellectual curiosity and further investigation into the properties of numbers .

You might also like