Tag Archives: Education

Sunday Mathematics #3 — Complex Numbers: When Real Numbers Are Not Enough

Article content

Most of us first encounter complex numbers through a slightly uncomfortable equation:

x² + 1 = 0

Therefore:

x² = −1

But no real number squared gives −1.

Mathematics solved this by extending the number system and defining:

i = √−1

A complex number can therefore be written as:

z = a + bi

where:

  • a is the real part
  • b is the imaginary part
  • i² = −1

At first glance, this can look like a mathematical trick.

It isn’t.

Complex numbers are one of the most useful mathematical abstractions in science, engineering and computing.


1. From a Number Line to a Number Plane

Real numbers live on a one-dimensional number line.

Complex numbers give us a two-dimensional plane:

z = a + bi ↔ (a, b)

The horizontal axis represents the real component and the vertical axis represents the imaginary component.

For example:

z = 3 + 4i

can be represented by the point (3,4).

Its magnitude is:

|z| = √(3² + 4²) = 5

Its angle or phase is:

θ = tan⁻¹(4/3)

So a complex number can represent both:

Magnitude + Direction

This is where complex numbers become extraordinarily useful.


2. Cartesian and Polar Forms

The same complex number can be represented in different ways.

Cartesian form

z = a + bi

Polar form

z = r(cos θ + i sin θ)

where:

r = √(a² + b²)

Using Euler’s formula:

e^(iθ) = cos θ + i sin θ

we get:

z = re^(iθ)

This is a remarkably powerful representation.

Instead of thinking only about two numbers, we can think in terms of:

Amplitude + Phase

And amplitude and phase appear everywhere in physical and computational systems.


3. Euler’s Formula — A Beautiful Mathematical Bridge

One of the most famous equations in mathematics is:

e^(iπ) + 1 = 0

It connects five fundamental mathematical constants:

0, 1, e, i and π

But Euler’s formula is much more than mathematical beauty.

e^(iθ) = cos θ + i sin θ

provides a bridge between:

exponentials ↔ trigonometry ↔ rotation ↔ oscillation

That bridge is extremely useful when studying waves, signals, electrical systems, communications and control systems.


4. Complex Numbers and Rotation

Suppose:

z = re^(iθ)

Multiplying it by:

e^(iφ)

gives:

z’ = re^(i(θ+φ))

In simple terms, multiplication by a complex exponential can rotate a point.

This gives us a very elegant mathematical mechanism for representing rotations.

Instead of repeatedly manipulating sine and cosine equations, many rotation and oscillation problems become multiplication problems.

This idea appears in graphics, robotics, signal processing, physics and engineering.


5. Electrical Engineering and AC Circuits

One of the classic applications of complex numbers is alternating-current circuit analysis.

Electrical quantities such as voltage and current oscillate.

Instead of repeatedly working with expressions such as:

V(t) = V₀ cos(ωt + φ)

engineers can represent oscillating quantities using complex numbers and phasors.

Circuit impedance can be represented as:

Z = R + jX

where:

  • R = resistance
  • X = reactance
  • j represents √−1 in electrical engineering

The magnitude tells us the overall opposition to current, while the phase captures the relationship between voltage and current.

A difficult time-domain problem can often become a much simpler algebraic problem.


6. Signal Processing and Fourier Analysis

Suppose we have audio, vibration, radar, network or sensor data.

A signal that looks complicated in the time domain may actually contain combinations of simpler frequencies.

Fourier analysis decomposes signals into these frequency components.

Complex exponentials provide an elegant representation:

e^(iωt) = cos(ωt) + i sin(ωt)

This idea forms part of the mathematical foundation behind tools such as:

Fourier Transform

Discrete Fourier Transform (DFT)

Fast Fourier Transform (FFT)

These are used across:

  • Audio processing
  • Image processing
  • Telecommunications
  • Radar
  • Medical imaging
  • Vibration analysis
  • Sensor analytics
  • Spectral analysis
  • Scientific computing

Complex numbers therefore help us move between:

Time Domain ↔ Frequency Domain


7. Communication Systems

Modern communication systems depend heavily on amplitude and phase.

Wireless systems can encode information by changing these properties of a carrier signal.

For example, in Quadrature Amplitude Modulation (QAM), symbols can naturally be represented as points on a complex plane.

