I was incorporating Wolfram Alpha into an API I am build, and to test it entered a few equations. One of the equations I entered was as follows.
!6/(!3*!3)
This obviously equals 20, but my API spat back 66.25!
At first I thought I had mis-coded my API, but then I tried it on WA and got the same result.
Why is WA making this mistake?
Given that you tagged this with factorial I assume what you meant to write was:
You put the ! on the wrong side. n! is n factorial. !n is sub factorial.
Next time just type in the words to make sure you have the right syntax(e.g., factorial(6)((factorial(6)*factorial(6)))