우리 아버지
Our Father
누가 하늘에서 예술
Who art in heaven
신성한 것은 네 이름이 될 수 있습니다
Hallowed be thy name
네 왕국이 와서
Thy kingdom come
네, 네, (sounds like day nay)
Thy will be done
하늘에 있는 것처럼 지상에 (hanuray inoon go siram gee san ge)
On earth as it is in heaven
Give us this day our daily bread
and forgive us our trespasses
As we forgive those who trespass against us
And lead us not into temptation
But deliver us from evil
For thine is the kingdom
And the power
And the glory
Forever and ever
Amen

Do Italians eat breakfast?
I provide the specification in advance
Too long in the microwave
Togeiyo
“The Drugs”
https://www.dictionary.com/browse/efficacy
noun,plural
ef·fi·ca·cies.
capacity for producing a desired result or effect; effectiveness:a remedy of great efficacy.
A high level of efficacy if I were judge, not sure all judges think like me
Psychological research on Judges in The United States and World Wide?
https://www.dictionary.com/browse/verdict like wrapping paper
noun
Law.
the finding or answer of a jury given to the court concerning a matter submitted to their judgment.
a judgment; decision:the verdict of the critics.
efficacy verdict wrapping paper
EVWP for short







Right Outer Left https://en.wikipedia.org/wiki/Cross_product
a x b = (a2b3-a3b2)i + (a3b1-a1b3)j + (a1b2-a2b1)k
https://en.wikipedia.org/wiki/Cross_product#Applications
13th to 20th a week of Linear Algebra, what would it mean to give one week of dedication to helping with that in 2021?
Self Re-enforcing structures for those that help
Hasn’t been tested yet
//
// Created by jason on 12/12/2021.
//
#ifndef LINEARALGEBRAUTILITY_LINEARALGEBRAUTIL_H
#define LINEARALGEBRAUTILITY_LINEARALGEBRAUTIL_H
class MathVector {
public:
double i;
double j;
double k;
};
class LinearAlgebraUtil {
public:
MathVector crossProduct(MathVector a, MathVector b) {
MathVector result;
result.i = a.j*b.k-a.k*b.j;
result.j = a.i*b.k-a.k*b.i;
result.k = a.i*b.j-a.j*b.i;
return result;
}
};
#endif //LINEARALGEBRAUTILITY_LINEARALGEBRAUTIL_H
C:\clionUtilities\linearAlgebraUtility\cmake-build-debug\testLAUtil.exe
Linear Algebra Util
Vector A | 5 2 7 | Vector B | 4 9 3 |
C = A x B ------------ A Cross Product B
Vector C | -57 -13 37
Process finished with exit code 0
//
// Created by jason on 12/12/2021.
//
#ifndef LINEARALGEBRAUTILITY_LINEARALGEBRAUTILTEST_H
#define LINEARALGEBRAUTILITY_LINEARALGEBRAUTILTEST_H
#include "LinearAlgebraUtil.h"
class LinearAlgebraUtilTest {
public:
void testCrossProduct() {
LinearAlgebraUtil linearAlgebraUtil;
MathVector a,b;
MathVector c;
a.i=5, a.j=2, a.k=7, b.i=4, b.j=9, b.k=3;
c=linearAlgebraUtil.crossProduct(a,b);
cout << "Vector A | ";
a.stringToConsole();
cout << " | Vector B | ";
b.stringToConsole();
cout << " |" << endl;
cout << "C = A x B ------------ A Cross Product B" << endl;
cout << "Vector C | ";
c.stringToConsole();
cout << endl;
}
};
#endif //LINEARALGEBRAUTILITY_LINEARALGEBRAUTILTEST_H
Updated Math Vector class
#include <iostream>
#include <string>
using namespace std;
class MathVector {
public:
double i;
double j;
double k;
void stringToConsole() {
cout << i << " " << j << " " << k;
}
};
Think I will just roll with Dinner with a defense attorney and impeach for my top banners until things are fixed