Think of a transmitted symbol as:

z = I + jQ

where:

  • I = In-phase component
  • Q = Quadrature component

The constellation of these complex-valued points represents digital information.

So when your phone communicates using sophisticated wireless networks, complex-number mathematics is operating underneath many layers of abstraction.


8. Control Systems

Complex numbers also appear naturally when studying the stability and behaviour of dynamic systems.

Engineers examine poles and zeros in the complex plane.

A pole might look like:

s = σ + jω

The real component can tell us about growth or decay.

The imaginary component relates to oscillation.

This makes the complex plane extremely useful for reasoning about:

Stability + Oscillation + Damping + System Response

Applications range from industrial automation to aerospace, robotics and power systems.


9. Quantum Mechanics

Complex numbers are fundamental to quantum mechanics.

Quantum states are represented using complex-valued wave functions.

A simplified representation might be:

ψ = a + bi

The directly observable probability is not simply ψ itself.

Instead, quantities involving its magnitude, such as:

|ψ|²

play a central role.

Here complex numbers are not merely a convenient calculation technique—they are embedded deeply in the mathematical framework used to describe quantum systems.


10. Computer Graphics and Robotics

Complex numbers can represent rotations elegantly in two dimensions.

If a point is represented by:

z = x + iy

multiplication by:

e^(iθ)

rotates the point through an angle θ.

This provides a compact way of understanding transformations.

For 3D rotations, related mathematical ideas extend into structures such as quaternions, widely used in robotics, aerospace systems, simulations and computer graphics.


11. Complex Numbers in Data Science and AI

Most introductory machine-learning models operate on real-valued data.

But complex-valued representations become useful when the underlying information naturally contains phase, frequency, waves or spectral characteristics.

Examples can arise in:

  • Signal classification
  • Radar analytics
  • Wireless communications
  • Medical imaging
  • MRI reconstruction
  • Audio processing
  • Computer vision
  • Spectral methods
  • Scientific machine learning
  • Complex-valued neural networks

This highlights an important lesson for data science:

The mathematical representation should follow the structure of the problem.

If the phenomenon contains magnitude and phase, forcing everything prematurely into purely real-valued representations can sometimes hide useful structure.


12. A Small Python Example

Python supports complex numbers directly.

z = 3 + 4j

print(z.real)
print(z.imag)
print(abs(z))

The result is:

Real part = 3

Imaginary part = 4

Magnitude = 5

Scientific Python libraries such as NumPy can also perform complex-valued numerical computations, Fourier transforms and linear algebra.

So the journey from:

i = √−1

to computational engineering is surprisingly short.


The Bigger Lesson

Complex numbers demonstrate something important about mathematics.

Sometimes mathematics advances not by solving a problem inside the existing system, but by expanding the system itself.

Natural numbers were not enough.

We introduced integers.

Integers were not enough.

We introduced rational numbers.

Rational numbers were not enough.

We introduced real numbers.

And real numbers were not enough.

We introduced complex numbers.

What initially looks “imaginary” can eventually become indispensable for describing reality.


WHY → WHAT → WHERE → WHEN → HOW

For learning complex numbers, I would approach the topic in this order:

WHY? Real numbers alone cannot conveniently represent every mathematical and physical phenomenon.

WHAT? A complex number combines real and imaginary components: a + bi.

WHERE? Signals, circuits, communications, control systems, physics, graphics, robotics and scientific computing.

WHEN? Especially when the problem involves oscillation, rotation, frequency, magnitude and phase.

HOW? Complex algebra, Euler’s formula, polar representation, Fourier analysis—and computational tools such as Python, NumPy, MATLAB and scientific libraries.

AI can increasingly help us with the HOW.

But understanding the WHY and WHAT remains essential if we want to know whether the answer actually makes sense.


Sunday Mathematics

The objective of this series is not mathematics for examinations.

It is mathematics for computer science, data science, AI, engineering, technology and decision-making—connecting equations with the systems around us.

Sunday Mathematics #3: Complex Numbers

From √−1 to signals, circuits, wireless communication, quantum mechanics, robotics and AI.

Sometimes the numbers we call imaginary help us understand the real world.

HSOPC — Harwani Systems https://www.harwanisystems.in/

