Chat with our AI personalities
yes. not sure of the proof though.
I'm assuming you mean the symbol (u) and not 'you'So:u = vw + zWhere vw means v * w (v times w)
English alphabet: A, H, I, M, O, T, U, V, W, W, YA
the sequence is every other letter.EXAMPLE:Y x W v U t S r Q
Try thisinput "z =?";x,yprint "z=";x;"+";y;"i"input "w =?";u,vprint "w=";u;"+";v;"i"print "z+w = ";x+u;"+";y+v;"i"print "z*w = ";x*u-y*v;"+";x*v+y*u;"i"example output:z=? 1,2w=? 2,3z+w = 3+5iz*w = -4+7iNote that it is possible to input negative imaginary parts. To display the sum and product correctly in that case, you need to make an intermediate step in the program which assigns the imaginary part to a separate variable, decide whether or not the imaginary part is negative, and then print a "+" if it is positive or no sign when it is negative (printing a negative number will automatically print the negative sign).Of course, you need to modify the program to your computer language.