answersLogoWhite

0

What does N2 tells us?

User Avatar

Anonymous

13y ago
Updated: 8/18/2019

It tells us that Nitrogen exists as a diatomic molecule.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

The second of two numbers is 4 times the first their sum is 45?

This problem asks us to find 2 numbers, n1 and n2, with the following relations between them: * n2 = 4 n1 * n1 + n2 = 45 Substituting the first equation into the second one gives us: * n1 + 4n1 = 45 which gives us * n1 = 9. We can now use this solution to find n2 with the first equation * n2 = 4 n1 = 36 So the first number is 4, the second number is 36.


What is the importance of the book of Genesis?

It tells us where the universe came from. It tells us that the universe is purposeful, as is life. It tells us that life is not a free-for-all; sin will be dealt with (as in the events of the Flood). It tells us where the Israelites came from.


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.


Is Caesar Augustus aboy or a girl?

Caesar Augustus is a male or boy as the name tells you. A Latin name with a "us" ending tells you that it is male or masculine.Caesar Augustus is a male or boy as the name tells you. A Latin name with a "us" ending tells you that it is male or masculine.Caesar Augustus is a male or boy as the name tells you. A Latin name with a "us" ending tells you that it is male or masculine.Caesar Augustus is a male or boy as the name tells you. A Latin name with a "us" ending tells you that it is male or masculine.Caesar Augustus is a male or boy as the name tells you. A Latin name with a "us" ending tells you that it is male or masculine.Caesar Augustus is a male or boy as the name tells you. A Latin name with a "us" ending tells you that it is male or masculine.Caesar Augustus is a male or boy as the name tells you. A Latin name with a "us" ending tells you that it is male or masculine.Caesar Augustus is a male or boy as the name tells you. A Latin name with a "us" ending tells you that it is male or masculine.Caesar Augustus is a male or boy as the name tells you. A Latin name with a "us" ending tells you that it is male or masculine.


What does the flood tells us about God?

What the flood tells us about God is that God feels strongly about sin. He becomes upset with humanity. It tells us that God expects good from us and expects us to follow His way.


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 a file extension that tells us about the file?

The extension .jpeg tells us the file is an image file


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


What is n2 in math?

n x n = 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; }