answersLogoWhite

0

n x n = n2

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Is the math term called square root or squared root?

It is the "square root." This is the opposite function (n1/2) of the square (n2).


Are there infinitely many primes of the form n2-1 and n2-2 and n2-3 and n2-4?

n2-1 and n2-4 are trivial cases because of n2-m2=(n-m)(n+m). So the only prime of the form n2-1 is 3 and of the form n2-4 is 5.


What is the formula for the sum of the series r(1/n2-1/n2)?

The formula for the sum of the series r(1/n2-1/n2) is r(1-1/n2).


What is the pmf of trinomial distribution?

P(x=n1,y=n2) = (n!/n1!*n2!*(n-n1-n2)) * p1^n1*p2^n2*(1-p1-p2) where n1,n2=0,1,2,....n n1+n2<=n


What is the oxidation number for N2?

0 in N2


What is oxidation number for N2?

0 in N2


Codings for coprime number in c?

#include<stdio.h> int main(){ int n1,n2; printf("\nEnter two numbers:"); scanf("%d %d",&n1,&n2); while(n1!=n2){ if(n1>=n2) n1=n1-n2; else n2=n2-n1; } printf("\nGCD=%d",n1); return 0; }


How do you find the number of moles of nitrogen gas in 3.2L?

1 mole N2 = 22.4L 3.2L N2 x 1mol N2/22.4L = 0.14 mole N2


How do you balance this equation N2 plus H2 to NH3 plus N2?

The formula for the synthesis of ammonia from diatomic nitrogen and hydrogen is: N2+3H2-->2NH3


What is N2H4------NH3 plus N2 in a balanced equation?

3N2H4 --> 4NH3 + N2 is the correctly balanced equation.


What is the balanced equation between magnesium nitrogen and magnesium nitride?

3Mn + N2 ----> Mn3N2 its actually 3mg+N2(arrow) Mg3N2


What is the slowest in sorting algorithm?

There are many sorting algorithms with worst case of complexity O(n2). These algorithms have different average and best cases. They are:Best caseAverage caseWorst case1) Quick sortO(n*log n)O(n*log n)O(n2)2) Insertion sortO(n)O(n2)O(n2)3) Bubble sortO(n)O(n2)O(n2)4) Selection sortO(n2)O(n2)O(n2)