TechAndTrain https://www.techandtrain.com/

Neil Harwani — LinkedIn https://www.linkedin.com/in/neil27/

Email: Neil@HarwaniSystems.in

Narrative and concept: Neil Harwani

Creation help: ChatGPT

#SundayMathematics #Mathematics #ComplexNumbers #DataScience #ArtificialIntelligence #Engineering #ComputerScience #SignalProcessing #FourierTransform #ElectricalEngineering #MachineLearning #QuantumComputing #Robotics #STEM #Education

When AI Knows the HOW, Education Must Teach the WHY

In the age of AI, should education spend more time on WHY, WHAT, WHERE and WHEN — rather than only HOW?

For decades, technical education has focused heavily on HOW.

How do you write the code? How do you implement an algorithm? How do you calculate the answer? How do you configure or deploy the system?

HOW still matters — but access to HOW has fundamentally changed.

Today, a learner can ask:

  • ChatGPT — explain concepts, reason through problems, learn math/science, write and debug code.
  • Claude — explain concepts, ask Socratic questions and help develop understanding.
  • Google Gemini — explore and understand topics using generative AI.
  • Microsoft Copilot — assist with explanations, research, writing and technical work.
  • Perplexity — research questions through conversational answers backed by sources.
  • Google Search — find documentation, papers, tutorials, lectures and expert discussions.
  • YouTube — access lectures, demonstrations and practical walkthroughs.
  • GitHub — study real implementations and open-source code.

ChatGPT explicitly supports answering questions and explaining concepts, while Anthropic’s education work with Claude emphasizes guiding students, Socratic questioning and understanding fundamental principles.

So HOW is increasingly available on demand.

The scarce skill is increasingly knowing what to ask, why it matters, where to apply it, when to use it — and whether the answer is actually correct.

WHY?

Why are we solving this problem? Why does this technique work? Why did the system or model fail? Why is this solution preferable to another?

WHAT?

What exactly is the problem? What assumptions are being made? What data do we need? What does success actually mean?

WHERE?

Where should this technology be applied? Where will it fail? Where does it create genuine business or societal value?

WHEN?

When should we use it? When should we avoid it? When is a simpler technique sufficient? When should a human override the machine?

And then — HOW?

How do we implement, test, deploy, operate and improve it?

Consider Machine Learning.

Teaching someone:

model.fit(X, y)

is relatively easy today.

The deeper education is:

WHY do we need ML at all? → WHAT problem are we actually trying to predict or optimize? → WHERE did the data originate? → WHEN is linear regression sufficient instead of a neural network? → Why might accuracy be the wrong metric? → What happens when the data distribution changes? → Where can bias, leakage and overfitting enter the system? → When should the model not be deployed?

This distinction becomes even more important because AI assistance can produce an answer without guaranteeing that the learner understands it. Anthropic’s research on coding education found stronger mastery among participants who used AI to build comprehension — asking conceptual questions and requesting explanations — rather than simply using it to produce code.

That suggests a different model for education:

Traditional: Learn HOW → Practice HOW → Reproduce HOW → Examination

AI-first learning: WHY → WHAT → WHERE → WHEN → HOW → VERIFY → REFLECT

AI can dramatically reduce the cost and time of HOW.

But it increases the importance of fundamentals, judgment, context, critical thinking, verification and responsibility.

The future of education should therefore not be about teaching students less because AI exists.

It should be about teaching them to think at a higher level because AI exists.

AI should reduce the cost of execution — not the importance of understanding.

Neil Harwani

🔗 LinkedIn: https://www.linkedin.com/in/neil27/ 🔗 Harwani Systems (HSOPC): https://www.harwanisystems.in/ 🔗 TechAndTrain: https://www.techandtrain.com/

#AI #Education #AIFirst #MachineLearning #DataScience #GenerativeAI #Teaching #Learning #CriticalThinking #HigherEducation #Engineering #Technology #FutureOfEducation

Concept & Narrative Credit: Neil Harwani

Creation Help: ChatGPT

📢 Stay informed:

Some unique courses for working professionals in India post liberalization / reforms in education – Part 1

Here with I am providing a list of unique courses that I have observed in India post liberalization / reforms in education. Most are online / work integrated or distance learning – this is Part 1 of the list for working professionals:

