Skip to content
  • Facebook
  • X
  • Linkedin
  • WhatsApp
  • Associate Journalism
  • About Us
  • Privacy Policy
  • 033-46046046
  • editor@artifex.news
Artifex.News

Artifex.News

Stay Connected. Stay Informed.

  • Breaking News
  • World
  • Nation
  • Sports
  • Business
  • Science
  • Entertainment
  • Lifestyle
  • Toggle search form
  • Asian Games 2023 Live Streaming October 3: When And Where To Watch Indians In Action Sports
  • “AB De Villiers And…”: These Five Players Have Made It To Virat Kohli’s Street Cricket Team Sports
  • US, Israelis Officials Discuss Potential Visit By Joe Biden: Report World
  • In KCR’s Telangana Poll Manifesto, A Direct Attack On Congress Promises Nation
  • 13 Indians Lured Into Illegal Work In Laos Rescued Nation
  • 1st For An Indian! Virat Kohli Achieves Massive Milestone As RCB Beat CSK To Enter IPL 2024 Playoffs Sports
  • IIT-Guwahati Student Detained After He Declared Intent To Join ISIS Nation
  • India’s Men’s Freestyle Wrestlers To Return Empty Handed From World Championship Sports

AlphaGeometry and the threat of AI’s takeover of mathematics | Explained

Posted on March 13, 2024 By admin


A few weeks ago, an animated discussion unfolded in a WhatsApp group whose members are mathematicians interested in the Indian Mathematical Olympiad. The spark was a Nature paper that announced a Google DeepMind artificial intelligence (AI) named AlphaGeometry had achieved a milestone: it could solve geometry problems at the level of the International Mathematical Olympiad, nearly matching the prowess of gold medallists.

The news evoked a mix of awe, fear, and wonder among us, especially in light of how AI tools like ChatGPT have started to reshape education. Some mathematicians wondered if the advent of AlphaGeometry signals the start of AI’s ascendancy in mathematics.

Is this truly the beginning of an AI takeover in mathematics? To answer this question, let’s take a look at the inner workings of AlphaGeometry.

How does mathematical logic work?

The Nature paper was coauthored by two computer scientists at New York University and two DeepMind researchers. AlphaGeometry is one of DeepMind’s array of AI systems – perhaps the most popular of which is AlphaZero, a deep-learning algorithm that excels at playing chess. Programs like these are part of researchers’ efforts to work up a ladder of complexity, building tools that can perform more complex tasks more reliably.

The AlphaGeometry team has published supplementary information describing the proofs generated by AlphaGeometry for some geometry problems, showcasing its ability to create hundreds of logical steps in proof construction.

Let’s start with a simple example from school mathematics. Suppose we only know that for any number a, a + 0 = a. From this, we will be able to prove that for any number a × 0 = 0. How? If a + 0 = 0 for any number a, then we should have 0 + 0 = 0. Thus a × 0 can be written as a × (0 + 0), which is the same as a × 0 + a × 0. So we have the equality a × 0 = (a × 0) + (a × 0). Cancelling a × 0 on both sides of the equation, we can conclude that a × 0 = 0.

Here, the entire proof is simply derived from the hypothesis using the rules of logic. Many computer programs can execute such a process but AlphaGeometry stands apart because of its ‘Deductive Database’ – a method that significantly reduces the number of steps in a proof.

What is ‘Deductive Database’?

Suppose we are given a statement A, and we want to deduce the statement Z. The program can spit out all possible next steps – let’s call them B – that can be deduced from A using the rules of logic. Then it will spit out all possible next steps C that can be deduced from B, and so on. If there are only finitely many steps possible, then it should reach the conclusion Z at some point. But once it reaches Z, it will perform a ‘traceback’ process to find the proof that takes the minimum number of steps.

So much for arithmetic and logic; geometry requires something more. In geometry, we use algebraic relations between different kinds of measures to find new relations. For example, we will have used simple techniques in school geometry called ‘angle chasing’, ‘ratio chasing’ and ‘distance chasing’.

To illustrate the meaning of these ideas, let us take an example from school geometry. Let a, b, and c be three lines on a plane. If we know the angle between a and b and the angle between b and c, we can immediately determine the angle between a and c (see figure 1). This is an example of ‘angle chasing’. Similarly, AlphaGeometry can quickly discover all possible algebraic relationships between some given quantities using its ‘Algebraic Rules’ program.

