Calculator Key: ÷
Real1 | Real2 | → | Real3 |
Complex1 | Complex2 | → | Complex3 |
Real1 | Complex2 | → | Complex3 |
Complex1 | Real2 | → | Complex3 |
Integer1 | Integer2 | → | Integer3 |
Real1 | Integer2 | → | Integer3 |
Integer1 | Real2 | → | Integer3 |
Array1 | Real2 | → | Array3 |
Array1 | Complex2 | → | Array3 |
Array1 | Array2 | → | Array3 |
Symbol1 | Symbol2 | → | Expression3 |
Expression1 | Expression2 | → | Expression3 |
The divide operation will take its two numerical operands and produce the quotient as its result. It operates on reals, complex and integer values. Also, you can combine reals with complex values and reals with integer values. The result will be a complex or integer value respectively.
Also, you can divide a matrix or vector by a real or complex value. The result will be a matrix or vector with the same dimension as the input with each value divided by the real or complex value.
If the inputs both arrays, then they must meet these criteria:
The result will have the same dimensions as Array1. Also, if Array1 is a vector, the result will be a vector. Otherwise, it will be a matrix.
The result Array3 is the solution to the equation which looks like this:
Array2 × Array3 = Array1
If a solution cannot be found, the calculator will present an infinite result error.