Acevedo’s Algorithm
The Acevedo's Algorithm is named after José Acevedo Jiménez
who developed it. This is expressed as follows:
𝐴1 =
𝑎
𝑏 𝑥0
𝐴2 =
(
𝑎
𝑏 𝑥0
)
𝐵
𝑏 𝑥1
𝐴3 =
(
(
𝑎
𝑏 𝑥0
)
𝐵
𝑏 𝑥1
)
𝐵
𝑏 𝑥2
𝐴 𝑛+1 = ((
(
(
𝑎
𝑏 𝑥0
)
𝐵
𝑏 𝑥1
)
𝑏 𝑥2
⋮
𝐵
)
⋰
)
𝐵
𝑏 𝑥 𝑛
if
1 ≤ 𝐴 𝑛+1 < 𝑏
then
log 𝑏 𝑎 = 𝑥0 + ∑ 𝑥𝑖 𝐵−𝑖
𝑛
𝑖=1
Where:
𝑎 ∈ ℝ ≥ 1.
𝐵 = number system base, 𝐵 > 1.
𝑏 = logarithm base.
Original sequence of the algorithm developed by Acevedo to calculate logarithms.
Example: Calculate the logarithm of seven in base 10 with three decimal
places.
𝑎 = 7, 𝑏 = 10, 𝐵 = 10
(
(
(
(
(
7
100)
10
108 )
10
104
)
105
10
)
10
100
)
10
109
< 7
log 𝑎 ≈ 𝑥0 +
𝑥1
𝐵−1
+
𝑥2
𝐵−2
+
𝑥3
𝐵−3
+
𝑥4
𝐵−4
+
𝑥5
𝐵−5
log10 7 ≈ 0 +
8
101
+
4
102
+
5
103
+
0
104
+
9
105
log 7 ≈ 0.84509

More Related Content

PDF
Abeja obrera
PDF
Logaritmo de un producto
PDF
Logaritmo de un cociente
PDF
Mujer extraordinaria
PDF
Pueblo encantado
PDF
Carta a gauche
PDF
Es primavera
PDF
Ser eterno
Abeja obrera
Logaritmo de un producto
Logaritmo de un cociente
Mujer extraordinaria
Pueblo encantado
Carta a gauche
Es primavera
Ser eterno

More from Durero (20)

PDF
Identity of cubic triples
PDF
Feliz cumpleanos
PDF
Palabras hurtadas
PDF
Bartolome jimenez
PDF
Maria idalina
PDF
Enunciados de acevedo
PDF
Veintidos septimos
PDF
Utf
PDF
Logaritmo de a
PDF
Triples
PDF
Fuerza universal
PDF
Gravity and apple
PDF
El vals de los impares
PDF
Conjetura de numeros primos
PDF
El juego de la vida
PDF
Ultimo teorema de fermat
PDF
Esperanza
PDF
Cuando tenia tiempo
PDF
Carta
PDF
Numero e (1)
Identity of cubic triples
Feliz cumpleanos
Palabras hurtadas
Bartolome jimenez
Maria idalina
Enunciados de acevedo
Veintidos septimos
Utf
Logaritmo de a
Triples
Fuerza universal
Gravity and apple
El vals de los impares
Conjetura de numeros primos
El juego de la vida
Ultimo teorema de fermat
Esperanza
Cuando tenia tiempo
Carta
Numero e (1)
Ad

Recently uploaded (20)

PPTX
Share_Module_2_Power_conflict_and_negotiation.pptx
PDF
HVAC Specification 2024 according to central public works department
PDF
advance database management system book.pdf
PDF
IGGE1 Understanding the Self1234567891011
PDF
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
PPTX
Virtual and Augmented Reality in Current Scenario
PPTX
B.Sc. DS Unit 2 Software Engineering.pptx
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
PDF
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
PDF
Vision Prelims GS PYQ Analysis 2011-2022 www.upscpdf.com.pdf
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PDF
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PDF
International_Financial_Reporting_Standa.pdf
DOCX
Cambridge-Practice-Tests-for-IELTS-12.docx
PDF
My India Quiz Book_20210205121199924.pdf
PDF
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
PPTX
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
Share_Module_2_Power_conflict_and_negotiation.pptx
HVAC Specification 2024 according to central public works department
advance database management system book.pdf
IGGE1 Understanding the Self1234567891011
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
Virtual and Augmented Reality in Current Scenario
B.Sc. DS Unit 2 Software Engineering.pptx
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 2).pdf
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
Vision Prelims GS PYQ Analysis 2011-2022 www.upscpdf.com.pdf
Practical Manual AGRO-233 Principles and Practices of Natural Farming
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
International_Financial_Reporting_Standa.pdf
Cambridge-Practice-Tests-for-IELTS-12.docx
My India Quiz Book_20210205121199924.pdf
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
Onco Emergencies - Spinal cord compression Superior vena cava syndrome Febr...
Ad

Acevedo algorithm

  • 1. Acevedo’s Algorithm The Acevedo's Algorithm is named after José Acevedo Jiménez who developed it. This is expressed as follows: 𝐴1 = 𝑎 𝑏 𝑥0 𝐴2 = ( 𝑎 𝑏 𝑥0 ) 𝐵 𝑏 𝑥1 𝐴3 = ( ( 𝑎 𝑏 𝑥0 ) 𝐵 𝑏 𝑥1 ) 𝐵 𝑏 𝑥2 𝐴 𝑛+1 = (( ( ( 𝑎 𝑏 𝑥0 ) 𝐵 𝑏 𝑥1 ) 𝑏 𝑥2 ⋮ 𝐵 ) ⋰ ) 𝐵 𝑏 𝑥 𝑛
  • 2. if 1 ≤ 𝐴 𝑛+1 < 𝑏 then log 𝑏 𝑎 = 𝑥0 + ∑ 𝑥𝑖 𝐵−𝑖 𝑛 𝑖=1 Where: 𝑎 ∈ ℝ ≥ 1. 𝐵 = number system base, 𝐵 > 1. 𝑏 = logarithm base. Original sequence of the algorithm developed by Acevedo to calculate logarithms.
  • 3. Example: Calculate the logarithm of seven in base 10 with three decimal places. 𝑎 = 7, 𝑏 = 10, 𝐵 = 10 ( ( ( ( ( 7 100) 10 108 ) 10 104 ) 105 10 ) 10 100 ) 10 109 < 7 log 𝑎 ≈ 𝑥0 + 𝑥1 𝐵−1 + 𝑥2 𝐵−2 + 𝑥3 𝐵−3 + 𝑥4 𝐵−4 + 𝑥5 𝐵−5 log10 7 ≈ 0 + 8 101 + 4 102 + 5 103 + 0 104 + 9 105 log 7 ≈ 0.84509