Figure 1.

Figure 1.
| Photo Credit:
Special arrangement

When it combines its ‘Deductive Database’ and ‘Algebraic Rules’ programs, AlphaGeometry can write complete proofs for most school-level geometry problems.

For example, let A, B, C, and D be any four points on a plane (see figure 2). Suppose by angle chasing we know that the angle between the lines AB and BD is equal to the angle between the lines AC and CD. Then ‘Deductive Database’ can immediately figure out all the four points lie on a circle while ‘Algebraic Rules’ can determine that the angle between the lines BC and CA is equal to the angle between the lines BD and DA.

Figure 2.

Figure 2.
| Photo Credit:
Special arrangement

What are auxiliary constructions?

The combination of these two programs makes AlphaGeometry a very powerful tool. The AlphaGeometry team could solve 14 of the 30 geometry problems in the International Mathematical Olympiad in this way.

This achievement also reveals that a significant amount of difficulty in these problems was not in terms of the ingenuity required to solve them but in the ability to deduce the most number of relations – and computers are better at this than humans.

Fortunately, this ability is not sufficient to prove all problems in geometry, but AlphaGeometry seems to have summited this peak as well.

Mathematics is really a creative field because mathematicians often come up with clever constructions to solve a problem. Their name for such a construction is an auxiliary construction. Auxiliary constructions are not part of what is ‘given’ to us nor what we want to prove, and also illustrate what makes automatic theorem proving  difficult. There are infinite ways to build constructions, and human intelligence is required to judge which one to choose for a given problem and how to use it.

There is a classic example: some 2,000 years ago, Euclid proved that there are infinitely many prime numbers. His proof goes as follows: suppose there are only finitely many primes numbers, say p1, p2, …, pn. Take the product of all these primes and add 1 to the product. Let’s call this new number p. That is, p = p1p2 … pn + 1. The question now is whether p is a prime.

If p is a prime, and since p is bigger than all the other primes, we have a new prime. However, this shouldn’t be possible because we assumed originally that there is only a finite number of primes. If p is not a prime, we will be forced to conclude that one of the primes should divide 1, which is absurd. In sum, assuming there is a number of primes leads us to absurdity, which means there have to be infinitely many primes.

The auxiliary construction in this proof is constructing the number p. There are no particular restrictions for how we can come up with different constructions, and thus different ways to solve the problem. They simply require experience and deep insight.

What is the significance of AlphaGeometry?

Invariably, most geometry proofs require auxiliary constructions. Large language models like GPT-4, which is behind ChatGPT, can be taught to come up with possible constructions. One can train them to use rule-sets from different fields to build auxiliary constructions and use them to write proofs. However, there is no guarantee that the new constructions they devise will be able to lead to new proofs.

But when the AlphaGeometry team combined GPT-4 with ‘Deductive Database’ and ‘Algebraic Rules’, the program could produce auxiliary constructions for geometry problems, with no prior human demonstration. This is a new development in the field, and in this sense, AlphaGeometry seems like a big step towards AI’s takeover of mathematics, which has thus far been a very human enterprise.

In all, AlphaGeometry could solve 11 more Olympiad geometry problems, bringing its tally to 25 out of 30 problems. It is also commendable that AlphaGeometry can write human-readable proofs and can draw diagrams to explain a proof. Once it did so, the team asked a coach of the U.S. Mathematical Olympiad to evaluate the proofs and grade them. The result: AlphaGeometry performed better than an average silver medallist.

The architecture developed for AlphaGeometry may not have been able to solve the other Olympiad problems, but the techniques it developed are directly useful to solve problems from other areas of mathematics. The success of this project will certainly lead to the development of AI programs that can efficiently do mathematics at least at the school level.

Mohan R. is a mathematician at Azim Premji University, Bengaluru.



Source link

Science Tags:AlphaGeometry, auxiliary constructions, Deductive Database, Google DeepMind, International Mathematics Olympiad

Post navigation

Previous Post: Jonny Bairstow Available For Punjab Kings For Full IPL Season, Dharamsala To Host Two Home Games
Next Post: Ashwin replaces Bumrah at the top of ICC Test rankings

