Logical Reasoning

Explore rule-based symbolic deduction. Define a context and a set of rules, and let the AI determine the logical outcome.

Core Principle: The algorithm of symbolic deduction: What is decided is the what regardless of other whats available, based on what has been defined as what. Logic is not truth; it's validity within a chosen perspective (a vector plane).

Cognitive Architecture: A conclusion is reached by applying a set of rules (a defined perspective) to a given state. IF p (in this context) THEN q

Logic Engine

Mathematical Summation

The core logic of symbolic deduction.

State & Rule Definition

The current situation is defined as a state (p), and the rules are defined as a series of conditional statements that represent a specific perspective or 'vector plane'.

State -> p, Rules -> [IF p₁ THEN q₁, IF p₂ THEN q₂]

Rule Application

The engine evaluates if the current state (p) satisfies the condition of any rule within the defined perspective. If a match is found (p matches pᵢ), the corresponding consequence (qᵢ) is executed or returned as the conclusion.

IF p == pᵢ THEN qᵢ