answersLogoWhite

0


Best Answer

Factorial is calculated by multiplying be each lower integer. eg factorial 4 (also written as 4!) is 4 x 3 x 2

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you find the factorial of a number like 4 over 2 after the 4 and 2 there is a exlamation mark?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you find factorials?

to find factorials you just multiply the factorial like this. for example 6! you would do 6x5x4x3x2. a little trick of mine is to multiply the previous factorial's answer by the factorial you are trying to make's number like this 6!=5! 5!=5x4x3x2 i hope this was helpful' Dayna,a 10 year old girl


What is the result of multiplying all figures from 0 to 25?

It will be zero, because zero is included in the set. Anything times zero is zero. I think the question you meant to ask is "What is the product of all figures from one to 25?". This is easy if you have a scientific calculator. The operation is 25 factorial, which looks like 25!. Find an exlamation point on your calculator, then enter it after you enter 25. The answer to 25! is 1.55E25.


Is factorial like this 4x4-4-4?

No, that is nothing like a factorial. 4 factorial (written as 4!) is 4*3*2*1 = 24.


Write a program in java to find factorial of a number?

I suggest to use a for loop, more or less like this (assuming the parameter is "n"): product = 1; for (int i = 1; i <= n; i++) { product *= i; }


Find factorial at given number using do while loop?

Actually, a for loop is more appropriate in this case. With while, it would be something like the following pseudocode - adapt to your favorite programming language:function factorial(n)result = 1factor = 1while factor


Write a program to find factorial of number?

#include<stdio.h> #include<conio.h> int main() { int i,n,fact=1; printf(" Enter number to find factorial\n"); scanf(" %d",&n); for(i=1;i<=n;i++) fact=fact*i; printf("factorial of%d=%d\n",n,fact,); return 0; }


2 Write a program in java to find factorial of a number?

import java.math.BigInteger; public class Factorial { public static void main(String[] args) { BigInteger n = BigInteger.ONE; for (int i=1; i<=20; i++) { n = n.multiply(BigInteger.valueOf(i)); System.out.println(i + "! = " + n); }


Write an algorithm to print the factorial of given number and then draw the flowchart?

write an algorithm to print the factorial of a given number and then draw the flowchart. This looks like someones homework, defiantly someone looking for the easy way. When it comes to programming, the more you do the better you get. Experience counts (making your own mistakes and learning from the mistake).


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 } }


Why is there a check light on your dash board on your BMW looks like an exlamation point?

more than likely indicating a problem with your traction control. If symbol is enclosed by a dotted circle, its brakes


What does exclamation point stand for in math?

The exclamation mark in maths means factorial, which means you have to multiply the number by all the integers which are less than it, like 4! means 4*3*2*1, which is 24.


What is simulation recursion in C?

The factorial f(n) = n * (n-1) * (n-2) * .. 1. For example factorial 5 (written as 5!) = 5 x 4 x 3 x 2 x 1 = 120. The function below returns the factorial of the parameter n. int factorial( int n) { if (n==1) return 1 else return n* factorial( n-1) ; }