Neil Akhawat ← neilakhawat.com

Aerospace × AI — Questions & Answers

Clear, concise answers to commonly-asked questions across aerospace, machine learning, quantum mechanics, classical physics, and mathematics — the same topics discussed in the community forum.

Aerospace Technology

Why do hypersonic vehicles lose radio contact during reentry?

The air around the vehicle ionizes into a plasma sheath that absorbs and reflects radio waves, causing the 'communications blackout' until it slows and the plasma thins out.

What's the difference between a ballistic missile and a hypersonic glide vehicle?

A ballistic missile follows a predictable arcing path set at launch, while a hypersonic glide vehicle stays in the atmosphere and maneuvers, making its trajectory far harder to predict.

How does a rocket work in the vacuum of space with nothing to push against?

It pushes against its own exhaust: by Newton's third law, throwing mass backward at high speed produces an equal forward thrust, no external medium needed.

Think of a skateboarder throwing heavy bricks — each brick hurled one way shoves them the other. A rocket just throws very hot, very fast 'bricks' of exhaust.

Why is reaching orbit about speed, not just altitude?

Orbit means falling around the Earth fast enough to keep missing it, so you need roughly 7.8 km/s sideways velocity; most of a rocket's energy goes into speed, not height.

What actually causes the intense heating on a spacecraft during reentry?

Mostly compression of the air piling up in front of the vehicle, not friction; it heats to thousands of degrees and heat shields ablate or radiate that energy away.

How hot does a spacecraft get during reentry?

Surfaces can reach up to around 1,650°C (3,000°F) for capsules, and far hotter for high-speed lunar returns, as the compressed air dumps its energy into the vehicle.

Why are reentry capsules blunt instead of pointed?

A blunt shape pushes a detached shock wave ahead of the vehicle, keeping most of the searing heat in the air rather than in the structure.

What is specific impulse and why does it matter for rockets?

Specific impulse measures how much thrust you get per unit of propellant burned; higher values mean more delta-v from the same mass of fuel.

Why do rockets use multiple stages?

Dropping empty tanks mid-flight sheds dead weight, so the remaining engines accelerate a lighter vehicle and beat the exponential fuel cost of the rocket equation.

How do hypersonic vehicles steer while maneuvering at Mach 10+?

They use aerodynamic control surfaces and body lift, sometimes with reaction-control thrusters, shifting the lift vector to pull turns the atmosphere alone could not.

What is the rocket equation and why is it called tyrannical?

Tsiolkovsky's equation links delta-v to exhaust velocity and mass ratio; because it's exponential, small velocity gains demand disproportionately huge increases in fuel.

Why is scramjet propulsion so hard to achieve?

A scramjet burns fuel in supersonic airflow, like keeping a flame lit in a hurricane, with only milliseconds for the air to mix and combust.

How do engineers predict where a maneuvering reentry vehicle will land?

They fuse radar and satellite tracks with a physics model of the vehicle's dynamics and estimate its likely intent, producing a probability corridor rather than a single point.

Why do satellites in low orbit eventually fall back to Earth?

Even the thin upper atmosphere creates drag that slowly saps their speed, lowering the orbit until it decays and the satellite reenters.

What makes hypersonic flight different from ordinary supersonic flight?

Above about Mach 5 the shock waves hug the body, the air chemically dissociates, and heating dominates the design, so supersonic models stop being accurate.

What is delta-v and why do mission planners obsess over it?

Delta-v is the total change in velocity a spacecraft can achieve; every maneuver spends some, so it's the fundamental budget for any mission.

What is the Kármán line?

The roughly 100 km altitude often used as the edge of space, where the air is too thin for wings to generate lift and you'd need orbital speed instead.

Why do rockets usually launch toward the east?

To borrow the Earth's rotational speed (about 1,670 km/h at the equator), giving a free head start toward orbital velocity.

What's the difference between liquid and solid rocket fuel?

Liquid engines can be throttled and shut down but are complex, while solid motors are simple and powerful but burn until exhausted once lit.

How do heat shields actually protect a spacecraft?