Email me: Neil@HarwaniSystems.in

List of good executive education programs in India – Part 1

Since the last few years (5 to 10 years) there has been an exponential growth in executive education courses and market across India. Herewith, I am compiling some of the good options for executive education in India – Part 1.

If you have more links, please share with me over email for Part – 2 of this series.

Email me: Neil@HarwaniSystems.in

Stories from my career & education – Part – I

Have been observing people posting their stories on LinkedIn and other places. This is my attempt at short summaries of learnings over the years from my career and education – Part 1. As this peeks into 1990s and 2000s, its difficult to recollect details but the overall learnings do remain.

School – Airforce school – 1990-92: Vague memories but the critical thing was holistic learning. What I do remember is a school that introduced us to discipline, computers, games, extra curriculars and more along with good education with a report card having lots of parameters in terms of evaluation rather than only academics. Learnings: Holistic learning.

School – Xavier’s – 1992-98: Place where we led a simple, disciplined life with a happy class of individuals from across the country. Schooling for me included scoring decent marks in 10th, 11th & 12th and getting into engineering along with playing non-stop whole day whenever we got a chance. More than 70-80% of the class seems to be achievers in their specific areas now. Learnings: Values, Simplicity, Good education.

College – LDCE – Civil engineering – 1998-2004: Critical learning was to manage things on your own which included freelancing to get work, learning computers, deciding how to study, being self sufficient, interacting with multi-geographical group of students from across India, making friends and understanding the value of stepping stones and foundation in life. Learnings: Unless you build a foundation of knowledge, discipline and goals – you will continue to face problems.

College – ICFAI Hyderabad / Dehradun – 2004-2006: Learned advanced concepts of technology around Java, Networking, Operating systems and more in a very tight / packed schedule of two years – probably included 25-30+ subjects at a place where I was forced to build a new network of friends. Met some wonderful friends from Northern and other parts of India. Got placed into services part of the then booming Information Technology industry from here. Learnings: Focus on goals around technology & career.

Will come out with part two at a later point of time for 2006 onwards.

Email me: Neil@HarwaniSystems.in

What is changing in education sector in India?

  • Autonomy for high ranking colleges & universities
  • Similarity in rules for PhD
  • Education related code of conduct for Ed-Tech
  • Industry professionals can teach without PhD
  • Universities allowed to tie up with Ed-Tech for online education
  • Online education now mainstreamed and regularized
  • New education policy launched
  • UGC & AICTE top management focussed on better outcomes
  • Positive changes in school ecosystems
  • Tie-ups / collaborations increasing in education
  • Multiple focussed universities coming up in various domains
  • 4 years honours degree and direct admission to PhD after 4 years degree possible
  • Credit transfers & multiple entry / exit made possible
  • Online content sourcing now allowed for universities up to 40%

Email me: Neil@HarwaniSystems.in

Ways of learning in modern education – Part 1

  • Case studies
  • Field visits
  • Discussions
  • Practical
  • Simulations
  • Work integrated learning
  • Experiments
  • Guided learning
  • Experiential learning
  • Group assignments
  • Individual assignments
  • Quizzes
  • Critical analysis of news and articles
  • Case writing
  • Workshops
  • Paper / article / research writing
  • Whitepaper writing
  • Research / teaching assistantships
  • Thesis
  • Industry projects & reports driven by students
  • Internships
  • Survey and analysis of market data
  • Market research
  • Competitive events between institutions
  • Participating in standards / products / service creation
  • Industry and academic collaboration at faculty level
  • Games
  • Social experiments

Email me: Neil@HarwaniSystems.in

Changes in India’s education system in last few years

  • Institutions of Eminence declared – Complete autonomy given to them
  • University status for IIMs, NITs, IIITs, AIIMS, etc. via Institutions of National Importance route
  • Graded autonomy for UGC affiliated institutions – Based on their accreditation score, they can offer online, distance courses and will have autonomy in academics, faculty recruitment, etc.  
  • Graded autonomy for AICTE affiliated institutions – Based on their accreditation score, they can offer online, distance courses and will have autonomy in academics, faculty recruitment, etc.  
  • MCA shortened to two years from three years – It’s now mapped to a standard university master’s degree of two years 
  • Online degrees approved – Degrees like MBA, MCA, PGDM, etc. are being offered online
  • Rationalization in engineering colleges – Colleges with majority empty seats are being closed with no approvals for new applications by colleges for next few years
  • CGPA system now introduced in almost all universities and colleges
  • Merged single regulator & National Education Policy likely to be finalized in next few months 
  • Executive education programs are getting approvals 
  • Hybrid courses by institutions of eminence & institutes of national importance are starting like Executive MTechs, Executive MBAs, etc. which can be done with your routine job 
  • Foreign collaboration with universities & colleges across the world is becoming easier 
  • Deemed universities with high score in accreditation will not require approvals for open & distance learning courses 

