Khana Kaba
Khana Kaba
1 Define Zero
2. Define Geometry
Geometry is a branch of mathematics that deals with the study of shapes, sizes,
properties, and the spatial relationships between objects. It explores the
fundamental concepts related to points, lines, angles, surfaces, and solids.
Geometry has been a foundational field of mathematics for centuries and has
applications in various scientific, engineering, and artistic disciplines.
1. Points: Basic, undefined elements that have location but no size or dimension.
2. Lines: Straight paths that extend infinitely in both directions. They are composed
of an infinite number of points.
3. Angles: The measure of the amount of rotation between two rays that share a
common endpoint, called the vertex.
4. Polygons: Closed figures made up of straight line segments connected end-to-
end. Common polygons include triangles, quadrilaterals, pentagons, hexagons,
etc.
5. Circles: A round, two-dimensional figure in which all points on the boundary are
equidistant from the center.
6. Solid Figures: Three-dimensional shapes that have length, width, and height.
Examples include cubes, cylinders, spheres, and pyramids.
2
The method is named after Isaac Newton and Joseph Raphson, both of whom
contributed to its development. The basic idea behind the Newton-Raphson
method is to start with an initial guess for a root of a function and then iteratively
refine that guess by using the tangent line to the function at that point.
1. Start with an initial guess "x₀" for the root of the function.
2. Calculate the value of the function and its derivative at that point: "f(x₀)" and
"f'(x₀)".
3. Use the formula:
scssCopy code
x₁ = x₀ - f(x₀) / f'(x₀)
This calculates the next approximation, "x₁", by moving along the tangent line to
the function at "x₀" until it intersects the x-axis.
4. Repeat steps 2 and 3 with the newly calculated approximation, obtaining "x₂",
then "x₃", and so on, until the sequence of approximations starts to converge to
the actual root.
The Newton-Raphson method is known for its fast convergence, but it's
important to note that its success depends on the initial guess and the properties
of the function. If the initial guess is too far from the actual root or if the function
has certain characteristics that cause the method to diverge, it might not yield
accurate results.
More formally, a function "f(x)" defined on an interval "I" is considered convex if,
for any two points "x₁" and "x₂" within the interval "I" and for any value "λ"
between 0 and 1, the following inequality holds:
scssCopy code
f (λx₁ + ( 1 - λ)x₂) ≤ λ f (x₁) + ( 1 - λ) f (x₂)
In simpler terms, this inequality states that the value of the function at the
midpoint of the line segment connecting "x₁" and "x₂" must be less than or equal
to the weighted average of the function values at "x₁" and "x₂", where the weights
are determined by "λ" and "1 - λ".
Visually, this means that the graph of a convex function lies below any secant line
(line connecting two points on the graph) within the interval of interest.
The Pythagorean theorem states that in a right triangle, the square of the length
of the hypotenuse (the side opposite the right angle) is equal to the sum of the
squares of the lengths of the other two sides. In mathematical terms, it can be
expressed as:
a² + b² = c²
Where "a" and "b" are the lengths of the triangle's legs, and "c" is the length of
the hypotenuse.
Regarding his era, Pythagoras lived during a time often referred to as the
"Classical Greek Era" or the "Ancient Greek Era." This era spanned from around
the 8th century BCE to the death of Alexander the Great in 323 BCE. Pythagoras'
activities and contributions occurred during this time, particularly in the 6th and
5th centuries BCE. He was born on the island of Samos in the Aegean Sea and
later established a community in Croton (in present-day Italy) that focused on
mathematical and philosophical pursuits.
It's important to note that historical records from this era are sometimes limited
and may contain myths and legends, making it challenging to precisely
determine Pythagoras' life and accomplishments. Nevertheless, his work and
ideas have had a profound and lasting impact on mathematics, philosophy, and
the development of Western thought.
The basic idea behind spline theory is to divide a given interval into smaller
subintervals and then construct polynomial functions, called spline segments,
over each subinterval. These polynomial segments are carefully chosen to ensure
continuity and smoothness at the points where they connect.
6
There are different types of splines, each with its own characteristics and
applications:
1. Piecewise Linear Spline: Also known as linear interpolation, this simplest form of
spline uses straight line segments to connect data points.
2. Cubic Spline: The most common type of spline used, cubic splines use cubic
polynomials to connect data points. Cubic splines ensure continuity of the first
and second derivatives, providing smooth curves that often pass through given
points.
3. B-spline: B-splines (basis splines) are a more flexible type of spline that allow for
local control over the shape of the curve. They are composed of polynomial
segments defined by basis functions and are often used in computer-aided
design (CAD) and computer graphics.
4. NURBS (Non-Uniform Rational B-spline): NURBS are an extension of B-splines
that incorporate weights and non-uniform knot vectors, offering even greater
flexibility in representing complex curves and surfaces. They are widely used in
computer graphics, animation, and industrial design.
5. Bezier Curve: While not strictly a spline, Bezier curves are closely related and
widely used in computer graphics and design. They are defined by control points
and have a simple geometric interpretation.
8. Branches of mathematics ?
1. Arithmetic: The most basic branch of mathematics, dealing with basic operations
like addition, subtraction, multiplication, and division.
2. Algebra: Involves the study of symbols and the rules for manipulating them. It
includes concepts like equations, polynomials, and linear algebra.
3. Geometry: Concerned with the properties and relationships of shapes, sizes,
angles, and spaces. It includes Euclidean and non-Euclidean geometries.
4. Trigonometry: Deals with the relationships between the angles and sides of
triangles, often used in calculations involving triangles and periodic functions.
7
These are just a few of the many branches of mathematics. Many of these
branches have further subfields, and mathematics as a whole continues to evolve
and expand with new areas of study and interdisciplinary applications.
ChatGPT
A Newtonian polynomial, also known as a Newton polynomial, is a type of interpolation
polynomial used in numerical analysis and approximation. It's named after Sir Isaac Newton,
who developed the interpolation method upon which these polynomials are based.
8
The Newtonian polynomial is used to approximate a function or a set of data points with a
polynomial that passes through those points. It's particularly useful when you have a set of
data points and you want to find a polynomial that closely fits those points, allowing you to
estimate the function's values at other points within the data range.
P(x) = f[x₀] + f[x₀, x₁](x - x₀) + f[x₀, x₁, x₂](x - x₀)(x - x₁) + ... + f[x₀, x₁, ..., x ₙ](x - x₀)(x - x₁)...(x -
xₙ₋₁)
Here:
ChatGPT
A Lagrange polynomial, also known as a Lagrange interpolating polynomial, is a specific type
of interpolation polynomial used to approximate a function based on a set of data points.
Like the Newtonian polynomial, the Lagrange polynomial is used for interpolation, which
involves finding a polynomial that passes through a given set of data points. The Lagrange
polynomial is named after the French mathematician Joseph-Louis Lagrange.
The Lagrange polynomial is particularly useful for constructing a single polynomial that fits a
set of data points without the need for complex divided difference calculations. It's defined
as a weighted sum of basis polynomials, where each basis polynomial is designed to be 1 at
a specific data point and 0 at all other data points.
Given a set of "n + 1" distinct data points (x₀, y₀), (x₁, y₁), ..., (x ₙ, y ₙ), the Lagrange polynomial
"P(x)" is defined as:
9
P(x) = Σ [ yᵢ * ℓᵢ(x) ]
In this formula:
"x" is the variable for which you want to compute the value of the polynomial.
"yᵢ" are the function values at the data points.
"xᵢ" are the x-coordinates of the data points.
The Lagrange polynomial passes through all the data points and is designed to produce the
value "yᵢ" when evaluated at "xᵢ," making it a perfect fit for the given data.
While the Lagrange polynomial is conceptually straightforward and doesn't require complex
calculations, it can still be susceptible to numerical issues, especially when dealing with a
large number of data points or high-degree polynomials. Despite its limitations, the
Lagrange polynomial remains a valuable tool for polynomial interpolation and can be a good
choice in simpler cases.
11 define mathematics
ChatGPT
Mathematics is a systematic and abstract field of knowledge that involves the study of
numbers, quantities, structures, patterns, and relationships. It encompasses a wide range of
concepts, techniques, and methods for understanding and exploring the fundamental
properties of the universe through logical reasoning and deductive processes.
At its core, mathematics seeks to describe and explain the patterns and relationships that
exist in various natural, abstract, and social phenomena. It involves precise definitions,
axioms, and rules of logic that form the foundation for constructing logical arguments and
proofs.
1. Number Theory: The study of the properties and relationships of numbers, including
integers, fractions, real numbers, and complex numbers.
2. Algebra: Involves using symbols and letters to represent numbers and quantities,
manipulating equations, and solving mathematical problems.
3. Geometry: Explores the properties of shapes, sizes, angles, and spatial relationships.
4. Calculus: Focuses on rates of change and accumulation, used for modeling and analyzing
continuous processes.
5. Statistics: Involves collecting, analyzing, interpreting, and presenting data to make informed
decisions and draw conclusions.
10
Mathematics has a profound impact on nearly every aspect of human life, from science and
engineering to economics, technology, and even art. It provides a universal language for
expressing ideas and relationships that is consistent across cultures and disciplines.
Mathematics plays a crucial role in advancing our understanding of the physical world,
developing new technologies, and solving complex problems.
ChatGPT
Trigonometry and geometry are both branches of mathematics that deal with different
aspects of shapes, angles, and spatial relationships. However, they focus on distinct concepts
and have different areas of emphasis. Here are the key differences between trigonometry and
geometry:
Trigonometry:
1. Focus:
Trigonometry primarily deals with the relationships between angles and sides of
triangles.
It's concerned with the study of trigonometric functions like sine, cosine, tangent, and
their inverses.
2. Angles and Ratios:
Trigonometry heavily relies on the measurement of angles and the ratios of sides in
right triangles.
It's often used to calculate distances, heights, angles of elevation and depression, and
other applications involving triangles.
3. Circular Functions:
Trigonometric functions have applications in circular motion, waves, and periodic
phenomena.
They describe oscillatory behaviors and are used in physics, engineering, and other
fields.
4. Trigonometric Identities:
Trigonometry involves proving and using trigonometric identities to simplify
expressions and solve equations.
Geometry:
1. Focus:
11
Geometry studies the properties, shapes, and spatial relationships of points, lines,
angles, and figures.
It includes concepts related to lengths, areas, volumes, and transformations.
2. Figures and Proofs:
Geometry deals with various types of shapes, including polygons, circles, lines, and
solids.
It emphasizes proofs and logical deductions to establish theorems and properties.
3. Geometric Constructions:
Geometry involves geometric constructions using tools like compass and
straightedge to create specific shapes or angles.
4. Parallel and Perpendicular Lines:
Geometry explores concepts related to parallel lines, perpendicular lines, and their
intersections, leading to the study of angles and transversals.
5. Coordinate Geometry:
Geometry can be extended to coordinate geometry, where algebraic methods are
combined with geometric concepts to analyze figures and relationships.
In summary, trigonometry is more focused on angles and the relationships between sides
and angles of triangles, while geometry encompasses a broader range of spatial concepts,
including shapes, figures, angles, and their properties. Despite their differences, both
trigonometry and geometry play essential roles in various scientific, engineering, and
practical applications.
ChatGPT
The question of the existence of Allah, or God, is a matter of faith, philosophy, and belief that
goes beyond the scope of mathematical analysis. Mathematics is a formal system of logic
and reasoning that deals with abstract concepts, quantities, and relationships. It is a tool for
understanding and describing the physical world and various phenomena, but it is not
equipped to provide answers to questions of spirituality, metaphysics, or the existence of a
divine being.
Belief in the existence of Allah is often a deeply personal and subjective matter, influenced by
religious, cultural, philosophical, and experiential factors. It falls within the realm of theology,
philosophy, and individual conviction, rather than mathematical proof.
Mathematics can help us analyze certain logical arguments and philosophical ideas, but it
cannot definitively prove or disprove the existence of a higher power. Different individuals
and belief systems approach the question of the existence of Allah through a variety of
lenses, and these perspectives are often deeply rooted in the context of religious teachings,
cultural backgrounds, and personal experiences.
Vectors play a critical role in describing and analyzing various physical and
mathematical phenomena, enabling us to understand and manipulate quantities
that possess both magnitude and direction.
13
ChatGPT
Shapes in mathematics have a wide range of applications across various fields. Different
shapes serve different purposes and are utilized for specific applications based on their
properties. Here are some applications of different shapes in mathematics:
1. Circles:
Geometry: Circles are foundational shapes in geometry and trigonometry. They have
applications in calculating areas, circumferences, and angles in circular arcs.
Engineering: Circles are used in the design of gears, wheels, pulleys, and other
rotating mechanical components.
Physics: Circular motion is a fundamental concept in physics, with applications in
describing orbits of planets, satellites, and other celestial bodies.
2. Triangles:
Trigonometry: Triangles are central to trigonometry, which deals with the
relationships between angles and sides. Trigonometric functions are applied in
diverse fields, including physics, engineering, and astronomy.
Surveying: Triangles are used in land surveying to measure distances and angles
between points.
3. Rectangles and Squares:
Geometry: These shapes are used in geometry to calculate areas, perimeters, and
volumes.
Computer Graphics: Rectangles and squares are used as the basis for image
representation, computer screens, and pixel arrangement.
4. Polygons:
Architecture and Engineering: Polygons are utilized in architectural design for
constructing buildings with specific shapes and angles.
Geography: Polygons are employed to define geographical regions and study the
properties of land areas.
5. Cylinders:
Engineering: Cylinders are important for designing pipes, containers, and pressure
vessels in various industries.
Physics: Cylindrical coordinates are used to describe certain physical systems, such as
those with cylindrical symmetry.
6. Spheres:
Astronomy: Spherical geometry is used in astronomy to describe the celestial
sphere, constellations, and celestial coordinates.
Geography: Spheres are relevant for modeling the Earth's surface and its properties.
7. Cones:
Geometry: Cones are used in geometry to calculate surface areas, volumes, and
angles.
Physics: Conical shapes are found in objects like cones and megaphones, where
sound waves are focused.
8. Pyramids:
Architecture: Pyramids are iconic architectural structures and have applications in
design and engineering.
14
Geometry: Pyramids are used in geometry to calculate surface areas, volumes, and
angles.
9. Ellipses:
Astronomy: Elliptical orbits are common in celestial mechanics, describing the paths
of planets, comets, and other objects in space.
Engineering: Ellipses are used in antenna design for signal reception and
transmission.
These applications showcase how different shapes are not only abstract concepts in
mathematics but also practical tools for solving real-world problems in various disciplines.
Shapes provide a means of modeling and understanding the physical world and its
properties.
ChatGPT
Introducing yourself in a job interview is crucial, as it sets the tone for the conversation and
provides the interviewer with initial information about you. Here's a step-by-step guide on
how to effectively introduce yourself in an interview:
1. Greet and Smile: Begin with a friendly greeting and a genuine smile. This helps create a
positive first impression.
2. State Your Full Name: Start by stating your full name clearly and confidently.
3. Mention Your Background: Briefly mention your educational background and any relevant
qualifications or degrees you hold.
4. Professional Tagline: If you have a professional tagline or a concise summary of your
expertise, you can include it. For example, "I'm a marketing professional with a focus on
digital strategy."
5. Work Experience: Highlight your relevant work experience, especially if it aligns with the
position you're applying for. Mention the number of years you've been working in your field.
6. Key Skills: Share a few key skills or strengths that are relevant to the job. This helps the
interviewer understand how you can contribute to the organization.
7. Achievements: Mention any notable achievements or projects that showcase your
capabilities. This can help you stand out from other candidates.
8. Passion and Motivation: Briefly explain why you're interested in the company and the role.
Highlight what excites you about the opportunity.
9. Personality Traits: Mention a couple of positive personality traits that make you a good fit
for the company culture and the role.
10. Thank Them: Express gratitude for the opportunity to interview and convey your enthusiasm
for the discussion.
"Good [morning/afternoon], my name is [Your Name]. I hold a [Your Degree] in [Your Major]
from [University Name]. I have over [Number of Years] years of experience in [Your Field],
15
where I've developed a strong expertise in [Key Skill 1], [Key Skill 2], and [Key Skill 3]. I'm
particularly proud of [mention a specific achievement or project]. I'm excited about the
opportunity to join [Company Name] and contribute my skills to [specific aspect of the
company]. With my [positive personality trait] and [another positive personality trait], I
believe I'll be a great fit for the team. Thank you for considering me for this interview."
Remember to adapt your introduction to the specific job and company you're interviewing
with. Keep it concise, confident, and positive while showcasing your relevant qualifications
and enthusiasm for the role.
What is geometry ?
Geometry is a branch of mathematics that focuses on the study of shapes, sizes, properties,
and spatial relationships of objects in space. It deals with the properties and dimensions of
points, lines, angles, surfaces, and solids. Geometry plays a fundamental role in
understanding the physical world, as it helps us describe and analyze the relationships
between objects and their positions.
There are different branches of geometry, each with its own focus:
1. Euclidean Geometry: This is the most familiar form of geometry, often referred to as "flat" or
"classical" geometry. It deals with the properties of objects in two-dimensional and three-
dimensional space according to the principles established by the ancient Greek
mathematician Euclid.
2. Analytic Geometry: Also known as coordinate geometry, this branch combines algebra and
geometry. It involves representing geometric objects using algebraic equations and
coordinates, making it possible to study their properties using algebraic techniques.
3. Differential Geometry: This branch involves the study of curves, surfaces, and other objects
using techniques from calculus. It explores concepts like curvature, tangent spaces, and
differentiable functions on smooth manifolds.
4. Topology: Topology is concerned with the properties of space that are preserved under
continuous deformations, such as stretching and bending, but not tearing or gluing. It
focuses on the study of concepts like continuity, convergence, and connectivity.
5. Non-Euclidean Geometry: This branch explores geometries that deviate from the traditional
Euclidean principles. Examples include hyperbolic and elliptic geometries, where the parallel
postulate of Euclid does not hold true, leading to different geometric properties.
6. Projective Geometry: Projective geometry studies properties that are invariant under
perspective transformations. It deals with properties that remain the same regardless of the
way objects are projected onto a flat surface.
father of geometry
16
The ancient Greek mathematician Euclid is often referred to as the "father of geometry." He is
famous for his work "Elements," a comprehensive compilation of the knowledge and theories
of geometry available in his time. Euclid's "Elements" consists of thirteen books and covers a
wide range of geometric topics, from basic concepts of points, lines, and angles to more
complex theorems about polygons, circles, and solids.
It's important to note that while Euclid is often credited with formalizing many geometric
concepts, the ideas and principles he presented were likely built upon the contributions of
earlier mathematicians from various cultures, including ancient Egyptians and Babylonians.
What is algebra
Algebra is a branch of mathematics that deals with symbols and the rules for manipulating
these symbols to solve equations and study relationships between variables. It's a powerful
tool for solving mathematical problems and describing real-world situations.
In algebra, numbers are often represented using letters (variables), and equations are used to
express relationships between these variables. These equations can involve various
operations like addition, subtraction, multiplication, division, and exponentiation.
1. Expressions: These are combinations of numbers, variables, and operations. For example, "2x
+ 3y" is an algebraic expression where "x" and "y" are variables.
2. Equations: Equations are statements that two expressions are equal. They often involve
solving for a variable. For instance, "3x + 5 = 11" is an equation that can be solved to find the
value of "x."
3. Inequalities: These are statements that indicate a relationship between two expressions that
might not be equal. For example, "2x > 8" is an inequality.
4. Polynomials: These are expressions that involve variables raised to non-negative integer
powers, combined using operations. "3x^2 - 2x + 7" is an example of a polynomial.
5. Systems of Equations: These are sets of equations that share variables and need to be
solved simultaneously. They often represent real-world situations where multiple variables
are related.
6. Functions: Functions describe relationships between variables. Each input value (domain) is
associated with a unique output value (range). Functions are often represented using
equations.
topics such as quadratic equations, matrices, linear transformations, and abstract algebra,
which deal with more complex structures and mathematical systems.
Father of algebra
The title of the "father of algebra" is often attributed to the Persian mathematician
Muhammad ibn Musa al-Khwarizmi, who lived during the 9th century. Al-Khwarizmi was a
scholar in the House of Wisdom in Baghdad, an intellectual center of the Islamic world during
the Abbasid Caliphate.
Al-Khwarizmi's most significant contribution to algebra was his book "Kitab al-Mukhtasar fi
Hisab al-Jabr wal-Muqabala," which translates to "The Compendious Book on Calculation by
Completion and Balancing." In this work, he presented systematic methods for solving linear
and quadratic equations, laying the foundation for what we now call algebra.
The term "algebra" itself is derived from the Arabic word "al-jabr," which appears in the title
of al-Khwarizmi's book. "Al-jabr" refers to the process of moving terms from one side of an
equation to the other to solve for an unknown variable. This method of algebraic
manipulation and problem-solving has since become a fundamental part of algebraic
mathematics.
It's worth noting that while al-Khwarizmi is often referred to as the "father of algebra," the
development of algebraic ideas and techniques occurred over time and across cultures, with
contributions from mathematicians in ancient Greece, India, and other regions. Al-
Khwarizmi's work, however, played a pivotal role in shaping the algebraic foundation that is
widely recognized today.
Ans: The
Fields Medal is the most prestigious award for
mathematicians and has been awarded every four years since
1936 at the International Mathematical Congress to at least two
young mathematicians for their outstanding achievements.
18
The list of the seven (actually, eight) wonders of the world includes the
following marvels:
The Great Pyramid of Giza - Egypt (Given honorary status)
The Great Wall of China - China.
Petra - Jordan.
Christ the Redeemer - Brazil.
Machu Picchu - Peru.
Chichen Itza - Mexico.
Colosseum - Italy.
19
Archimedes Biography
20
Father of Mathematics: Archimedes Biography
The famous Greek mathematician and
philosopher Archimedes is known as the Father of Mathematics.
The Archimedes' Principle, which bears the name of the famous
philosopher, is a topic of much study in physics, and you may
have heard of it previously.
The inside room of the Kaba is 13X9 meters. The Kaba's walls are one meter
wide. The floor inside is 2.2 meters higher than the place where people perform
Tawaf.
The ceiling and roof are two levels made out of wood. They were reconstructed
with teak which is capped with stainless steel.
The walls are all made of stone. The stones inside are unpolished, while the ones
outside are polished.
This small building has been constructed and reconstructed by Prophets Adam,
Ibrahim, Ismail and Muhammad (peace be upon them all). No other building has
had this honor.
Yet, not very much is known about the details of this small but significant
building.
Did you know the Kaba was reconstructed as recently as close to four years ago?
21
Did you know that the Kaba has been subjected to danger by natural disasters
like flooding, as well as human attacks?
If you didn't keep reading. You'll find some rarely heard of information discussed
below and discover facts about the Kaba many are unaware of.
Bait ul Ateeq-which means, according to one meaning, the earliest and ancient.
According to the second meaning, it means independent and liberating. Both
meanings could be taken
The very first construction of the Kaba was done by Prophet Adam (peace be
upon him). Allah says in the Quran that this was the first house that was built for
humanity to worship Allah.
After this, Prophet Ibrahim and Ismail (peace be upon them) rebuilt the Kaba.
The measurements of the Kaba's Ibrahimic foundation are as follows:
-the side between the black stone and the Yemeni corner was 30 feet
Following this, there were several constructions before the Prophet Muhammad
(peace and blessings be uponj him) 's time.
22
After a flash flood, the Kaba was damaged and its walls cracked. It needed
rebuilding.
This responsibility was divided among the Quraish's four tribes. Prophet
Muhammad helped with this reconstruction.
Once the walls were erected, it was time to place the Black Stone, (the Hajar ul
Aswad) on the eastern wall of the Kaba.
Arguments erupted about who would have the honor of putting the Black Stone
in its place. A fight was about to break out over the issue, when Abu Umayyah,
Makkah's oldest man, proposed that the first man to enter the gate of the
mosque the following morning would decide the matter. That man was the
Prophet. The Makkans were ecstatic. "This is the trustworthy one (Al-Ameen),"
they shouted in a chorus. "This is Muhammad".
He came to them and they asked him to decide on the matter. He agreed.
Prophet Muhammad proposed a solution that all agreed to-putting the Black
Stone on a cloak, the elders of each of the clans held on to one edge of the cloak
and carried the stone to its place. The Prophet then picked up the stone and
placed it on the wall of the Kaba.
Since the tribe of Quraish did not have sufficient funds, this reconstruction did
not include the entire foundation of the Kaba as built by Prophet Ibrahim. This is
the first time the Kaba acquired the cubical shape it has now unlike the rectangle
shape which it had earlier. The portion of the Kaba left out is called Hateem now.
Who built the Kaaba? After the Prophet's Time-Abdullah ibn az-Zubayr
The Syrian army destroyed the Kaba in Muharram 64 (Hijri date) and before the
next Hajj Abdullah ibn az-Zubayr, may Allah be pleased with him, reconstructed
the Kaba from the ground up.
Ibn az-Zubayr wanted to make the Kaba how the Prophet Muhammad wanted it,
on the foundation of the Prophet Ibrahim.
Ibn az-Zubayr said, "I heard Aisha (may Allah be pleased with her) say, 'The
Prophet said: "If your people had not quite recently abandoned the Ignorance
(Unbelief), and if I had sufficient provisions to rebuild it [the Kaba], I would have
23
added five cubits to it from the Hijr. Also, I would make two doors; one for
people to enter therein and the other to exit." (Bukhari). Ibn az-Zubayr said,
"Today, I can afford to do it and I do not fear the people.
Ibn az-Zubayr built the Kaba on Prophet Ibrahim's foundation. He put the roof
on three pillars with the wood of Aoud (a perfumed wood with aroma which is
traditionally burned to get a good smell out of it in Arabia).
In his construction he put two doors, one facing the east the other facing the
west, as the Prophet wanted but did not do in his lifetime.
He rebuilt the Kaba on the Prophet Ibrahim's foundation, which meant that the
Hateem area was included. The Hateem is the area adjacent to the Kaba
enclosed by a low semi-circular wall.
Abdullah ibn az-Zubayr also made the following additions and modifications:
-put a small window close to the roof of the Kaba to allow for light.
-moved the door of the Kaba to ground level and added a second door to the
Kaba.
-added nine cubits to the height of the Kaba, making it twenty cubits high.
-reduced the pillars inside the House to three instead of six as were earlier built
by Quraish.
For reconstruction, ibn az-Zubayr put up four pillars around Kaba and hung cloth
over them until the building was completed. People began to do Tawaf around
these pillars at all times, so Tawaf of the Kaba was never abandoned, even
during reconstruction.
In 74 Hijri (or 693 according to the Gregorian calendar), Al-Hajjaj bin Yusuf al-
Thaqafi, the known tyrant of that time, with the approval of Umayyad Khalifa
Abdul Malik bin Marwan, demolished what Ibn az-Zubayr had added to it from
the older foundation of Prophet Ibrahim, restore its old structure as the Quraish
had had it.
-walled up the western door (whose signs are still visible today) and left the rest
as it was
-removed the wooden ladder Ibn az-Zubayr had put inside the Kaba.
When Abdul Malik bin Marwan came for Umra and heard the Hadith that it was
wish of Prophet for the Kaba to be constructed the way Abdullah ibn az-Zubayr
had built it, he regretted his actions.
Abbasi Khalifa Harun al Rasheed wanted to rebuild the Kaba the way the Prophet
Muhammad wanted and the way Abdullah ibn az-Zubayr built it.
But when he consulted Imam Malik, the Imam asked the Khalifa to change his
mind because constant demolition and rebuilding is not respectful and would
become a toy in the hands of kings. Each one would want to demolish and
rebuild the Kaba.
Based on this advice, Harun al Rasheed did not reconstruct the Kaba. The
structure remained in the same construction for 966 years, with minor repairs
here and there.
In the year 1039 Hijri, because of heavy rain, flood and hail, two of the Kaba's
walls fell down.
The flood during which this occurred took place on the 19th of Shaban 1039 Hijri
which continued constantly, so the water in the Kaba became almost close to
half of its walls, about 10 feet from the ground level.
On Thursday the 20th of Shaban 1039 Hijri, the eastern and western walls fell
down.
When flood receded on Friday the 21st of Shaban, the cleanup started.
Again, a curtain, the way Abdullah ibn az-Zubayr established on 4 pillars, was put
up, and the reconstruction started on the 26th of Ramadan. The rest of the walls
except for the one near the Black Stone, were demolished.
25
By the 2nd of Zul-Hijjah 1040 the construction was taking place under the
guidance of Sultan Murad Khan, the Ottoman Khalifa. From the point of the Black
stone and below, the current construction is the same as that done by Abdullah
ibn az-Zubayr.
The construction which was done under the auspices of Murad Khan was exactly
the one done at the time of Abdul Malik ibn Marwan which is the way the
Quraysh had built it before Prophethood.
On Rajab 28 1377, One historian counted the total stones of the Kaba and they
were 1,614. These stones are of different shapes. But the stones which are
inside the outer wall which is visible are not counted in there.
A major reconstruction of the Kaba took place between May 1996 and October
1996.
This was after a period of about 400 years (since Sultan Murad Khan's time).
During this reconstruction the only original thing left from the Kaba are the
stones. All other material has been replaced including the ceiling and the roof
and its wood.