Class InputOutputModel

java.lang.Object
org.episteme.social.economics.models.InputOutputModel

public final class InputOutputModel extends Object
Implements the Leontief Input-Output model to analyze inter-industry dependencies and production requirements.
Since:
1.0
Version:
1.1
Author:
Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
  • Method Details

    • solveTotalOutput

      public static Real[] solveTotalOutput(Real[][] technicalCoefficients, Real[] finalDemand)
      Solves for total sector output X given technical requirement matrix A and final demand D. X = (I - A)⁻¹ D
    • calculateLeontiefInverse

      public static Real[][] calculateLeontiefInverse(Real[][] a)
      Calculates the Leontief Inverse matrix.