answersLogoWhite

0

What is the value of root2?

User Avatar

Anonymous

14y ago
Updated: 8/19/2019

Root 2 or 2^(1/2) is an irrational number.

It is approximately 1.414214

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Check Binary tree isomorphism?

//not sure if it is correct bool isomorphic(struct Node* root1,struct Node* root2) { if(root1 root2->value) return ( isomorphic(root1->left,root2->left) && isomorphic(root1->right,root2->right) isomorphic(root1->right,root2->left) && isomorphic(root1->left,root2->right) ); else return false; }


Explain briefly algorithm and draw the flow chart to find roots of a quadratic equation?

using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { double a, b, c, dis,root1,root2,temp; Console.WriteLine("Enter the value of Cofficients "); Console.WriteLine("Enter the value of Cofficient a "); a = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Enter the value of Cofficient b"); b = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("Enter the value of Cofficient c"); c = Convert.ToInt32(Console.ReadLine()); dis = b * b - 4 * a * c; Console.WriteLine("Dis is {0} ", dis); if (dis > 0) { temp = Math.Sqrt(dis); root1 = (-b + temp) / 2 * a; root2 = (-b - temp) / 2 * a; Console.WriteLine("First Root is {0} ",root1); Console.WriteLine("Second Root is {0} ",root2); } if (dis == 0) { root1 = -b / 2 * a; Console.WriteLine(" Root is {0} ", root1); } if (dis < 0) { temp = dis; root1 = -b ; root2 = 2 * a; Console.WriteLine("First Root is ({0} + ({1}i))/{2} ", root1,temp,root2); Console.WriteLine("Second Root is ({0} - ({1}i))/{2} ", root1, temp, root2); } Console.ReadLine(); } } }


Is the set of irrational numbers closed under division?

No, it is not. Root2 and root 8 are each irrational. Root8 / root2 =2. 2 is not a member of the set.


What is the value of x for which cosxsinx 0.5?

You know that cosπ/4 and sinπ/4 both equal 1/root2, so multiplying them gets 1/2.


Write a fortran code to calculate the root of quadratic equation?

implicit double precision(a-h,o-z) write(*,*) "please provide the a,b,c coeff" read(*,*) A,B,C D=B*B-4*A*C if(D.GT.0) then root1=(-B/(2*A))+(SQRT(D))/(2*A) root2=(-B/(2*A))-(SQRT(D))/(2*A) write(*,*) root1,root2 elseif(D.EQ.0) then root1=(-B/(2*A)) root2=root1 write(*,*) root1,root2 else root1=(-B/(2*A))+(SQRT(-D))/(2*A) root2=(-B/(2*A))-(SQRT(-D))/(2*A) a=(root1+root2)/2 b=(root1-root2)/2 write(*,*) 'realpartroot=',a, 'complexpartroot=',b endif stop END


What is the square root of 19905.25?

141.08596670115706443962956239886 is the root2 of 19905.25


What is 5m squared root2 +2 in algebraic expression?

6.25


What is the rational number between root2 and root3?

Write three rational numbers between root2 root3 ?


How do you show that 2 plus root2 is an irrational number?

Assume it's rational. Then 2 + root2 = some rational number q. Then root2 = q - 2. However, the rational numbers are well-defined under addition by (a,b) + (c,d) = (ad + bc, bd) (in other words, you can add two fractions a/b and c/d and always get another fraction of the form (ad + bc)/bd.) Therefore, q - 2 = q + (-2) is rational, since both q and -2 are rational. This implies root2 must be rational, which is a contradiction. Therefore the assumption that 2 + root2 is rational must be false.


Why are root2 root3 irrational numbers?

Because they cannot be expressed as ratios of integers.


How do you prove that root 2 root 3 is an irrational number?

It is known that the square root of an integer is either an integer or irrational. If we square root2 root3 we get 6. The square root of 6 is irrational. Therefore, root2 root3 is irrational.


What is the approximation of 10 radical 2?

10 root2 (10 x 1.41421356) is about 14.1421356 or 14.14.