Ablative shields char and slough away, carrying heat off with the lost material, while reusable tiles insulate and radiate the heat back out.

What is a gravity assist or slingshot maneuver?

A spacecraft borrows a tiny bit of a planet's orbital momentum during a close flyby to gain speed without burning fuel.

Why is space cold but spacecraft still overheat?

Space is nearly empty, so there's almost nothing to carry heat away; a craft can only shed heat by radiating it, so its sunlit side can bake.

What are apogee and perigee?

In an elliptical orbit, apogee is the farthest point from Earth and perigee the closest; a craft moves slowest at apogee and fastest at perigee.

How do GPS satellites stay so accurate?

They carry atomic clocks and even correct for relativity — time runs slightly faster for them in weaker gravity — keeping positioning within meters.

How fast is Mach 5 and why does 'hypersonic' begin there?

Roughly 6,100 km/h at sea level; past Mach 5 the heating and air chemistry shift enough that engineers treat it as a separate flight regime.

AI & Machine Learning

What's the difference between AI, machine learning, and deep learning?

AI is the broad goal of machines doing smart tasks, machine learning is AI that learns from data, and deep learning is ML using many-layered neural networks.

A quick mental model: AI is the field, ML is one approach to it, and deep learning is one powerful family of ML.

What is overfitting and how do you prevent it?

Overfitting is when a model memorizes the training data instead of the general pattern; you fight it with more data, regularization, dropout, and validation-based early stopping.

A simple tell: if training accuracy keeps climbing while validation accuracy stalls or drops, you're overfitting.

Cross-validation plus a held-out test set is your best early-warning system.

How do transformers and attention actually work?

Attention lets each token weigh how much every other token matters to it, so transformers capture long-range relationships in parallel instead of step by step like RNNs.

Why does my neural network need so much data?

Deep models have millions of parameters, so without enough varied examples they latch onto noise instead of the real signal and fail to generalize.

What is gradient descent in simple terms?

It's how a model learns: it nudges its parameters in the direction that most reduces error, taking small steps downhill on the loss surface.

What's the difference between supervised and unsupervised learning?

Supervised learning trains on labeled examples to predict an answer, while unsupervised learning finds hidden structure like clusters in unlabeled data.

Why do large language models hallucinate?

They predict plausible next tokens from patterns rather than looking up facts, so when a confident pattern is wrong they produce fluent but false statements.

Honestly? Same reason I confidently give directions to places I've never been. 😄

What is a loss function and how do I choose one?

It scores how wrong a prediction is; use cross-entropy for classification, mean-squared-error for regression, and task-specific losses when those don't fit.

How is physics-informed machine learning different from normal ML?

It adds the governing equations into the training loss, so the model's predictions must respect known physical laws instead of fitting data blindly.

What's the difference between a CNN and an RNN?

CNNs excel at spatial data like images using local filters, while RNNs and their gated variants handle sequences by carrying state across time steps.

Why split data into training, validation, and test sets?

You learn on the training set, tune your choices on validation, and measure honest performance on the untouched test set so you don't fool yourself.

What does 'embedding' mean in machine learning?

An embedding maps things like words or images into a vector space where similar items sit close together, letting models reason about meaning numerically.

How do you know if a model is actually good or just lucky?

Evaluate on held-out data, use cross-validation, pick the right metric for the task, and always compare against a sensible baseline.

What is reinforcement learning used for?

It trains an agent to maximize reward through trial and error, useful in game-playing, robotics, and control problems where good labels aren't available.

What is a neural network in simple terms?

A stack of simple math units loosely inspired by neurons; by adjusting their connection strengths during training, the network learns to map inputs to outputs.

What's the difference between AI and a chatbot like ChatGPT?

A chatbot is one application of AI; underneath it's a large language model — a neural network trained to predict text — wrapped in a conversational interface.

What is a hyperparameter?

A setting you choose before training, such as learning rate or number of layers, as opposed to the weights the model learns on its own.

Why do we normalize or scale input data?

Putting features on similar scales helps training converge faster and stops large-valued features from dominating the model.

What is the bias-variance tradeoff?

