MHB Solving Quadratic Equations with Binary Operator $\otimes$

  • Thread starter Thread starter karush
  • Start date Start date
AI Thread Summary
The binary operator $\otimes$ is defined as $a\otimes b = a^2+b+9$. Calculations for specific values include $6\otimes 4 = 49$, $3\otimes 3 = 21$, and $4\otimes 6 = 31, with noted arithmetic errors in previous calculations for $b$ and $c$. To verify results, it is suggested to implement a function in programming languages like Python, which can be run in various environments such as CoCalc or Jupyter Notebook. The discussion emphasizes the importance of accurate arithmetic in mathematical operations.
karush
Gold Member
MHB
Messages
3,240
Reaction score
5
Define the binary operater $\otimes$ by
$a\otimes b = a^2+b+9$
Find
a. $6\otimes 4 = 6^2+4+9 = 36+13 = 49$
b. $3\otimes 3 = 3^2+3+9 = 9+13 = 22$
c $4\otimes 6 = 4^2+6+9 = 16+15 =21$
d. $i\otimes p = i^2+p+9$

i think its ok but most math errors are in simple arithmetic
 
Mathematics news on Phys.org
b and c have arithmetic errors.

The best way to check the answers is to write a function in some programming language and run it on your inputs. For example, in Python the function would be
Python:
def f(x, y):
  return x**2 + y + 9
Then you can run f(6, 4) and so on in an interpreter.
 
karush said:
Define the binary operater $\otimes$ by
$a\otimes b = a^2+b+9$
Find
a. $6\otimes 4 = 6^2+4+9 = 36+13 = 49$
b. $3\otimes 3 = 3^2+3+9 = 9+13 = 22$
c $4\otimes 6 = 4^2+6+9 = 16+15 =21$
d. $i\otimes p = i^2+p+9$

i think its ok but most math errors are in simple arithmetic
Evgeny.Makarov said:
b and c have arithmetic errors.

The best way to check the answers is to write a function in some programming language and run it on your inputs. For example, in Python the function would be
Python:
def f(x, y):
  return x**2 + y + 9
Then you can run f(6, 4) and so on in an interpreter.
Evgeny.Makarov said:
b and c have arithmetic errors.

The best way to check the answers is to write a function in some programming language and run it on your inputs. For example, in Python the function would be
Python:
def f(x, y):
  return x**2 + y + 9
Then you can run f(6, 4) and so on in an interpreter.
ummm is that under colcalc
at least I saw it there when one class was teaching us the programs
 
Python is a programming language that can be used in different environments: CoCalc, Jupyter Notebook, PyCharm by JetBrains or simply from the command line. Use whatever tool you are familiar with, or use any other programming language.

It's a good idea to quote only relevant passages.
 
Find (corrected)
a. $6\otimes 4 = 6^2+4+9 = 36+13 = 49$
b. $3\otimes 3 = 3^2+3+9 = 9+13 = 21$
c $4\otimes 6 = 4^2+6+9 = 16+15 =31$
d. $i\otimes p = i^2+p+9$
 
$3^2+3+9=9+12$.
 
gotcha
3\otimes 3 = 3^2+3+9 = 9+12= 21
 

Similar threads

Replies
7
Views
2K
Replies
24
Views
3K
Replies
5
Views
2K
Replies
4
Views
2K
2
Replies
69
Views
8K
Back
Top