Financial Accounting and Reporting Principles

Financial Accounting Principles

  1. Declaration of cash dividends increases total liabilities. ANSWER: True
  2. Payment of cash dividends decreases total assets and total equity. ANSWER: False
  3. The cumulative effect of the declaration and payment of a cash dividend will decrease total assets and shareholders’ equity on a company’s financial statements. ANSWER: True
  4. Short-term debt which is expected to be refinanced might not be classified as a current liability. ANSWER: True
  5. Accumulated depreciation is a contra-
Read More

All gust lines in the V-n graph originate from a point where the

  1. Fractions
    Add/subtract: make the bottom number the same first
    Multiply: top × top, bottom × bottom
    Divide: keep, change, flip

Example:
1/2 + 1/4 = 2/4 + 1/4 = 3/4
2/3 × 4/5 = 8/15
2/3 ÷ 4/5 = 2/3 × 5/4 = 5/6

  1. Sig fig and decimal places
    Decimal places: count digits after the decimal point
    Significant figures: start at first non-zero digit
    If next digit is 5 or more, round up

Example:
3.456 to 2 decimal places = 3.46
0.00456 to 2 sig fig = 0.0046

  1. Factorization
    Common factor: take out the biggest factor
    Quadratic:
Read More

Predictive Sales Analytics and Data Visualization

Predictive Analytics on Product Sales Data

This section demonstrates how to perform predictive analytics on product sales data using Python libraries such as Pandas, NumPy, and Scikit-learn.

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

from sklearn.model_selection import train_test_split
from sklearn.linear_model import LinearRegression
from sklearn.metrics import mean_squared_error, r2_score

# Sample product sales data
data = {
    'Month': pd.date_range(start='2022-01-
Read More

Essential Concepts in Economics, Budgeting, and Statistics

Zero-Based Budgeting

Zero-based budgeting is a method in which all expenses must be justified for each new period. The budget starts at a zero base, and every function within the organization is analyzed for its needs and costs. Therefore, budgets are built based on what is required for the upcoming period, regardless of the previous budget size.

Taxes

Taxes are a compulsory contribution to state revenue. It is mandatory to pay taxes, which are levied by the government on workers’ income and business

Read More

Essential Geometry Theorems and Properties

Quadrilaterals

  • The sum of the interior angles of a quadrilateral is 360°.
  • Properties of a parallelogram:
    • Opposite sides are equal.
    • Opposite angles are equal.
    • Consecutive angles are supplementary (sum = 180°).
    • Diagonals bisect each other.
    • A diagonal divides it into two congruent triangles.
  • Conditions for a parallelogram:
    • Both pairs of opposite sides are equal.
    • Both pairs of opposite angles are equal.
    • Diagonals bisect each other.
    • One pair of opposite sides is equal and parallel.
  • Mid-Point Theorem: The line segment
Read More

Solving Polynomial Equations: Descartes and Cardan Methods

1. Nature of Roots: Descartes’s Rule of Signs

Find the nature of the roots for the equation: x⁴ + 2x² + 3x – 2 = 0

Applying Descartes’ Rule of Signs

Given the function: f(x) = x⁴ + 2x² + 3x – 2

Signs of coefficients: +, +, +, –

Count sign changes:

  • + to + (No change)
  • + to + (No change)
  • + to – (1 change)

Therefore, there is exactly one positive real root.

Replace x with -x:

f(-x) = (-x)⁴ + 2(-x)² + 3(-x) – 2 = x⁴ + 2x² – 3x – 2

Signs: +, +, -, –

Count sign changes:

  • + to + (No change)
  • + to – (1 change)
Read More