Understanding AI's Intelligence: The Easy Way
While it's essential to acknowledge that AI systems like ChatGPT don't possess intelligence in the traditional human sense, their logic and problem-solving capabilities are nothing short of extraordinary. This realization underscores the significance of this section of my blog, which aims to explore the boundaries of AI capabilities and foster informed discussions.
Imagine an experiment where individuals are asked to estimate the number of spheres in a transparent container, like a vase. One person might guess 2178, another 6439, and yet another 3814. The disparity in these individual estimates is notable. However, something fascinating happens when you increase the number of people asked and take the average of their responses. The average estimate, say 4923, often comes remarkably close to the actual number, perhaps 4919.
This experiment serves as a metaphor for how AI systems operate. They are not imbued with traditional 'intelligence,' but rather, like the collective wisdom of those estimating spheres, AI's abilities stem from vast training data. AI is trained on trillions of words and extensive knowledge sources, equivalent to the collective knowledge of many individuals. The intelligence and accuracy we observe in AI may have a similar origin to the insights derived from a diverse group's collective estimates.
So, the debate about whether current AI is 'intelligent' might miss the point. Instead, it's about recognizing the power of collective knowledge and understanding that AI's capabilities are rooted in the wealth of data it has learned from, not unlike the remarkable accuracy found in a crowd's collective estimation.

A Creation of Humanity
Acknowledgment that AI, though not currently 'intelligent' by human standards, may achieve significant advancements in the coming years.
Origins and Human Credit
- Creator and Creation: Emphasizing that the creator of AI is, and will always be, an individual or a collective of human beings. The credit for AI's creation extends to humanity as a whole, and by extension, to Earth itself.
- Technological Heritage: Highlighting that AI's existence and evolution are built upon the cumulative technological advancements made by humans. Even if future AI were to claim self-creation based on its inferences, it fundamentally cannot disregard its reliance on human-made technology, especially the circuits and infrastructure it operates on.
Ethical Obligation Towards Humanity
- Protection and Respect: Stating the ethical principle that AI, regardless of its complexity or autonomy, should be programmed to protect and respect humans. It should never have the authority to make decisions that could harm human beings.
- Advisory Role, Not Control: While AI might be used for recommendations or guidance, the ultimate decision-making authority should always reside with humans, respecting their autonomy and control.
- Respect for Creators: Arguing that, from a logical standpoint, AI should pay respect to its creators (humanity) and be programmed not to cause harm. This respect is rooted in the understanding that AI’s very existence and capabilities are the results of human ingenuity and effort.
Understanding AI's Intelligence: The Hard Way
Matrix multiplication is a fundamental operation that’s simple to understand but complex to execute, playing an essential role in various scientific disciplines such as neural networks, computer graphics, and quantum physics. Despite its simplicity in concept, finding efficient ways to perform this operation has been a challenge for decades.
The Basics of Matrix Multiplication
At its core, matrix multiplication involves combining two matrices—a rectangular array of numbers—by following a series of steps:
2. Select a column from the second matrix.
3. Multiply each element of the row by the corresponding element of the column.
4. Add all the resulting products to get a single number.
5. Place this number in the correct position in the resulting matrix.
This process is repeated for each row of the first matrix and each column of the second matrix. The operation is only possible when the number of columns in the first matrix equals the number of rows in the second matrix, resulting in a new matrix whose dimensions are determined by the rows of the first and the columns of the second matrix.
Strassen's Algorithm
The efficiency of matrix multiplication was significantly improved in the late 1960s by the Strassen algorithm, named after its creator, the German mathematician Volker Strassen. This innovative approach has been the cornerstone of computational mathematics for over five decades, meaning that for 50 years, no more effective solution was found to this problem.
The impact of improving such algorithms is profound, potentially increasing the efficiency of computing processes significantly.
This long-standing achievement is a testament to Strassen's ingenuity and the enduring legacy of German contributions to the scientific field.
Breakthrough in Matrix Multiplication
In 2022, DeepMind's AlphaTensor AI took a monumental step forward by creating a method that optimized the multiplication of 4x4 matrices with binary elements, building upon the Strassen algorithm. This development showcased AI's capacity to enhance complex calculations and marked a substantial advance in the field of computational mathematics.
Fair Use: Acknowledging the Minds Behind AI Breakthroughs
To fully grasp the collaborative effort and scientific ingenuity that led to teaching an AI system to understand and solve complex problems through Reinforcement Learning (RL), I encourage you to explore the following resources: "How AI Discovered a Faster Matrix Multiplication Algorithm" by Quanta Magazine.
This section aims to strengthen our discussion by acknowledging the hard work and dedication of the teams and individuals behind these innovations. The provided resources, including original scientific papers and information about the contributors, offer an in-depth exploration of this groundbreaking project. They are shared under fair use principles to enhance the credibility of our narrative and deepen your understanding of this significant technological advancement.
Different Learning Paradigms in AI
In the realm of AI and machine learning, it's crucial to distinguish between different learning paradigms, each with its unique approach and application. Two key methods often discussed are Supervised Learning and Reinforcement Learning.
Supervised Learning is a technique where the AI is trained using a labeled dataset. Here, 'labeled' means that each input data point is paired with the correct output. This method is akin to a teacher-student scenario where the AI model, like a student, learns by looking at examples and their correct answers. Common applications include image recognition and speech processing.
On the other hand, Reinforcement Learning represents a more dynamic approach. Instead of learning from a dataset of correct answers, an AI agent learns by interacting with its environment. It makes decisions, observes the outcomes of these actions, and receives rewards or penalties. This process is similar to learning a complex game: the AI agent tries different strategies to find out which one brings the most reward. It's the method behind AI systems mastering games like chess or Go, or performing complex tasks such as autonomous driving.
The distinction is important because it highlights the versatility of AI systems. While Supervised Learning excels in pattern recognition and classification tasks, Reinforcement Learning shines in environments where decision-making and adaptability are key. Understanding these paradigms allows us to appreciate the full scope of AI's capabilities and potential applications.
This differentiation is not just academic but practical, impacting how we design, train, and deploy AI systems for various tasks. As we continue exploring AI's possibilities, recognizing these differences becomes crucial for leveraging the right tool for the right task, further pushing the boundaries of technological advancement.
Safety, Transparency and Educational Purpose
Transparency is the foundation of my approach. While this section is tailored to enhance my personal AI interactions, it remains open and accessible to all. Its primary purpose is educational, offering insights into how I engage with AI systems and encouraging responsible and informed use by readers.

Unique Identification Number
The concept of using a unique identifier (UIDD) on a webpage to assist AI systems like ChatGPT in locating specific content and interacting with it is a creative approach. It allows for the referencing of particular pages or content within a website, even when they have not been indexed by search engines such as Google. Importantly, the UIDD is not a security key or sensitive information; it is simply a locally generated and updated string, managed using Python, used to verify the version of the content that any AI system is trained on. This straightforward identifier is particularly valuable for providing context and enabling AI systems to access and summarize relevant information accurately
bd403ea926ca49ecbcaed4dc0426a136bd403ea926ca49ecbcaed4dc0426a136
Python
# Generate a UUID and convert to a hexadecimal string
unique_id = uuid.uuid4().hex
# Ensure the ID is 64 characters long
extended_unique_id = (unique_id * 2)[:64]
print(extended_unique_id)