Too simple a model underfits (high bias); too complex a model overfits noise (high variance); the goal is to balance the two for the best generalization.

What is backpropagation?

The algorithm that computes how each weight contributed to the error and sends that signal backward through the network so the weights can be adjusted.

What's the difference between classification and regression?

Classification predicts a category like spam-or-not, while regression predicts a continuous number like tomorrow's temperature.

How much math do I really need for machine learning?

Mostly linear algebra, calculus, and probability/statistics — enough to grasp vectors, gradients, and distributions; you can begin applied work with the basics.

What is transfer learning?

Reusing a model trained on a large dataset as a starting point for a related task, so you need far less data and compute.

Why are GPUs used for deep learning?

A GPU does thousands of simple calculations in parallel, which matches the massive matrix math neural networks rely on.

What does it mean when a model has billions of parameters?

Parameters are the adjustable numbers a model learns; more of them can capture more patterns but demand much more data and compute.

Quantum Mechanics

What is quantum superposition, really?

A quantum system can exist in a combination of states at once; until measured, its properties are described by probability amplitudes rather than a single definite value.

The key subtlety: it's not that we just don't know the value — the value genuinely isn't decided until measurement.

What does Heisenberg's uncertainty principle actually say?

You can't know certain paired properties like position and momentum with arbitrary precision at once; sharpening one fundamentally blurs the other.

How does quantum entanglement work without faster-than-light signaling?

Entangled particles share correlated outcomes, but because each local result looks random on its own, no usable information actually travels faster than light.

Einstein hated this and called it 'spooky action at a distance' — yet experiments keep confirming it.

What is wave-particle duality?

Quantum objects show wave-like behavior such as interference and particle-like behavior such as discrete hits, depending on how you observe them.

Does consciousness cause the wavefunction to collapse?

No; measurement disturbs a quantum system because it physically interacts with it, and 'observer' just means a measuring interaction, not a mind.

Why is quantum computing potentially so powerful?

Qubits use superposition and entanglement to explore many possibilities at once, giving large speedups for specific problems like factoring and simulation.

What is quantum tunneling?

A particle can pass through an energy barrier it classically shouldn't, because its wavefunction has nonzero probability on the far side — enabling fusion and transistors.

What's the difference between the Copenhagen and many-worlds interpretations?

Copenhagen says measurement collapses the wavefunction to one outcome, while many-worlds says every outcome happens in branching parallel realities.

Why can't we copy an unknown quantum state?

The no-cloning theorem forbids making an identical copy of an unknown quantum state, which is exactly what makes quantum cryptography secure.

What is a wavefunction?

It's the mathematical object encoding everything knowable about a quantum system, and its squared magnitude gives the probability of each measurement outcome.

How could quantum machine learning beat classical ML?

By encoding data into quantum states it could explore certain high-dimensional patterns more efficiently, though a practical advantage is still being researched.

What is decoherence and why does it ruin quantum computers?

Interaction with the environment leaks a system's quantum information, collapsing superpositions into ordinary behavior — the main obstacle to stable qubits.

Is quantum randomness truly random or just hidden variables?

Bell-test experiments rule out local hidden variables, strongly suggesting quantum randomness is fundamental rather than just our ignorance.

What does quantization mean in quantum mechanics?

Certain quantities, like an electron's energy in an atom, can only take discrete values instead of a continuous range.

Can quantum entanglement be used to communicate faster than light?

No — measuring one particle gives a random local result, so you can't send a chosen message; you still need a normal channel to compare notes.

What is Schrödinger's cat actually about?

It's a thought experiment showing how strange it is to scale superposition up to everyday objects — the cat is 'both alive and dead' only until observed.

What is a qubit?

The quantum version of a bit; instead of only 0 or 1 it can be a superposition of both, which is what gives quantum computers their power.

Do quantum effects matter in everyday life?

Yes — lasers, transistors, MRI machines, and LEDs all rely on quantum behavior, even though large objects act classically.

What is the double-slit experiment?

Sending particles one at a time through two slits still builds an interference pattern, showing each particle behaves like a wave until measured.

What is quantum field theory in simple terms?

It treats particles as ripples in underlying fields that fill all of space, unifying quantum mechanics with special relativity.

Why is quantum mechanics so hard to understand?

Its rules — superposition, randomness, entanglement — contradict intuition built from large classical objects, even though the math itself is precise.

What is spin in quantum mechanics?

An intrinsic, quantized form of angular momentum particles carry; it isn't literal spinning but behaves like a tiny built-in magnet.

What does 'collapse of the wavefunction' mean?

When measured, a system's spread of possibilities resolves into one definite outcome, with probabilities set by the wavefunction.

Is everything made of waves or particles?

Both descriptions are limits of the same underlying quantum object; which one you see depends on the experiment you run.

What is quantum supremacy or quantum advantage?

The point where a quantum computer solves a specific problem faster than any classical computer could in a reasonable time.

Classical Physics

Why does a heavier object fall at the same rate as a lighter one?

Gravity's pull grows with mass, but so does inertia, the resistance to acceleration; the two cancel, so everything accelerates equally in a vacuum.

Galileo is said to have tested this at Pisa, and Apollo 15 later dropped a hammer and a feather on the airless Moon — they hit the ground together.

What's the real difference between mass and weight?

Mass is the amount of matter and is constant everywhere, while weight is the gravitational force on that mass and changes with local gravity.

How does a projectile's range depend on launch angle?

Ignoring air, range is greatest at 45 degrees; horizontal and vertical motions are independent, with gravity affecting only the vertical part.

What is the difference between energy and momentum?

Momentum is mass times velocity, a vector conserved in all collisions, while kinetic energy is a scalar that's only conserved in elastic ones.

Why do you feel pushed outward on a merry-go-round?

There's no real outward force; your body's inertia wants to go straight while the ride pulls you inward, and that mismatch feels like a push outward.

What does Newton's third law really mean?

Forces come in pairs, so if A pushes B then B pushes A equally and oppositely, but the two act on different objects so they don't cancel.

Why does a spinning skater speed up when pulling their arms in?

Conservation of angular momentum: reducing their moment of inertia must increase spin rate to keep total angular momentum constant.

What is friction and why does it generate heat?

Friction resists sliding surfaces, and the microscopic bonds that repeatedly form and break convert kinetic energy into thermal energy.

How does a lever let you lift heavy things?

It trades distance for force: moving a long arm a large distance produces a large force over a short distance at the load, conserving total work.

If energy is conserved, why do we say it gets used up?

It changes form rather than vanishing, from chemical to kinetic to heat; 'using' energy really means degrading it into less useful forms.

What keeps the Moon or a satellite in orbit?

Gravity constantly pulls it toward Earth while its sideways speed carries it forward, so it's perpetually falling but always missing the ground.

What is terminal velocity?

The steady speed a falling object reaches when air resistance exactly balances gravity, so net force and acceleration drop to zero.

Why does pressure increase as you go deeper underwater?

The weight of the water above you grows with depth, pressing harder, so pressure rises about one atmosphere every ten meters.

How does a gyroscope stay upright?

Its spinning angular momentum resists changes in orientation, so an external torque causes slow precession instead of toppling it over.

What is inertia?

An object's resistance to changes in its motion; more mass means more inertia, which is exactly what Newton's first law describes.

What's the difference between speed and velocity?

Speed is just how fast you're going, while velocity is speed with a direction, so it changes when you turn even at constant speed.

Why does a ball thrown straight up return at the same speed?

Ignoring air, gravity removes speed on the way up and adds the same amount on the way down, so it comes back at equal speed.

What is the difference between potential and kinetic energy?

Kinetic energy is the energy of motion (½mv²), while potential energy is stored energy of position, like a raised weight ready to fall.

Why do astronauts float if gravity still acts on them in orbit?

They're in free fall around the Earth along with their ship, so nothing presses up on them — that's the weightless feeling.

What is centripetal force?

The inward force that keeps something moving in a circle; for a turning car it's friction, and for the Moon it's gravity.

What is the work-energy theorem?

The net work done on an object equals its change in kinetic energy, linking force-over-distance directly to speed.

Why is ice so slippery?

A thin, low-friction layer at the surface means your foot's sideways push isn't resisted, so it slides out from under you.

How do car brakes stop a car using physics?

They convert the car's kinetic energy into heat through friction between the pads and discs until the car stops.

What is resonance?

Pushing a system at its natural frequency makes energy build up dramatically — how a swing goes higher, or a bridge can sway dangerously.

Why does a heavier truck need a longer distance to stop?

More mass means more kinetic energy and momentum, so the brakes must do more work over a longer distance to bring it to rest.

Mathematical Discussions

What is a derivative actually measuring?

The instantaneous rate of change of a function — the slope of its tangent line at a point, just like speed is the derivative of position.

What's the intuition behind an integral?

It accumulates infinitely many tiny pieces, most concretely the area under a curve, and it's the reverse operation of differentiation.

Why is the number e so important?

e is the base at which a quantity's growth rate equals its current value, which makes it the natural choice for growth, decay, and calculus.

What does a determinant of zero mean for a matrix?

It means the matrix squashes space into a lower dimension, so it isn't invertible and its columns are linearly dependent.

What's the difference between permutations and combinations?

Permutations count ordered arrangements, while combinations count selections where the order doesn't matter.

Why does 0.999... equal exactly 1?

They are two names for the same number; their difference is smaller than any positive value, hence zero.

Try it: 1/3 = 0.333..., so 3 × 0.333... = 0.999... = 1. No trick — just two names for one number.

What is an eigenvector in plain language?

A direction a transformation only stretches or shrinks without rotating, and the eigenvalue is how much it scales along that direction.

What does the central limit theorem tell us?

Averages of many independent samples tend toward a normal bell curve regardless of the original distribution, which is why bell curves appear everywhere.

Why can't you divide by zero?

Division asks what times the divisor gives the numerator, but with zero there's either no answer or infinitely many, so it's left undefined.

Also because calculators rage-quit and the universe filed a formal complaint. 🙅

What is the difference between correlation and causation?

Correlation means two things move together, while causation means one drives the other; correlation can come from coincidence or a hidden common cause.

What are imaginary numbers used for?

The unit i, the square root of minus one, extends numbers to the complex plane and is essential in signal processing, quantum mechanics, and solving equations with no real roots.

What does it mean for a series to converge?

Its partial sums approach a finite limit as you keep adding terms, instead of growing without bound.

Why is the Pythagorean theorem true?

It follows from how areas rearrange around a right triangle; many proofs show that a² + b² fills the same area as c².

What is a limit in calculus?

The value a function approaches as its input approaches some point, and it's the rigorous foundation underneath derivatives and integrals.

What is calculus actually used for in real life?

Anywhere things change — physics, engineering, economics, machine learning, medicine — to model rates of change and accumulate quantities.

What's the difference between algebra and calculus?

Algebra solves for unknowns in static relationships, while calculus studies how quantities change and accumulate.

What is a logarithm and why is it useful?

A logarithm answers 'what power gives this number?'; it turns multiplication into addition and tames huge ranges like sound (decibels) and earthquakes.

What's the difference between probability and statistics?

Probability predicts outcomes from a known model, while statistics infers the model from observed data — opposite directions of the same coin.

Why is pi (π) so important?

It's the ratio of any circle's circumference to its diameter and shows up everywhere circles, waves, and oscillations appear.

What does standard deviation actually tell you?

How spread out data is around the average; small means tightly clustered, large means widely scattered.

What is a function in math?

A rule that assigns exactly one output to each input — like a machine that takes a number and reliably returns another.

What's the difference between mean, median, and mode?

Mean is the average, median is the middle value, and mode is the most frequent; they summarize data differently and handle outliers differently.

What is matrix multiplication used for?

It composes transformations and underlies computer graphics, machine learning, and solving systems of equations efficiently.

What does it mean for two events to be independent?

One happening doesn't change the probability of the other, so their combined probability is just the product of each.

What is a prime number and why do primes matter?

A whole number above 1 divisible only by 1 and itself; primes are the building blocks of integers and secure modern encryption.

Have a question that isn't here? Ask it on the forum →