Related Posts

  • How a wandering white shark’s epic journey could provide clues for protecting them Science
  • The animal that senses electrical boxes, tolerates snow, and has ‘mating trains’ Science
  • Antarctic winter sea ice hits ‘extreme’ record low Science
  • Chandrayaan-3 live updates | Vikram lander successfully lands on Moon; India becomes 4th country to make soft landing on lunar surface Science
  • Where shall the poor go for a kidney transplant in Kerala? Science
  • Russia’s Luna-25 spacecraft crashes into the Moon Science

More Related Articles

Space stations are like a prison with a really nice view if… Science
A Coimbatore team is back from their first visit to Hanle Dark Sky Reserve in Ladakh Science
Goa scientists find 50,000-year-old magnetic fossils in Bay of Bengal Science
Aditya-L1: its functioning and purpose Science
AstroSat unravels mysteries surrounding Black Hole X-ray Binary MAXI J1820+070 Science
The Hindu Daily Quiz, April 8 2024 | On Superconductors Science
SiteLock

Archives

  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022

Categories

  • Business
  • Nation
  • Science
  • Sports
  • World

Recent Posts

  • No Solution Can Be Found On The Battleground
  • Suryakumar Yadav Names His “Most Important Catch”, It Isn’t From T20 World Cup Final
  • Fresh Video Shows How Virat Kohli Got India Teammates To Sing Vande Mataram Together
  • Virat Kohli, Rohit Sharma Out For Sri Lanka ODIs. One Of These 2 Stars To Lead: Report
  • PM Modi Hugs Putin On Russia Visit, Tea Meet At His Home, Golf Cart Ride

Recent Comments

  1. ywdVpqHiNZCtUDcl on UP Teacher Who Asked Students To Slap Muslim Classmate
  2. bRstIalYyjkCUJqm on UP Teacher Who Asked Students To Slap Muslim Classmate
  3. GkJwRWEAbS on UP Teacher Who Asked Students To Slap Muslim Classmate
  4. xreDavBVnbGqQA on UP Teacher Who Asked Students To Slap Muslim Classmate
  5. aANVRzfUdmyb on UP Teacher Who Asked Students To Slap Muslim Classmate
  • More than 60% of world’s coral reefs may have bleached in past year, NOAA says Science
  • An Indian restaurant in Tashkent celebrates Uzbekistan’s love for Bollywood World
  • “KL Rahul Is Back To His Original Self”: Anil Kumble Praises India Star After Win vs Australia Sports
  • I’m Not Safe In Raj Bhavan With Current Police Contingent: Bengal Governor Nation
  • India, Bangladesh discuss preparations to start talks for free trade agreement Business
  • 2023 Nobel Prize in Physics: Seeing electrons through brief pulses of light | Explained Science
  • Countdown for India’s first solar observatory mission Aditya-L1 starts Science
  • 12% Rise In Road Accidents In India, Speeding Is Major Factor: Report Nation

Editor-in-Chief:
Mohammad Ariff,
MSW, MAJMC, BSW, DTL, CTS, CNM, CCR, CAL, RSL, ASOC.
editor@artifex.news

Associate Editors:
1. Zenellis R. Tuba,
zenelis@artifex.news
2. Haris Daniyel
daniyel@artifex.news

Photograher:
Rohan Das
rohan@artifex.news

Artifex.News offers Online Paid Internships to college students from India and Abroad. Interns will get a PRESS CARD and other online offers.
Send your CV (Subjectline: Paid Internship) to internship@artifex.news

Links:
Associate Journalism
About Us
Privacy Policy

News Links:
Breaking News
World
Nation
Sports
Business
Entertainment
Lifestyle

Registered Office:
72/A, Elliot Road, Kolkata - 700016
Tel: 033-22277777, 033-22172217
Email: office@artifex.news

Editorial Office / News Desk:
No. 13, Mezzanine Floor, Esplanade Metro Rail Station,
12 J. L. Nehru Road, Kolkata - 700069.
(Entry from Gate No. 5)
Tel: 033-46011099, 033-46046046
Email: editor@artifex.news

Copyright © 2023 Artifex.News Newsportal designed by Artifex Infotech.