From 163cfe6de0111be1ded543929a8f8ecd9efcd0ee Mon Sep 17 00:00:00 2001 From: Shchoholiev Date: Thu, 2 Dec 2021 14:39:07 +0200 Subject: [PATCH] on website --- Boolean-Algebra/favicon.png | Bin 0 -> 613 bytes Boolean-Algebra/index.html | 102 ++++++ Boolean-Algebra/script.js | 598 ++++++++++++++++++++++++++++++++++++ Set-Algebra/index.html | 2 +- img/favicon.png | Bin 0 -> 8939 bytes index.html | 4 +- 6 files changed, 703 insertions(+), 3 deletions(-) create mode 100644 Boolean-Algebra/favicon.png create mode 100644 Boolean-Algebra/index.html create mode 100644 Boolean-Algebra/script.js create mode 100644 img/favicon.png diff --git a/Boolean-Algebra/favicon.png b/Boolean-Algebra/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..7d3037e3f4a5e1f1115e4180530e1a461ebfa0cd GIT binary patch literal 613 zcmV-r0-F7aP)*fjtK|WJA%Hgi22%jN zS-&x_F!%$2Iv+eLD4g+gqOfUkp|1drYh1Ym@67s*v1a{8S4(k*S-)|qv^xiIBeAPw zGt~y)28<=yZrA81H|@^YG+j{=&owcfu}uKYfUU%AR|5{}&e&Vl$50tuQv6KYCui(U z-n+R307!5t(1j*AA%tbsdjLiN&YiKRS_1a~4z&chWm44FQ4&j~5BTUnMIcJz5gnAp zf_{QNLK)Z=^&UEaGJ31|gq#coQq3*tA6un?phzB5f_1jnE4GFeKcdgmGNH89b(RD8Bo(R%4_ z$0ckf-o?%{@Nc%@8>AhxBl_`aApN1JW6lHVv=t?B?iLkk#~q&MAv;}>;PT#+sNtqT zH8M71U*z@lb%+#4Nh}inR+fNAbLD%X_NqlD z0qVG5A72GkSKb*4A=Hdy|GLgttek`&AKgO)2He9IwO(dCZNFG->WH2|YyANWPc6@D zKE{Epr7^4ihQjO8pMbH_8`;h;r@OtL_Z#yMe + + + + + + + + Boolean Algebra Calculator + + + + + + + +
+ +
+ + +
+ +
+ +
+

Values

+
+
+

Value A =

+
+
+
+

Value B =

+
+
+
+ +
+ +
+

Formulua

+

+
+ + +
+
+
+

Result

+
+
+
+
Define variables then write the formula you need to solve
+
+
+
!
+
Negation
+
+
+
*
+
Conjunction
+
+
+
+
+
Disjunction
+
+
+
>
+
Implication
+
+
+
=
+
Equivalence
+
+
+
+
+ +
+
+

Step by step

+
+

1.

+
+
+
+
+
+ + + + + + + \ No newline at end of file diff --git a/Boolean-Algebra/script.js b/Boolean-Algebra/script.js new file mode 100644 index 0000000..cd69906 --- /dev/null +++ b/Boolean-Algebra/script.js @@ -0,0 +1,598 @@ +let maxNumOfValues = 26; +let currNumOfValues = 2; + +function AddValue() { + + if (currNumOfValues < 26) { + + let charNum = 65 + currNumOfValues; + currNumOfValues++; + + let delBtn = document.querySelectorAll('#delBtn'); + if (delBtn[delBtn.length - 1]) { + delBtn[delBtn.length - 1].style="display: none;"; + } + + node = document.getElementById('values'); + node.insertAdjacentHTML('beforeend', `
+

Value &#${charNum} =

+
+
`); + + } else { + alert('You have reached a limint of available values'); + } +} + +function DeleteValue(valNum) { + + let valueField = document.querySelector(`#valueField${valNum}`); + valueField.remove(); + currNumOfValues--; + + let delBtn = document.querySelectorAll('#delBtn'); + if (delBtn[delBtn.length - 1]) { + delBtn[delBtn.length - 1].style="display: inline-block;"; + } +} + + +let VALUES = new Set(); +let userValues = new Array(); + +function FetchValues() { + + userValues = new Array(); + + for (let i = 0; i < currNumOfValues; i++) { + + let inputField = document.getElementById(`value${i}`); + let currCharStr = String.fromCharCode(65 + i); + + if (inputField.value === '1' || inputField.value === 'true' || inputField.value === 'True'|| inputField.value === 'TRUE' || inputField.value === 't' || inputField.value === 'T') { + VALUES.add(currCharStr); + userValues.push([currCharStr, true]); + } else if (inputField.value === '0' || inputField.value === 'false' || inputField.value === 'False' || inputField.value === 'FALSE' || inputField.value === 'f' || inputField.value === 'F') { + VALUES.add(currCharStr); + userValues.push([currCharStr, false]); + } + } + + for (const iterator in VALUES) { + console.log(iterator, VALUES[iterator]); + } +} + +let stepByStep = false; + +function Evaluate() { + + FetchValues(); + + let formulaField = document.getElementById('formula'); + + let formulaChraArray = formulaField.value.split(''); + let formulaRPNArray = ConvertCharArrayToRPNArray(formulaChraArray); + let formulaValuesRPNArray = ConvertLettersToValues(formulaRPNArray); + + let result = SolveRPNFormula(formulaValuesRPNArray); + let readableResult = convertToReadableResult(result[0]); + + let resultField = document.getElementById('result'); + resultField.value = readableResult; + + + let stepsNode = document.querySelector('#stepsNode'); + let stepsWrapper = document.querySelector('#stepsWrapper'); + + stepsNode.classList.add('hide'); + stepsWrapper.querySelectorAll('#input-wrap').forEach((element) => { + element.remove(); + }); + + if (stepByStep) { + + stepsNode.classList.remove('hide'); + + let stepsActionsArray = StepByStepRPNFormula(formulaRPNArray); + let stepsResultsArray = result[1]; + + console.log(stepsActionsArray); + console.log(stepsResultsArray); + + for (let i = 0; i < stepsActionsArray.length; i++) { + const action = stepsActionsArray[i]; + const result = stepsResultsArray[i]; + + stepsWrapper.insertAdjacentHTML('beforeend', `
+

${i+1}.

+
+
`); + } + + stepByStep = false; + } +} + +function StepByStep() { + + stepByStep = true; + Evaluate(); +} + + +function Negation(value) { + + if (value != undefined) { return !value; } +} + +function Conjunction(firstValue, secondValue) { + + if (firstValue === true && secondValue === true) { + return true; + } else if (firstValue === false && secondValue === true || firstValue === true && secondValue === false || firstValue === false && secondValue === false) { + return false; + } +} + +function Disjunction(firstValue, secondValue) { + + if (firstValue === true || secondValue === true) { + return true; + } else if (firstValue === false && secondValue === false) { + return false; + } +} + +function Equivalence(firstValue, secondValue) { + + if (firstValue === secondValue) { + return true; + } else if (firstValue !== secondValue) { + return false; + } +} + + + + + + +function ConvertCharArrayToRPNArray(chars) { + + let _values_stack = new Array(); + let _actions_stack = new Array(); + + for (let i = 0; i < chars.length; i++) { + const element = chars[i]; + + if (VALUES.has(element)) { + + _values_stack.push(element); + } else if (OPERATORS.has(element)) { + + while (GetActionPriority(_actions_stack[_actions_stack.length - 1]) >= GetActionPriority(element)) { + + let last = _actions_stack.pop(); + + if (last != '(') { + _values_stack.push(last); + } else { + break; + } + } + + if (_actions_stack[0] == undefined || GetActionPriority(_actions_stack[_actions_stack.length - 1]) < GetActionPriority(element)) { + + _actions_stack.push(element); + } + } else if (BRACKETS.has(element)) { + + if (element == '(') { + + _actions_stack.push(element); + } + + if (element == ')') { + + let _last = _actions_stack.pop(); + + while (_last != '(') { + + _values_stack.push(_last); + _last = _actions_stack.pop(); + } + } + } else { + Error('The programm cant solve given formula. Do you typed everything right? Maybe you forgot to define some value?'); + } + } + + while (_actions_stack[0] != undefined) { + + _values_stack.push(_actions_stack.pop()); + } + + return _values_stack; +} + +function ConvertLettersToValues(RPNArray) { + + let valuesRNPArray = new Array(); + + RPNArray.forEach(element => { + + if (VALUES.has(element)) { + valuesRNPArray.push(GetValueFromIndex(element)); + } else if (element !== '(' || element !== ')') { + valuesRNPArray.push(element); + } + }); + + return valuesRNPArray; +} + +function SolveRPNFormula(valuesRPNArray) { + + let stepByStepResults = new Array(); + + let _stack = new Array(); + + for (let i = 0; i < valuesRPNArray.length; i++) { + const element = valuesRPNArray[i]; + + if (OPERATORS.has(element)) { + + if (element == '!') { + + let _currValue = _stack.pop(); + + let _result = Negation(_currValue); + + _stack.push(_result); + stepByStepResults.push(convertToReadableResult(_result)); + + } else if (element == '*') { + + let _secondValue = _stack.pop(); + let _firstValue = _stack.pop(); + + let _result = Conjunction(_firstValue, _secondValue); + + _stack.push(_result); + stepByStepResults.push(convertToReadableResult(_result)); + + } else if (element == '+') { + + let _secondValue = _stack.pop(); + let _firstValue = _stack.pop(); + + let _result = Disjunction(_firstValue, _secondValue); + + _stack.push(_result); + stepByStepResults.push(convertToReadableResult(_result)); + + } else if (element == '>') { + + let _secondValue = _stack.pop(); + let _firstValue = _stack.pop(); + + let _result = Disjunction(Negation(_firstValue), _secondValue); + + _stack.push(_result); + stepByStepResults.push(convertToReadableResult(_result)); + + } else if (element == '=') { + + let _secondValue = _stack.pop(); + let _firstValue = _stack.pop(); + + let _result = Equivalence(_firstValue, _secondValue); + + _stack.push(_result); + stepByStepResults.push(convertToReadableResult(_result)); + + } + } else { + + _stack.push(element); + } + } + + return [_stack[0], stepByStepResults]; +} + +function StepByStepRPNFormula(RPNArray) { + + let stepsArray = new Array(); + + let _stack = new Array(); + + for (let i = 0; i < RPNArray.length; i++) { + const element = RPNArray[i]; + + if (OPERATORS.has(element)) { + + if (element == '!') { + + let _currValue = _stack.pop(); + + let _result; + + if (_currValue.length <= 2) { + _result = '!'.concat(_currValue); + } else { + _result = '!'.concat('(').concat(_currValue).concat(')'); + } + + _stack.push(_result); + stepsArray.push([_result]); + + } else if (element == '*') { + + let _secondValue = _stack.pop(); + let _firstValue = _stack.pop(); + + let _result; + + let _firstHasExclemMark = Boolean(_firstValue.split('').filter(x => x === '!').length); + let _secondHasExclemMark = Boolean(_secondValue.split('').filter(x => x === '!').length); + + if (_firstValue.length <= 2 && _secondValue.length <= 2) { + _result = _firstValue.concat('*').concat(_secondValue); + } else if (_firstValue.length <= 2 && _secondValue.length > 2) { + + if (_secondHasExclemMark) { + + _result = _firstValue.concat('*').concat(_secondValue); + } else { + _result = + _firstValue.concat('*').concat('(').concat(_secondValue).concat(')'); + } + } else if (_firstValue.length > 2 && _secondValue.length <= 2) { + + if (_firstHasExclemMark) { + + _result = _firstValue.concat('*').concat(_secondValue); + } else { + + _result = '('.concat(_firstValue).concat(')').concat('*').concat(_secondValue); + } + } else if (_firstValue.length > 2 && _secondValue.length > 2) { + + if (_firstHasExclemMark && _secondHasExclemMark) { + + _result = _firstValue.concat('*').concat(_secondValue); + } if (_firstHasExclemMark && !_secondHasExclemMark) { + + _result = _firstValue.concat('*').concat('(').concat(_secondValue).concat(')'); + } else if (!_firstHasExclemMark && _secondHasExclemMark) { + + _result = '('.concat(_firstValue).concat(')').concat('*').concat(_secondValue);; + } else { + + _result = '('.concat(_firstValue).concat(')').concat('*').concat('(').concat(_secondValue).concat(')'); + } + } + + _stack.push(_result); + stepsArray.push([_result]); + + } else if (element == '+') { + + let _secondValue = _stack.pop(); + let _firstValue = _stack.pop(); + + let _result = _firstValue.concat('+').concat(_secondValue); + + _stack.push(_result); + stepsArray.push([_result]); + + } else if (element == '>') { + + let _secondValue = _stack.pop(); + let _firstValue = _stack.pop(); + + let _result = _firstValue.concat('>').concat(_secondValue); + + _stack.push(_result); + stepsArray.push([_result]); + + } else if (element == '=') { + + let _secondValue = _stack.pop(); + let _firstValue = _stack.pop(); + + let _result = _firstValue.concat('=').concat(_secondValue); + + _stack.push(_result); + stepsArray.push([_result]); + } + } else { + + _stack.push(element); + } + } + + return stepsArray; + // return _stack[0]; +} + + + + + +function InputFormulaFotTruthTable() { + + + let _formulaString = prompt('>>> '); + + + if (_formulaString.search('[!,*,+,>,=]') == -1) { + Error('The programm cant solve given formula. Do you typed everything right?'); + } + + + if (_formulaString.match(/[a-z]/g) != null) { + + _formulaString.match(/[a-z]/g).forEach (element => { + TTVALUESNAMES.add(element); + }) + } else { + Error('The programm cant solve given formula. Do you typed everything right?'); + } + + TTVALUESNAMES.forEach(element => { + TTVALUESCONTENTS.push([element]); + }) + + + let _numColumns = TTVALUESNAMES.size; + + let _numRows = Math.pow(2, _numColumns); + + + + let _rowsContent = new Array(); + + for (let r = 0; r < _numRows; r++) { + + _rowsContent.push(new Array()); + + for (let c = 0; c < _numColumns; c++) { + + _rowsContent[r].push(false); + } + } + + + for (let c = 0; c < _numColumns; c++) { + + let _period = Math.pow(2, _numColumns) / Math.pow(2, c+1); + + let _zeros = true; + + for (let r = 0; r < _numRows; r++) { + + if (_zeros) { + _rowsContent[r][c] = false; + TTVALUESCONTENTS[c].push(false); + } + + if (!_zeros) { + _rowsContent[r][c] = true; + TTVALUESCONTENTS[c].push(true); + } + + if ((r + 1) % _period == 0) { + _zeros = !_zeros; + } + } + } + + // console.log(_rowsContent); + // console.log(TTVALUESCONTENTS); + + + + let _formulaCharArray = ConvertFormulaToCharArray(_formulaString); + + let _result = new Array(); + + for (let i = 0; i < _numRows; i++) { + + let _formula_RPN_Array = ConvertCharArrayToRPNArray(_formulaCharArray, i + 1); + _result.push(SolveRPNFormula(_formula_RPN_Array)); + } + // console.log(_result); + _result.forEach(element => { + + if (element == undefined) { + Error('The programm cant solve given formula. Do you typed everything right?'); + } + }); + + ttformula = _formulaString; + numRows = _numRows; + rowsContent = _rowsContent; + truthTable = _result; + + + console.log(''); + for (let r = 0; r < _numRows; r++) { + + console.log(` ${_rowsContent[r].join(', ')} : ${_result[r]}`); + } + console.log(''); + + ClearTruthTableData(); + + ReturnToMenu(); +} + + + + +const OPERATORS = new Set(['!', '*', '+', '>', '=']); +const BRACKETS = new Set(['(', ')']); + +function GetActionPriority(action) { + + if (action == '!') { + return 5; + } else if (action == '*') { + return 4; + } else if (action == '+' || action == '>' || action == '=') { + return 3; + } else if (action == '(') { + return 2; + } else { + return 0; + } +} + +function GetValueFromIndex(valueIndex) { + + for (let i = 0; i < userValues.length; i++) { + const element = userValues[i]; + + if (element[0] == valueIndex) { + return element[1]; + } + } +} + +function convertToReadableResult(unconverted) { + + return unconverted === true ? '1' : '0'; +} + +function Error(errMsg) { + console.log(` [ERROR] ${errMsg}`); +} + +//----------------------------- Check Input --------------------------- + +const symbols = ['0', '1']; +const specialSymbols = ['Backspace', 'ArrowLeft', 'ArrowRight', 'Delete']; + +function checkInputValue(key, value) { + if (value.length < 1 && symbols.indexOf(key) !== -1) { + return true; + } else if (value.length == 1 && specialSymbols.indexOf(key) !== -1) { + return true; + } + else { + return false; + } +} + +const symbols2 = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', + 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', + 'W', 'X', 'Y', 'Z', 'Backspace', 'ArrowLeft', 'ArrowRight', 'Delete', + '>', '=', '+', '*', '!', '(', ')' +]; + +function checkInputProblem(key) { + return (symbols2.indexOf(key) != -1) ? true : false; +} \ No newline at end of file diff --git a/Set-Algebra/index.html b/Set-Algebra/index.html index ae72e58..1152af6 100644 --- a/Set-Algebra/index.html +++ b/Set-Algebra/index.html @@ -21,7 +21,7 @@

CDM

diff --git a/img/favicon.png b/img/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..ac7e59265ca3dcf30e67b3a629da524c9a186f72 GIT binary patch literal 8939 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 literal 0 HcmV?d00001 diff --git a/index.html b/index.html index dc979c4..35c3028 100644 --- a/index.html +++ b/index.html @@ -21,7 +21,7 @@

CDM

@@ -37,7 +37,7 @@