Tag Archives: Engineering

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:

The Lifelong Learner’s Resource Guide: 30+ Platforms for AI, Data Science, GeoAI, Engineering, Research & Executive Education – 2026 Update

The Lifelong Learner’s Resource Guide: 30+ High-Quality Platforms for Engineering, AI, GeoAI, Research and Management

Learning Has Never Been More Accessible

Over the past two decades working across consulting, products, services, research, architecture, artificial intelligence, data science, and now exploring GeoAI, one observation has remained constant:

The most successful professionals are not necessarily the most knowledgeable—they are the most adaptable learners.

We live in an era where world-class education is available to anyone with an internet connection. Universities, research organizations, governments, technology companies, and professional societies now provide thousands of high-quality learning opportunities, many of them free or highly affordable.

I recently compiled a personal list of learning resources that may be useful for students, working professionals, researchers, entrepreneurs, educators, and lifelong learners.


Global Learning Platforms

MIT OpenCourseWare (MIT OCW)

https://ocw.mit.edu

Free access to thousands of undergraduate and graduate courses from MIT.

LinkedIn Learning

https://www.linkedin.com/learning

Professional courses in technology, business, leadership, project management, and creative skills.

Coursera

https://www.coursera.org

University-backed certifications, professional certificates, and degree programs.

edX

https://www.edx.org

Courses, Professional Certificates, and MicroMasters programs from leading universities.

Khan Academy

https://www.khanacademy.org

Excellent foundation in mathematics, science, economics, and computing.


India’s National Learning Ecosystem

NPTEL

https://nptel.ac.in

Online certification programs delivered by IITs and IISc.

SWAYAM

https://swayam.gov.in

Government of India’s MOOC platform with university-level courses.

IITGN-X

https://sites.iitgn.ac.in/iitgnx

Executive education and eMasters programs from IIT Gandhinagar.

IIT Continuing Education / Executive Education Programs

Examples:

• IIT Delhi CEP: https://cepqip.iitd.ac.in

• IIT Kanpur Online: Home | Online Programs, IIT Kanpur

• IIT Jodhpur: Program Portfolio | Office of Executive Education | IIT Jodhpur

• IIT Bombay: Educational Outreach, IIT Bombay

These programs enable working professionals to learn without taking career breaks.


Space Technology, GIS, Remote Sensing and GeoAI

As I continue exploring GeoAI and satellite-image-based applications in agriculture, flood monitoring, urban planning, and environmental analytics, I found these resources particularly valuable.

Indian Institute of Remote Sensing (IIRS)

https://www.iirs.gov.in

ISRO-supported training in Remote Sensing, GIS, GNSS and Geospatial Technologies.

BISAG-N

https://bisag-n.gov.in

National geospatial applications and training initiatives.

Indian Space Association (ISA)

https://isa.indiaspaceweek.org

Industry and educational programs for India’s growing space ecosystem.

Astronaut Training Workshops

https://workshop.indiaspaceweek.org/Astronaut

Awareness and exposure programs related to human spaceflight.

NASA ARSET

https://appliedsciences.nasa.gov/arset

Remote sensing applications and Earth observation training.

ESA EO College

https://eo-college.org

Earth Observation and satellite data analytics.

Google Earth Engine

https://developers.google.com/earth-engine

Cloud-based planetary-scale geospatial analytics platform.

Esri Academy

https://www.esri.com/training

GIS, ArcGIS and spatial analytics training.


Semiconductor and Emerging Technology Programs

Samsung Semiconductor Development Program

https://iisc-iswdp.org

Industry-academia initiative for semiconductor workforce development.

C-DAC ACTS

https://www.cdac.in/index.aspx?id=ActsCourses

Advanced diploma programs in AI, Cybersecurity, Embedded Systems, HPC and Software Engineering.

BSERC

https://bserc.org

Research, innovation and technology development programs.

ISL

https://isl.ac.in

Programs related to space science and emerging technologies.

IICT

