Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

Artificial General Intelligence, or AGI, is a possible future kind of AI that could learn and solve many different kinds of problems, not just one narrow task. Today’s AI can write text, recognize images, recommend videos, or play games, but it usually works best in the areas it was trained for. AGI would aim to transfer knowledge across language, math, science, creativity, coding, memory, and problem solving more like a flexible human learner.

Understanding AGI matters because it connects computer science, statistics, ethics, and society.

Key Facts

  • AGI means an AI system that can learn, reason, and adapt across many tasks, not just one specialized task.
  • Narrow AI is task-specific, while AGI would be general-purpose and able to transfer learning to new situations.
  • A simple learning goal is to reduce error: loss = predicted answer - correct answer, often using squared error such as L = (y_pred - y)^2.
  • Machine learning updates model settings using data: new weight = old weight - learning rate × gradient.
  • Probability helps AI handle uncertainty: P(event) = favorable outcomes / total outcomes.
  • Safe AGI design would need testing for accuracy, bias, reliability, privacy, and human control before real-world use.

Vocabulary

Artificial General Intelligence
Artificial General Intelligence is a proposed type of AI that could learn and perform many different intellectual tasks at a human-like level.
Narrow AI
Narrow AI is an AI system designed to do a specific task, such as translating text, identifying images, or recommending songs.
Machine Learning
Machine learning is a method where computers improve at a task by finding patterns in data instead of following only hand-written rules.
Neural Network
A neural network is a computer model made of connected nodes that adjust their connections to recognize patterns and make predictions.
Training Data
Training data is the collection of examples an AI system uses to learn patterns, rules, or relationships.

Common Mistakes to Avoid

  • Thinking today’s chatbots are already AGI. They can be powerful narrow AI systems, but they do not reliably understand, learn, and act across all domains like a general intelligence.
  • Confusing memorization with intelligence. An AI can store or repeat patterns from data without truly reasoning through a new problem in a flexible way.
  • Ignoring data quality. If training data is biased, incomplete, or incorrect, the AI can learn those problems and produce unfair or inaccurate results.
  • Assuming higher accuracy means the system is always safe. A model can score well on tests but still fail in unusual situations, misuse private information, or make harmful recommendations.

Practice Questions

  1. 1 A narrow AI answers 82 out of 100 image questions correctly, while another system answers 91 out of 100 correctly. What is each system’s accuracy as a percentage, and how many more questions did the second system answer correctly?
  2. 2 A simple model has old weight 0.60, learning rate 0.10, and gradient -0.50. Using new weight = old weight - learning rate × gradient, calculate the new weight.
  3. 3 A school robot can tutor algebra, answer history questions, plan a science project, learn a new board game from instructions, and explain its mistakes. Which abilities suggest movement toward AGI, and what additional tests would you want before calling it truly general?