answersLogoWhite

0


Best Answer

(4!/4)^2 +(4/4)

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
User Avatar

Asher Klas

Lvl 1
2mo ago
I typically do not use squares while solving 4 4s, but this is likely one of the only answers to this question.

Add your answer:

Earn +20 pts
Q: What is the answer using four fours without square root for number 37?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you get 1-20 using 4 fours?

The best way to count by fours. If you count by fours you can go to twenty without using other numbers. In the sequence of four, eight, 12, 16, and 20. Sequence counting allows you to follow a pattern to reach the next logical number.


How do you make 18 using 4 fours?

4x4+4-square root of 4=18


How do you make the number 129 using 4 fours?

I am not aware of a solution using the four basic operations of arithmetic, but otherwise: 129 = [(4^4)/sqrt(4)] + sqrt(sqrt(sqrt(sqrt...(sqrt(4))...))) * * * * * * * * * * * * No matter how many times you square root it, it will not equal 1 To the OP. I have spend a lot of time on this one. Just wanting to make sure that the correct number is 129 and you are sure you are using only 4 fours. It would work out great if using 5 fours. If you made a mistake, correct it and I'll check back. In the mean time, I'll continue thinking about a solution for 4 fours and 129.


How do you get to 10 by using four fours?

4 times 4 minus 4 minus square root of 4.


What is the answer to 39 only using 4 fours?

44 minus the square root of 4 divided by point 4


How do you find square root of a number without using calculator?

try to find what number times the same numbers equals the number that you have.


How do you make 35 and 37 when using only 4 fours?

35=4!+44/4 37=4!+(4!+square root of 4)/square root of 4


How do you get 53 using only 4 fours?

4 factorial plus 4 factorial plus the square root of 4 divided by .4


How would one express the number thirteen using only two fours?

4 + 4 + (4/4).


What are the answers to the four fours questions from 1-100 using only fours?

101


How do you make 5 using 4 fours?

To make 5 using only four 4's, you can either do: 4/4+square root of 4+square root of 4=5 OR: (4x4+4)/4=5 Hope that helped!!


To find square root of a nos without using built in function?

/*Java program to find out square root of a given number * without using any Built-In Functions */ public class SquareRootDemo2 { public static void main(String[] args) { //Number for which square root is to be found double number = -12; //This method finds out the square root findSquareRoot(number); } /*This method finds out the square root without using any built-in functions and displays it */ public static void findSquareRoot(double number) { boolean isPositiveNumber = true; double g1; //if the number given is a 0 if(number==0) { System.out.println("Square root of "+number+" = "+0); } //If the number given is a -ve number else if(number<0) { number=-number; isPositiveNumber = false; } //Proceeding to find out square root of the number double squareRoot = number/2; do { g1=squareRoot; squareRoot = (g1 + (number/g1))/2; } while((g1-squareRoot)!=0); //Displays square root in the case of a positive number if(isPositiveNumber) { System.out.println("Square roots of "+number+" are "); System.out.println("+"+squareRoot); System.out.println("-"+squareRoot); } //Displays square root in the case of a -ve number else { System.out.println("Square roots of -"+number+" are "); System.out.println("+"+squareRoot+" i"); System.out.println("-"+squareRoot+" i"); } } }