https://iict.edu.in

Technology and engineering education initiatives.

NSRC

https://www.nrsc.gov.in/nrscnew/Training_TC_Overview.php


AI, Machine Learning and Data Science

DeepLearning.AI

https://www.deeplearning.ai

Industry-leading AI and Generative AI courses.

Fast.ai

https://www.fast.ai

Practical deep learning with an emphasis on implementation.

Hugging Face Learn

https://huggingface.co/learn

Modern NLP, LLM and Generative AI learning resources.


Research, Publishing and Academic Skills

Elsevier Researcher Academy

https://researcheracademy.elsevier.com

Research methods, publishing and academic career development.

Professional development training for researchers — via online courses and workshops

https://www.nature.com/masterclasses

Writing, peer review and publishing skills.

IEEE Learning Network

https://iln.ieee.org

Engineering and technology-focused professional learning.

ACM Learning Center

https://learning.acm.org

Computing, software engineering and computer science resources.


Working Professional Degree Programs

BITS Pilani WILP

https://www.bits-pilani.ac.in/wilp

Work Integrated Learning Programs for professionals.

IIT Madras Online Degree

https://study.iitm.ac.in

CODE

IIT Madras Degree Program in Data Science and Applications

Online BS and advanced programs in Data Science and related fields.

IIM Udaipur ePhD

https://www.iimu.ac.in/programs/ephd

Executive doctoral program for working professionals.

ISB Executive FPM (EFPM)

https://www.isb.edu/en/study-isb/post-doctoral/efpm.html

Doctoral-level management research program designed for industry professionals.


Technology, AI, Cloud, Semiconductor & Open-Source Learning Resources

Google Cloud Skills Boost

🔗 https://www.cloudskillsboost.google Cloud, AI, Machine Learning, Data Engineering, Kubernetes, Generative AI, and Google Cloud certifications.

Google Developers

🔗 https://developers.google.com Training resources for Android, Web Development, APIs, AI, Maps Platform, and Google Earth Engine.

Microsoft Learn

🔗 https://learn.microsoft.com Comprehensive learning platform covering Azure, AI, Data, Security, .NET, Power Platform, and DevOps.

AWS Skill Builder

🔗 https://skillbuilder.aws Official Amazon Web Services training portal for cloud architecture, machine learning, DevOps, and security.

Meta Blueprint

🔗 https://www.facebookblueprint.com Learning resources for AI, AR/VR, digital technologies, and Meta platforms.

NVIDIA Deep Learning Institute (DLI)

🔗 https://www.nvidia.com/en-in/learn Industry-leading courses on CUDA, GPU Computing, AI, Deep Learning, Robotics, and Accelerated Computing.

Intel Developer & AI Resources

🔗 https://www.intel.com/content/www/us/en/developer/overview.html Resources covering Edge AI, OpenVINO, AI acceleration, hardware optimization, and intelligent systems.

Qualcomm Developer Network

🔗 https://developer.qualcomm.com Training and development resources for Snapdragon, Embedded Systems, Edge AI, and IoT applications.

Apple Developer

🔗 https://developer.apple.com Official learning ecosystem for iOS, Swift, mobile applications, and Apple platforms.

Oracle University

🔗 https://education.oracle.com Training and certifications in Oracle Database, Java, OCI Cloud, Analytics, and AI technologies.

IBM SkillsBuild

🔗 https://skillsbuild.org Free learning platform for AI, Data Science, Cybersecurity, Cloud Computing, and Professional Skills.

Cisco Networking Academy

🔗 https://www.netacad.com Industry-recognized networking, cybersecurity, automation, and IoT education programs.

Red Hat Training & Certification

🔗 https://www.redhat.com/en/services/training-and-certification Linux, OpenShift, Containers, Kubernetes, Automation, and Enterprise DevOps training.

VMware Learning

🔗 https://www.vmware.com/learning.html Training on virtualization, cloud infrastructure, networking, and modern application platforms.

Databricks Academy

