Artifact A Artifact B Artifact C

ISU Artifact - Part C

Use the links below to jump to different sections of the webpage

Introduction: Budgets

A budget is a personal financial plan used to manage income and expenses over a set period of time.

Here are some concepts that are important to a Budget:

  1. Fixed V.S Variable Expense

    • Fixed expenses: Costs that remain constant --- Variable expenses: Costs that vary

  2. Non-discretionary V.S Discretionary Expense
    • Non-discretionary expenses: Essential => Basic needs
    • Discretionary expenses: Wants, and are not mandatory.

  3. Gross V.S Net Income
    • Gross income: What is earn before taxes, benefits and other payroll deductions
    • Net income: The actual take-home pay after all withholdings

    Practice with this mini quiz on the 6 terms important to a budget

    __________________________________________________________________________________________________________________________

  4. Example: Calculate Provincial and Federal tax
    • An example of a major deduction from your gross income to net income
      Here's how you calculate it:

    1. Calculate the Sum of Taxes you owe
      • Take a look at the chart to the right => For each interval you are eligible, you are required
        to apply the rate for each taxable income and deduct it.

      • In a progressive tax system your income tax is cumulative

    Use this python code to calculate tax to get an estimate from gross to net income

    2024 Federal Income Tax Brackets and Rates
    Tax Rate Income Bracket
    15% $53,359 or less
    20.5% $53,359.01 to $106,717
    26% $106,717.01 to $165,430
    29% $165,430.01 to $235,675
    33% More than $235,675.01
    2024 Ontario Income Tax Brackets and Rates
    Tax Rate Income Bracket
    5.05% First $49,231
    9.15% Over $49,231 up to $98,463
    11.16% Over $98,463 up to $150,000
    12.16% Over $150,000 up to $220,000
    13.16% Over $220,000

Appreciation and Depreciation with Percentages

Appreciation and Depreciation describe the change of an asset's value over a period of time

  1. Definitions
    • Appreciation: Rise in value of an asset --- Depreciation: Reduces the value overtime

  2. Formulas for the Functions
    1. For both
      • Linear growth: f(x) = mx+b
      • Exponential growth: f(x) = a(1+r)^x
    2. Differences:
      • Appreciation => m > 1 & 1+r > 1.
      • Depreciation => m < 1 & 1+r < 1.

  3. Application with Percentages
    • In real life situations (e.g. Interest), the rate is given in a percentage per unit of time
    • Calculations require percentages to be converted into decimals

Practice:

  1. What details can you read from this graph:

Click here to start

Interest and Borrowing with Rates

Interest is the monetary charge for borrowing money. They two types include:

Simple Interest:

  • Calculated only on the principal amount each period
  • Formula: I=p*r*t
  • An example of Linear growth appreciation
  • Doesn't accumulate as quickly

Compound Interest:


How to Use Proportions for Budgeting

Proportions can be used to solve problems involving rates and percentages

  1. Definitions
    • Unit Rate: A ratio with a denominator as one
    • Proportion: Equation in which two ratios are set equal to other

  2. Application of Unit Rates in Budgeting
    • When given two ratios, convert both to unit rates and compare the numerator.
    • For example, if you were given two rates for product in $/g, you could convert both to # of dollars for each gram.

  3. Unit Rate Calculator

Interactive code with Budgeting

Now you can view this concepts incorporated in a summative code I have created in Python!

Click on this link to view the code for the calculator

Description:

Budgeting Calculator that organizes the user's inputs based on their expenses.

The program used code from both the interest and gross => net income calcultors' already shown on this website