Files
lucidia-math/lab/trinary_operators.json
Alexa Louise f5f1551964 Initial extraction from blackroad-prism-console
Lucidia Math - Advanced mathematical engines:

forge/ - Mathematical Foundations:
- consciousness.py (650 lines) - Consciousness modeling
- unified_geometry.py (402 lines) - Geometric transformations
- advanced_tools.py (356 lines) - Advanced utilities
- main.py (209 lines) - CLI orchestration
- numbers.py, proofs.py, fractals.py, dimensions.py

lab/ - Experimental Mathematics:
- unified_geometry_engine.py (492 lines) - Geometry engine
- amundson_equations.py (284 lines) - Custom equations
- iterative_math_build.py (198 lines) - Iterative construction
- trinary_logic.py (111 lines) - Three-valued logic
- prime_explorer.py (108 lines) - Prime exploration
- quantum_finance.py (83 lines) - Quantum finance models

3,664 lines of Python.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 08:43:07 -06:00

23 lines
436 B
JSON

{
"AND": {
"-1": {"-1": -1, "0": -1, "1": -1},
"0": {"-1": -1, "0": 0, "1": 0},
"1": {"-1": -1, "0": 0, "1": 1}
},
"OR": {
"-1": {"-1": -1, "0": 0, "1": 1},
"0": {"-1": 0, "0": 0, "1": 1},
"1": {"-1": 1, "0": 1, "1": 1}
},
"XOR": {
"-1": {"-1": -1, "0": 1, "1": 0},
"0": {"-1": 1, "0": 0, "1": -1},
"1": {"-1": 0, "0": -1, "1": 1}
},
"NOT": {
"-1": 1,
"0": 0,
"1": -1
}
}