Posts

Showing posts from May, 2020

How to remember Trigonometric Identities and Formulas ?

Image
Trigonometry - Tips & Tricks Free Reciprocal Identities Pythagorean Identities Quotient Identities Power Reducing/ Half Angle Formula Sum to Product Formula Co-function Identities Parity Identities Sum & Difference Formulas Double Angle Formulas Product to sum formula

Quadratic Equation Formulas and Notes | Tips & Tricks

Some Important Result For the quadratic equation ax^2 + bx+c =0 One Root will be reciprocal of other is a=c One root is 0 if c=0 Roots are equal in magnitude but opposite in sign if b=0. Both roots are zero if b=c=0. Roots are positive if a and c are of same sign and b is of the opposite sign Roots are opposite sign if a and c are of opposite signs. Roots are negative if a,b,c are of same sign Let f(x)= ax^2 + bx+c, where a>0.Then Conditions for both the roots of f(x)=0 to be greater than a given number k are b^2 - 4ac >= 0; f(k)=0; -b/2a > k. Conditions for both the roots of f(x)=0 to be less than a given number k are b^2 - 4ac >= 0; f(k)>0; -b/2a < k. The number k lies between the roots of f(x)=0, if b^2 - 4ac > 0; f(k)<0. Conditions for exactly one root of f(x)=0 to be lie between k1, k2 is f(k1)(k2)<0,b^2 - 4ac > 0. Conditions for both roots of f(x)=0 confined between k1, k2 is f(k1)>0, f(k2)>0,  b^2 - 4ac >= 0...

Find five rational numbers between 3/5 and 4/5 .

3/5 can be written as 21/35 4/5 can be written as 28/35 In between rational numbers are : 22/35 23/35 24/35 25/35=5/7 26/35

Find six rational numbers between 3 and 4.

3 can be written as 24/8 4 can be written as 32/8 25/8 26/8 27/8 28/8 29/8 30/8 is the answer.

Is zero a rational number? Can you write it in the form p/q , where p and q are integers and q is not equal to 0?

Consider the definition of a rational number. A rational number is the one that can be written in the form of p/q, where p and q are integers and q is not equal to zero. 0 can be written as 0/1, 0/2, 0/3.... so on ) can be written as 0/(-1), 0/(-2), 0/(-3)... as well So, we arrive at the conclusion that 0 can be written in the form of p/q, where p and q are integers ( q can be positive or negative integers). Therefore, zero is a rational number.

How to add two number in seconds ? Understand Mathematics

Image
As a computer science student, i enjoyed mathematics pretty much. I started learning Machine Language and i started forgetting human language which you can see in my posts as well. So Addition, what's special about it ? Every operation a computer performs, is an addition for the system. It won't be incorrect if i say, computer can do nothing except Addition. So, a coder or a programmer design everything in form of operands and computers do addition over it directly or indirectly. We will discuss it in detail some other time. Let's try to understand, the meaning of addition ? 1+1=2 2+2=4 3+3=6 4+4=8 5+5=10.. and so on. What are we doing here ? Yes, Doubling the integer with adding the same integer to it. Does this happen to negative integers as well ? Well No! Let's see (-1)+(-1)=(-2) (-2)+(-2)=(-4).. and so on. Are they doubled ? Well, the answer is NO ! They are actually halved. This is a general doubt of doubling the negative integer...