answersLogoWhite

0


Best Answer

decreased

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is n-2 means a number by 2?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many diagonals does a polygon with 38 sides have?

1/2*(n2-3n) = 665 diagonals where n means number of sides


What is the oxidation number for N2?

0 in N2


What will be the number of orbitals for n shells?

Each shell has a total of n2 orbitals, where n is the principal quantum number. For N shells the total orbitals is therefore :- N2 + (N-1)2 + (N-2)2 +....+1


What is the formula for the number of diagonals?

1/2*(n2-3n) where n is the number of sides of the polygon.


How many sides does a polygon have if it has 902 diagonals?

Let n be the number of sides: 1/2*(n2-3n) = diagonals 1/2*(n2-3n) = 902 Multiply both sides by 2 and form a quadratic equation: n2-3n-1804 = 0 Solving the above by means of the quadratic equation formula gives a positive value for n as 44 Therefore the polygon has 44 sides


How do your use triangular numbers to make square numbers?

The sum of any two successive triangular number is a square number.The nth triangular number is n(n+1)/2 = (n2 +n)/2The next triangular number is (n+1)*(n+2)/2 = (n2 + 3n + 2)/2Their sum is (2n2 + 4n + 2)/2 = n2 + 2n + 1 = (n + 1)2This is easy to visualise. For example T3 + t4 = 42[T3, the 3th triangular number represented by X,t4, the 4th triangular number represented by x]XXX_____xXX_____xxX_____xxx_____xxxxBring them together and you have:XXXxXXxxXxxxxxxxThe sum of any two successive triangular number is a square number.The nth triangular number is n(n+1)/2 = (n2 +n)/2The next triangular number is (n+1)*(n+2)/2 = (n2 + 3n + 2)/2Their sum is (2n2 + 4n + 2)/2 = n2 + 2n + 1 = (n + 1)2This is easy to visualise. For example T3 + t4 = 42[T3, the 3th triangular number represented by X,t4, the 4th triangular number represented by x]XXX_____xXX_____xxX_____xxx_____xxxxBring them together and you have:XXXxXXxxXxxxxxxxThe sum of any two successive triangular number is a square number.The nth triangular number is n(n+1)/2 = (n2 +n)/2The next triangular number is (n+1)*(n+2)/2 = (n2 + 3n + 2)/2Their sum is (2n2 + 4n + 2)/2 = n2 + 2n + 1 = (n + 1)2This is easy to visualise. For example T3 + t4 = 42[T3, the 3th triangular number represented by X,t4, the 4th triangular number represented by x]XXX_____xXX_____xxX_____xxx_____xxxxBring them together and you have:XXXxXXxxXxxxxxxxThe sum of any two successive triangular number is a square number.The nth triangular number is n(n+1)/2 = (n2 +n)/2The next triangular number is (n+1)*(n+2)/2 = (n2 + 3n + 2)/2Their sum is (2n2 + 4n + 2)/2 = n2 + 2n + 1 = (n + 1)2This is easy to visualise. For example T3 + t4 = 42[T3, the 3th triangular number represented by X,t4, the 4th triangular number represented by x]XXX_____xXX_____xxX_____xxx_____xxxxBring them together and you have:XXXxXXxxXxxxxxxx


What does n2 mean in math?

in a math equation "n" is normally the unidentified number in the equation and 2 is the number squared :)


What is the trinomial of n2 -3n plus 2?

n2-3n+2


The product of a number and two more than the number in standard form?

n(n + 2) = n2 + 2n


How many diagonals does an N-gon have?

1/2*(n2-3n) = number of diagonals where n is the number of sides of the polygon.


What is the relationship between the number of sides of a polygon and the number of diagonals?

Number of diagonals = 1/2*(n2-3n) where n = the number of sides of the polygon.


How do you add two numbers in oracle?

declare n1 number; n2 number; n3 number; begin n1:=3 n2 :=5 n3:= sum(n1,n2); dbms_output.put_line( n3); end