Prepstellar

AIF-C01 · AI Use Cases and Services

19 cards

AI Business Value and Boundaries

Swipe, scroll or use ← →
  1. Decide what the business is actually buying

    Before anyone argues about algorithms, a project needs a plain answer to a plainer question: what does the model change about the work? Three answers are worth separating, because each one implies a different owner, a different requirement and a different way of being wrong.

    The first is decision assistance. AI and ML can assist human decision making by finding patterns in data and producing predictions that people use as evidence. The model supports the decision; the business process still determines who reviews the prediction and who is accountable for the action.

    This pattern fits tasks such as risk scoring, anomaly review, demand planning, and medical diagnosis support. In all of them the prediction is an input to a judgement, not the judgement itself.

    1 / 19
  2. Decide what the business is actually buying

    The second is reach. AI and ML can provide solution scalability when a learned pattern must be applied consistently across a volume of inputs that is difficult to review manually. Common scalable workloads include content analysis, recommendations, fraud detection, and image classification.

    Read that carefully, because it is easy to over-claim. Scalability is a value category, not a guarantee that every ML workload will be cheaper or more accurate. It says the same learned capability can be applied to a million items as easily as to a hundred; it says nothing about the quality or the price of each of those million answers.

    Value What it buys Who acts next
    Decision assistance Evidence for a judgement A person
    Scalability The same capability across many inputs The system, on every item
    2 / 19
  3. Quick check

    A risk score is calculated for each case and shown to an investigator, who makes the final call. Which value category is that?

    1. AGuaranteeing a prescribed result with fixed rules

      A guaranteed prescribed result comes from deterministic logic, not from a prediction offered to a reviewer.

    2. BAssisting a human decision with predictive evidence

      Right. The prediction is used as evidence while the investigator keeps the decision and the accountability.

    3. CScaling identical manual reviews with no learned pattern

      Adding more manual review is not a learned pattern, and it is not what a risk score contributes here.

    3 / 19

  4. Automate a repeatable step

    The third value is automation. AI and ML can automate a repeatable prediction or recognition step inside a larger workflow. Examples include flagging a suspicious transaction, classifying an image, or producing a forecast.

    Automation does not mean the people disappear. Automation may remove repetitive analysis while still routing uncertain or consequential cases to people. The model handles the part that repeats identically thousands of times; the workflow keeps an exit for the cases where being wrong is expensive.

    A useful test: if the next step happens because a model produced an output, that step is automated. If the next step happens because a person read the output and decided, that is assistance.

    4 / 19
  5. Quick check

    Which of these is automation by AI or ML rather than ordinary programmed logic?

    1. ARouting a transaction that a model flags as suspicious

      Right. A recognition step produces the flag and the workflow acts on it without waiting for a human reading.

    2. BCalculating tax from a complete table of statutory rates

      A statutory rate table already specifies the correct figure, so this is fixed logic rather than a learned prediction.

    3. CShowing every transaction to an analyst with no prediction

      Sending everything to a person adds no model output at all, so no prediction step has been automated.

    5 / 19

  6. Tell the three apart

    The three categories overlap in practice, which is exactly why the requirement has to name one. Decision assistance supplies evidence to a person, scalability applies a capability across many inputs, and automation lets a workflow act on a model output.

    One application can deliver more than one category of value, but the requirement should state which outcome matters. A fraud score can assist an investigator, scale screening across transactions, and trigger an automated review queue — all at once, from a single model.

    Question to ask If the answer is yes
    Does a person weigh the output before acting? Decision assistance
    Is the volume of inputs beyond manual review? Scalability
    Does the workflow move on the output by itself? Automation

    Naming the outcome that matters is what makes the project measurable later. "It will help" is not a target; "investigators reach a decision on the top-risk cases within a day" is.

    6 / 19
  7. Quick check

    What is the real difference between decision assistance and automation?

    1. AAssistance guarantees an answer, while automation creates uncertainty

      A prediction does not become a guarantee because a person reads it, and automation does not manufacture uncertainty.

    2. BAssistance handles volume, while automation cuts inputs

      Input volume is what scalability describes; it does not tell you who or what takes the next step.

    3. CAssistance informs a person, while automation lets a workflow act

      Right. The distinction is who acts on the output: a person weighing evidence, or the workflow itself.

    7 / 19

  8. Keep your progress in the app

    That’s 3 of 8 quick checks. In the app they stay answered, and every lesson remembers where you left off.

  9. Where the line with ordinary code sits

    Not every problem that involves data is a machine learning problem, and putting a model where a rule belongs is a design error rather than a small inefficiency. The first boundary check compares how the required behavior is produced.

    Traditional application workloads follow deterministic, step-by-step instructions, while ML workloads learn patterns from data through iterative cycles. If the required behavior can be expressed completely as stable rules and the same input must always produce a prescribed result, a deterministic implementation is the better fit.

    Signal in the requirement Points toward
    The steps that produce the answer are known and stable Deterministic code
    The answer must be identical every time for the same input Deterministic code
    The pattern is in the history and nobody can write it down Machine learning
    Some error rate is acceptable and measurable Machine learning
    8 / 19
  10. Quick check

    Which characteristic of a workload points toward deterministic application logic instead of ML?

    1. AHistorical data holds patterns that are useful for prediction

      Learning a pattern from history in order to predict is the machine learning side of the boundary.

    2. BInput data drifts, so accuracy has to be monitored over time

      Monitoring drifting data is an obligation that comes with ML; it is not evidence that fixed rules would fit.

    3. CStable, known steps already specify the required result in full

      Right. When stable step-by-step instructions fully express the required behavior, deterministic code is the better fit.

    9 / 19

  11. When the answer is already prescribed

    There is a stronger version of that boundary, and it is the one exam scenarios lean on. An AI or ML solution is not appropriate when the business requires a specific prescribed outcome rather than a prediction.

    The reason is about the type of result, not about accuracy. A model output represents learned evidence and can be wrong; it should not be presented as a guaranteed result. Even a model that is right 99.99 % of the time is still producing an estimate, and an estimate cannot stand in for a figure that law, contract or policy already defines.

    Use deterministic logic for an exact calculation, a fixed policy rule, or another requirement whose correct result is already fully specified.

    10 / 19
  12. When the answer is already prescribed

    Take a payroll system that must compute a legally prescribed deduction from a complete table of rates. The correct figure for any employee is already determined by the table, so there is nothing to learn and nothing to estimate. Training a model on past payslips would only reproduce the table imperfectly.

    Notice how the wrong answers to that scenario all quietly change the requirement:

    • Treating it as a recommendation invents a reviewer who could accept or reject a number that is not negotiable.
    • Treating it as segment discovery answers a question nobody asked about groups of employees.
    • Treating it as a forecast estimates a future amount when what is required is an exact current calculation.

    ML still has a place around such a system — detecting anomalous timesheets, for instance — but not in the calculation itself.

    11 / 19
  13. Quick check

    A payroll system must compute a legally prescribed deduction from a complete rate table. Why is ML the wrong core approach?

    1. AThe task is really a recommendation a reviewer may reject

      Nothing is being recommended here: the deduction is fixed by the rate table and is not open to acceptance or rejection.

    2. BThe rules already prescribe the exact result that is required

      Right. The correct output is already fully specified, so a prediction would supply the wrong type of result.

    3. CThe task is really a forecast of the next deduction from history

      Forecasting estimates a future value, while this requirement is an exact calculation for the current period.

    12 / 19

  14. Weigh the whole lifecycle

    The second boundary check is economic, and it is the one that gets skipped. A cost-benefit analysis compares the expected business benefit with the cost and risk of building, operating, monitoring, and improving the ML workload.

    All four of those verbs matter. A model is not a purchase, it is a tenancy: ML depends on high-quality input data, and evolving data requires monitoring and may require retraining.

    Stage What it keeps costing
    Building Data collection, labelling, preparation, training runs
    Operating Serving infrastructure, integration, support
    Monitoring Watching accuracy as the input data changes
    Improving Retraining and re-validating when it drifts
    13 / 19
  15. Weigh the whole lifecycle

    So feasibility and appropriateness are different verdicts. If the expected benefit does not justify those continuing obligations, the ML solution is not appropriate even when prediction is technically possible.

    "We could build it" is an engineering statement. "It is worth having built, run, watched and rebuilt for the next three years" is the business statement, and only the second one authorizes the project. A workload that produces a good prediction twice a year, for a decision worth very little, fails the second statement no matter how well the first one goes.

    The counts that sometimes appear in proposals — how many features the model has, how many labels, how many training records, how many Regions it deploys to — describe the build. None of them compares value with lifecycle burden.

    14 / 19
  16. Quick check

    What actually belongs in the cost-benefit assessment of a proposed ML workload?

    1. AExpected value against build, operation, monitoring and improvement cost

      Right. The comparison weighs the expected business benefit against the full lifecycle cost and risk of the workload.

    2. BPrediction volume against the count of deterministic policy rules

      Counting inputs and rules describes the workload's size, not whether its value justifies what it will cost to keep running.

    3. CTraining records against the count of deployment Regions

      Record and Region counts are build details and say nothing about expected benefit or continuing obligations.

    15 / 19

  17. Two rejections, two different reasons

    Both checks can send a project away, but they answer different questions and they are not interchangeable. The two boundary tests answer different questions: cost-benefit asks whether prediction is worth its lifecycle burden, while the specific-outcome test asks whether prediction is the right type of result at all.

    The order matters. A project fails the second test before model economics matter when the output must be exact and prescribed — there is no point pricing a model for a job that no model should do. And the reverse case is common too: a genuine prediction problem can still fail the first test when its expected value is too low.

    Test Question Typical verdict
    Required outcome Is a prediction even the right kind of answer? Use deterministic rules instead
    Cost-benefit Is this prediction worth its lifecycle? Right idea, not worth the money
    16 / 19
  18. Quick check

    A decision comes up rarely and is worth little, yet its model would need costly data preparation, monitoring and retraining. Which test rejects it?

    1. AThe scalability test, because high volume always costs little

      Scale is a value category rather than a test, and applying a model widely never guarantees that it is cheap.

    2. BThe cost-benefit test: lifecycle burden outweighs value

      Right. The output would be a genuine prediction, but its expected value does not justify the continuing obligations.

    3. CThe automation test, because predictions never trigger steps

      Model outputs certainly can trigger workflow steps, so that is not the reason this proposal falls over.

    17 / 19

  19. Key takeaways

    • Name the value first. AI and ML can assist decisions, scale analysis, or automate a prediction step, and one application can deliver several of these at once.
    • Assistance, scale and automation differ by who acts. A person weighs evidence, a capability covers many inputs, a workflow moves on the output.
    • Deterministic rules fit a required prescribed outcome; ML fits learning patterns to produce predictions. A model output is evidence and can be wrong.
    • Reject an ML approach when its expected benefit does not justify its lifecycle cost and risk, including data quality, monitoring and retraining.
    • Cost-benefit and required-outcome checks test different reasons that ML may be inappropriate, so run both and in that order.
    18 / 19
  20. Quick check

    A fraud model scores millions of payments, sends uncertain cases to investigators, and opens review tickets for the highest-risk scores. Which reading of it is sound?

    1. AIt is a prescribed outcome, since investigators review the cases

      Human review makes the score decision evidence rather than a prescribed result, and the other value categories are still present.

    2. BIt loses its scalability, since some cases go to a human

      Escalating a subset of cases does not undo the fact that the model is applied across millions of payments.

    3. CIt scales, assists investigators and automates review

      Right. A single application can deliver all three value categories, which is why the requirement has to name the one that matters.

    19 / 19

  21. 8 quick checks · then the test

    In the app, finishing the quick checks opens this lesson’s 10-question test, and the ones you miss come back exactly when you’re about to forget them.

The whole course, on your phone

Lessons you can read, audio you can listen to on the way to work, and practice that remembers what you got wrong.