Email me: Neil@TechAndTrain.com

Visit my creations:

  • www.TechAndTrain.com
  • www.QandA.in
  • www.TechTower.in

21st Century Business Management Education: Neither Content nor Pedagogy, Essence is Integration with Triple Bottom Line

Abstract:

In 21st century, many questions clutter our horizon. The way business is passing through sudden and continuous changes; the new business management norms are created every day. The business management education should follow the suit; rather provide lead to the business. Visibly the technological disruptions, social expectations and globalization demands better understanding of its impacts on economy, society and environment in terms of the costs, and benefits. This paper constructs argument emphasizing on core principle of business management education that any course delivery should integrate with triple bottom line. The opportunity costs are enormous if industry or institute fails to do so. Spender rightly poised the questions in his research. What are business schools, and what should they be? What are the social, business, or personal purposes of management education? And how might management education evolve next to meet society’s present needs (J.C. Spender, 2016)? The key questions business school should address revolves around subjects that should be included in syllabus, content of the courses, teaching pedagogy or learning mechanism and recruiting students with right aptitude, attitude and temperament. Business schools attempts to address one or all those ingredients. The more important missing element in business management education is integration of course delivery with the triple bottom line. The existence of business is economic or accounting profit. To be a sustainable business; social and environmental performance of business cannot be ignored. Each course included in the syllabus has a purpose; to help business to enhance triple bottom line. 


Each business problem is unique and one must be able to find solution optimally that fits to the unique situation. There is no one solution which is best to solve a problem. You must be persistent to solve problems on a continuous basis until desired result is obtained. Teacher can guide student, can ignite student’s mind to think beyond horizon. A teacher can expand thinking horizon of the student. In real life situation, a teacher will not accompany student. Student must equip himself to solve the business problem. Therefore, the business management pedagogy seeks involvement of the student while learning. Your solution must be feasible and acceptable to your economic and social surrounding. To solve a problem, you must have information. Scarcity of information is not a problem but abundance information is rather a big challenge. The current age is full of information accessible on public platforms, big challenge is to recognize and extract relevant and reliable information from the information ocean. The next level challenge in this endeavor is to identify real life problems, the application information, and to solve them efficiently and effectively. Learning is a lifelong process. You have to improve your skills on a continuous basis. Without mastering ability to learn new skills, one will become irrelevant. Technology guides you but it also misguides you. It is your ability to judge veracity, relevance, reliability and usefulness of information to churn out the right information.  


Business problems are now seen from prism of economic, social and environmental aspects. Twenty-first-century learning encompass mastery in content producing, synthesizing, and evaluating information from a wide variety of subjects and sources with an understanding of and respect for diverse cultures beside economic understanding. The pillar of success in the 21st century is about knowing how to learn independently. The learning now is eventually be “learner-driven.” The 21st century learning builds upon such past conceptions of learning as “core knowledge in subject areas” and recasts them for today’s world, where a global perspective and collaboration skills are dynamic, critical and focused. It’s no longer enough to “know things”, but to know things to find solution that is economically feasible, socially acceptable and environment friendly. It’s even more important to stay curious about finding out things. We have powerful learning tools at our disposal that allow us to locate, acquire, and even create knowledge much more quickly than our predecessors. Ability to recognize and acquire skills to fit in ever-changing environments is sine-qua-non. No one will tell you what skills are required and the way to acquire it. The self-management is the key to succeed in 21st century. We strongly argue that business management course content should be rich, contemporary, reflecting real life situation, relevant and providing lead to future industry. The course delivery should be learner centered and integrated with triple bottom line.

Vrajlal Sapovadia (Ph.D.)
United States