🔗 https://www.databricks.com/learn Courses covering Data Engineering, Lakehouse Architecture, Analytics, and Generative AI.

Snowflake University

🔗 https://learn.snowflake.com Cloud Data Platform, Data Warehousing, Analytics, and Data Engineering learning resources.


Semiconductor & Electronics Learning

TSMC University Relations

🔗 https://www.tsmc.com Resources and academic engagement programs related to semiconductor manufacturing and VLSI ecosystems.

Samsung Innovation Campus

🔗 https://www.samsung.com/in/samsung-innovation-campus Programs covering AI, IoT, Coding, Big Data, and future technology skills.

Samsung Semiconductor

🔗 https://semiconductor.samsung.com Learning resources and insights into semiconductor manufacturing and advanced chip technologies.

Texas Instruments Precision Labs

🔗 https://training.ti.com/ti-precision-labs High-quality training on Analog Electronics, Signal Processing, Power Systems, and Embedded Design.

Analog Devices Learning Center

🔗 https://www.analog.com/en/education.html Educational resources on Analog Electronics, Embedded Systems, Sensors, and Signal Processing.

Infineon Education Portal

🔗 https://community.infineon.com/ Learning resources in Power Electronics, Automotive Electronics, Embedded Systems, and Semiconductors.

NXP Training Academy

🔗 https://community.nxp.com/ Training for Automotive Systems, Embedded Computing, IoT, and Edge Devices.

STMicroelectronics Learning

🔗 https://www.st.com/content/st_com/en/support/learning.html Educational content covering microcontrollers, embedded systems, and industrial electronics.

Cadence Training Services

🔗 https://www.cadence.com/en_US/home/training.html Industry-standard EDA, IC Design, Verification, and Semiconductor Design training.

Synopsys Learning Center

🔗 https://training.synopsys.com/learn Professional learning resources for VLSI Design, Verification, EDA Tools, and Semiconductor Engineering.


AI, Research & Open Source

OpenAI Academy

🔗 https://academy.openai.com Learning resources on Generative AI, LLMs, AI applications, and AI adoption.

Hugging Face Learn

🔗 https://huggingface.co/learn Hands-on courses covering NLP, Transformers, Large Language Models, and Open-Source AI.

DeepLearning.AI

🔗 https://www.deeplearning.ai Industry-leading courses on Machine Learning, Deep Learning, LLMs, and Generative AI.

Linux Foundation Training

🔗 https://training.linuxfoundation.org Open-source learning programs covering Linux, Kubernetes, Cloud Native Computing, and DevOps.

Apache Software Foundation

🔗 https://www.apache.org Open-source projects, technical documentation, and community resources across the Apache ecosystem.


My Recommended Learning Sequence

  1. Mathematics & Computing Foundations
  2. Programming & Software Engineering
  3. Cloud & DevOps
  4. Artificial Intelligence & Data Science
  5. Electronics & Embedded Systems
  6. Semiconductors & VLSI
  7. GeoAI & Spatial Analytics
  8. Open Source Technologies
  9. Research Methodology & Publications
  10. Advanced Industry and Academic Research

Final Thoughts

Technology cycles are becoming shorter.

AI models evolve every few months.

Industries transform rapidly.

The ability to learn, unlearn and relearn has become one of the most important professional skills.

Whether your interests lie in Artificial Intelligence, Data Science, GeoAI, Software Engineering, Management, Space Technologies, Research Methodology, Semiconductors, or Executive Education, there has never been a better time to build expertise through structured learning.

The challenge today is no longer access to knowledge.

The challenge is developing a habit of continuous learning.

What platforms, programs, certifications or courses have contributed most to your professional growth?

I would love to hear recommendations from fellow professionals, researchers, educators and students.

#LifelongLearning #ContinuousLearning #ArtificialIntelligence #DataScience #GeoAI #Engineering #Research #HigherEducation #ExecutiveEducation #FutureSkills

📢 Stay informed: