Artificial Intelligence & Neural Networks β Introduction to AI and Intelligent Agent, NEC licence examination syllabus (Nepal Engineering Council).
Applications of AI
Where it actually works, where it fails, and how to tell in advance.
π Where this lives: the most valuable professional skill around AI is not building models but judging which problems are suited to it. A great many expensive failures were technically competent systems applied to problems where the approach could not work β no reliable data, no measurable objective, or a cost of error the accuracy could never justify. The checklist at the end of this topic is worth more in practice than any algorithm in the syllabus. Search "why machine learning projects fail problem selection".
The application areas
BY DOMAIN, with what the AI actually does in each:
HEALTHCARE
medical IMAGE INTERPRETATION β tumours in radiology,
diabetic retinopathy in retinal photographs; matches or
exceeds specialist accuracy on narrow, well-defined tasks
DIAGNOSIS SUPPORT from symptoms and history
DRUG DISCOVERY β predicting protein structure and candidate
molecules; AlphaFold's protein-structure predictions are
the standout scientific result
patient TRIAGE and readmission-risk prediction
NOTE THE PATTERN: AI does the perceptual and statistical
part, and a clinician retains the decision β because the
cost of an error is high and accountability must rest with
a person.
TRANSPORT
autonomous and driver-assist systems β perception,
localisation, path planning, control
ROUTE OPTIMISATION and traffic-signal control (the real-time
example from the multiprocessor topic)
predictive maintenance from sensor data
FINANCE
FRAUD DETECTION β the archetypal successful application,
because there is abundant labelled data, a clear
objective, and errors are recoverable
credit scoring Β· algorithmic trading Β· anti-money-laundering
REGULATORY CONSTRAINT: in many jurisdictions a declined
credit application must be explainable, which rules out
opaque models regardless of their accuracy
NATURAL LANGUAGE
machine translation Β· speech recognition and synthesis Β·
summarisation Β· question answering Β· sentiment analysis Β·
conversational assistants
VISION
face recognition Β· object detection Β· optical character
recognition Β· industrial quality inspection Β· satellite and
agricultural imagery
INDUSTRY AND AGRICULTURE
visual defect inspection on production lines Β· robotic
assembly Β· yield prediction Β· pest and disease detection
from leaf images Β· irrigation scheduling
β the agricultural applications matter particularly in
Nepal's context, where a phone camera plus a trained model
can substitute for scarce extension officers
GAMES β historically the field's proving ground
chess (Deep Blue, 1997) Β· Go (AlphaGo, 2016) Β· poker
(imperfect information) Β· real-time strategy
WHY GAMES: the rules are exact, the objective is
unambiguous, and progress is measurable β the properties
real problems usually lack.
EDUCATION
adaptive tutoring and spaced repetition Β· automated
marking Β· content recommendation
A STUDY TRACKER IS AN INSTANCE: scheduling revision by how
long ago a topic was ticked is the elementary form of the
spacing effect, and predicting which topics a student will
forget first is a genuine machine-learning problem.
EXPERT SYSTEMS AND OPERATIONS
diagnosis and configuration (ACtE0904) Β· scheduling Β·
resource allocation Β· anomaly detection in infrastructure
Judging whether AI fits a problem
THE CHECKLIST. A problem is a good candidate when it satisfies
most of these, and the failures in practice are almost always a
missing item rather than a weak algorithm.
1. IS THERE A CLEAR, MEASURABLE OBJECTIVE?
"Reduce fraudulent claims" is measurable. "Improve customer
happiness" is not, until someone defines a proxy β and the
choice of proxy then determines what the system optimises,
including its unintended behaviour.
2. IS THERE ENOUGH RELEVANT DATA, AND IS IT LABELLED?
Supervised learning needs examples WITH ANSWERS. The usual
blocker is not volume but labels: a hospital may have a
million scans and no reliable record of which showed disease.
3. IS THE FUTURE LIKE THE PAST?
A learned model assumes the distribution it was trained on
continues to hold. Where behaviour shifts β a new fraud
technique, a pandemic, a changed regulation β the model
degrades. This is DISTRIBUTION SHIFT, and it is why deployed
models need monitoring and retraining rather than one-time
delivery.
4. IS THE COST OF AN ERROR TOLERABLE, AND IS THE ERROR
RECOVERABLE?
A wrong film recommendation costs nothing. A wrong braking
decision is unrecoverable. THIS ONE DECIDES THE ARCHITECTURE:
high-cost irreversible decisions need a human in the loop, a
conservative default, or both.
5. CAN THE SYSTEM'S DECISIONS BE EXPLAINED, IF THEY MUST BE?
Where law or professional duty requires a reason, an
unexplainable model is unusable however accurate.
6. IS A SIMPLE RULE GOOD ENOUGH?
THE MOST NEGLECTED QUESTION. If a hand-written rule achieves
90% of the benefit, it is usually the right answer: no
training data, no drift, no infrastructure, and it can be
read and audited.
A WORKED COST CALCULATION β why accuracy alone never settles it.
A fraud detector on 200,000 claims a year, 1% genuinely
fraudulent (2,000 cases), average fraud loss NPR 40,000.
The model has 95% recall and 90% precision.
true positives = 2,000 Γ 0.95 = 1,900 caught
false negatives = 2,000 β 1,900 = 100 missed
false positives: at 90% precision, of every 100 flagged, 10
are innocent. Flagged total = 1,900 / 0.90 = 2,111,
so false positives = 2,111 β 1,900 = 211
VALUE OF FRAUD CAUGHT 1,900 Γ 40,000 = NPR 76,000,000
LOSS STILL INCURRED 100 Γ 40,000 = NPR 4,000,000
COST OF INVESTIGATING FALSE ALARMS
211 Γ 2 hours Γ NPR 500/hour = NPR 211,000
NET BENEFIT β 76,000,000 β 211,000 = NPR 75.8 million
THE MODEL IS CLEARLY WORTH DEPLOYING. NOW CHANGE ONE NUMBER:
suppose a false positive means a legitimate applicant is
refused and complains publicly, at a reputational and
remediation cost of NPR 100,000 each:
211 Γ 100,000 = NPR 21,100,000
net benefit falls to β NPR 54.9 million β still positive.
AND AT 60% PRECISION instead of 90%:
flagged = 1,900/0.60 = 3,167, false positives = 1,267
1,267 Γ 100,000 = NPR 126,700,000
NET BENEFIT IS NOW NEGATIVE (βNPR 50.7 million).
THE LESSON: THE SAME RECALL WITH DIFFERENT PRECISION FLIPS THE
DECISION, and which metric matters depends entirely on the
relative cost of the two error types. A model reported as
"95% accurate" tells you almost nothing without the confusion
matrix and the costs.
THE BASE RATE TRAP, which the above quietly contains: with only
1% fraud, a model that flags NOTHING is 99% accurate. ACCURACY
IS A USELESS METRIC ON IMBALANCED DATA β a point that returns
in the machine learning section.
Limitations and risks
WHAT CURRENT AI DOES BADLY β stated honestly, because a graduate
who can name these is more useful than one who cannot:
COMMON SENSE AND CAUSATION
Systems learn CORRELATION. They do not, by default, know
that pushing a glass causes it to fall, and they cannot
reason about what would have happened otherwise.
BRITTLENESS OUTSIDE THE TRAINING DISTRIBUTION
Performance can collapse on inputs that look trivially
different to a human. ADVERSARIAL EXAMPLES β imperceptible
pixel changes that flip a classification β demonstrate that
the learned function is not the one we assumed.
EXPLAINABILITY
Large models cannot say why. Post-hoc explanation techniques
give plausible accounts that are not guaranteed faithful to
the actual computation.
DATA HUNGER AND COST
Training large models requires data and computation on a
scale that concentrates capability in a few organisations.
CONFIDENT ERROR
A model's confidence is not calibrated to its correctness.
Language models produce fluent false statements
("hallucination"), and fluency is exactly what makes the
errors hard to notice.
THE RISKS THAT ARE PROFESSIONAL RESPONSIBILITIES, not
philosophical speculation:
BIAS AND FAIRNESS
A model trained on historical decisions reproduces the
historical pattern, including its discrimination. If past
lending favoured one group, a model trained on it will too β
and will do so consistently, at scale, and with the
appearance of objectivity. THE APPEARANCE OF OBJECTIVITY IS
THE HARM: a biased human can be argued with, while "the
system decided" ends the conversation.
MITIGATION: audit outcomes by group, not just overall
accuracy; examine what the training data represents;
document the intended use.
PRIVACY
Models can memorise and reveal training data; aggregated
data can re-identify individuals.
AUTOMATION AND WORK
Task automation displaces specific tasks rather than whole
jobs, but the distribution of who gains and loses is a real
social question rather than a technical one.
ACCOUNTABILITY
When an automated decision harms someone, who is
responsible? "The model" is not an answer a legal system
accepts, and designing for accountability means keeping a
human decision point where consequences are serious.
SECURITY
models can be attacked β poisoned training data, adversarial
inputs, prompt injection, model extraction
THE PROFESSIONAL POSITION WORTH ADOPTING: an engineer building
these systems is responsible for asking whether the problem
should be solved this way, not only whether it can be. That is
the same obligation the software engineering unit's
requirements-validation activity describes β checking you are
building the right thing β and it applies with more force when
the system's decisions affect people who never agreed to be
measured by it.
Question 6 β "is a simple rule good enough?" β is the one that saves the most money and gets asked the least. A hand-written rule achieving 90% of the benefit needs no training data, does not drift, can be read and audited, and takes an afternoon. Reaching for a model before answering it is how projects acquire infrastructure they did not need.
π Go further: the industry's response to the accountability problem is documentation as a deliverable. Model cards state a model's intended use, its training data, its measured performance broken down by subgroup, and its known limitations; datasheets for datasets do the same for the data β who collected it, how, with what consent, and what it does not represent. The point is to make the limitations discoverable by whoever deploys the model later, rather than living only in the heads of the team that built it. It is the same argument as the SRS: writing it down is what makes the assumptions checkable. Search "model cards for model reporting datasheets for datasets".
π‘ Exam angle: list application areas with a concrete example in each β healthcare, transport, finance, NLP, vision, agriculture/industry, games, education, expert systems. Explain why games were the field's proving ground (exact rules, unambiguous objective, measurable progress). Be ready to discuss limitations β lack of common sense and causal reasoning, brittleness and adversarial examples, poor explainability, data hunger, confident error β and the risks: bias, privacy, employment, accountability, security. The strongest answer notes that accuracy is meaningless on imbalanced data and that the relative cost of the two error types decides whether a model is worth deploying.
Syllabus points
Major application areas
Create a free account to tick topics off, take notes as you read, watch the video lessons and get a day-by-day study plan built around your exam date.
Related topics in Introduction to AI and Intelligent Agent