answersLogoWhite

0


Best Answer

Nothing. Factorials are only defined for whole numbers (non-negative integers).

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the factorial value of -1?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the value of 9 factorial plus 6 factorial?

The value of 9 factorial plus 6 factorial is 363,600


What is the value of 0 factorial?

Zero factorial, written as 0!, equals 1. This is a simple math equation.


What is the value of factorial negative n?

what is the value of negative n factorial ?


What is 1 factorial?

1 factorial = 1


Why is there a exclamation mark on the calculator?

It represents a factorial. A factorial is when you take each number up to value and multiply them. So factorial 3 is 1 x 2 x 3. Factorial 7 is 1 x 2 x 3 x 4 x 5 x 6 x 7.


What is zero factorial?

Zero factorial = 1


What is the value of 7 factorial?

7*6*5*4*3*2*1=5040


What is the value for 10 factorial?

3,628,800


What is a factorial loop?

An example in Java, to compute 10!: int factorial = 1; for(int i = 1; i < 11; i++) { factorial *= i; }


How do you find factorial 5 in C programming?

to find the factorial we declare a variable n and initialize its value to 1 initiate a loop for example a for loop and multiply the numbers upto 5 code:- for(i=1,n=1;i<=5;i++) { n=n*i; }


Write a C-like program fragment that calculate the factorial function for argment 12 with do while loop?

#!/usr/bin/perl print factorial($ARGV[11]); sub factorial { my($num) = @_; if($num == 1) { return 1; # stop at 1, factorial doesn't multiply times zero } else { return $num * factorial($num - 1); # call factorial function recursively } }


Zero factorial equal to one factorial then if we cancel the factorials on both side then the answer becomes zero equals one. do u accepts this?

0!=1! 1=1 The factorial of 0 is 1, not 0