Jump to content
Urch Forums

BrushMyQuant

Members
  • Posts

    6
  • Joined

Converted

  • My Tests
    No

BrushMyQuant's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. How to Solve: LCM, GCD and Properties of LCM and GCD Hi All, I have recently uploaded a Video on YouTube to discuss LCM and GCD in detail. Following is covered in the video: What is LCM and how to find LCM of 2 or more numbers using three methods. What is GCD and how to find GCD of 2 or more numbers using three methods. • Listing Out Multiples • Common Division Method • Prime Factorization Method How to find LCM and GCD of Exponents and Fractions. Properties of LCM and GCD Prop 1: LCM of 0 and any number does not exist • LCM ( 0 , a ) = Does not exist Prop 2: GCD of 0 and any number is equal to the number itself. (Because all whole numbers are factors of 0. So, a will be also be a factor of 0.) • GCD ( 0 , a ) = a Prop 3: LCM of 1 and any number is equal to the number itself • LCM ( 1 , a ) = a Prop 4: GCD of 1 and any number is equal to 1 • GCD ( 1 , a ) = 1 Prop 5: Product of two numbers = Product of their LCM and GCD • a*b = LCM(a,b) * GCD(a,b) Prop 6: LCM of two numbers is always a multiple of their GCD • LCM(a,b) = GCD(a,b) * k [where k is an integer] Prop 7: LCM of two numbers always lies between the larger of the two numbers and the product of those two numbers • Larger (a,b) Prop 8: GCD of two numbers is always smaller than or equal to the smaller of those two numbers • GCD (a,b) Prop 9: LCM of two numbers is equal to the larger of the two numbers when one number is multiple of other • LCM(a,b) = Larger(a,b) => either a is a multiple of b or b is a multiple of a Prop 10: LCM of two numbers is equal to the product of those two numbers when the numbers are co-prime • LCM(a,b) = a*b => a and b are co-prime numbers Co-prime numbers are numbers which have only one factor in common (i.e. 1) Prop 11: GCD of two numbers is equal to the smaller of the two numbers when one number is multiple of other • GCD(a,b) = Smaller(a,b) => either a is a multiple of b or b is a multiple of a Prop 12: GCD of two numbers is 1 when the numbers are co-prime • GCD(a,b)=1 => a and b are co-prime numbers Prop 13: All numbers can be written as a multiple of their GCD • a and b can be written as a multiple of their GCD • a = GCD(a,b) * k [where k is an integer] • b = GCD(a,b) * t [where t is an integer] Prop 14: All multiples of LCM are divisible by the numbers whose LCM we have calculated • Multiples of LCM(a,b) will be divisible by both a and b Prop 15: a + b and a -b will always be divisible by GCD(a,b) • a+bGCD(a,b)=k [where k is an integer] • a−bGCD(a,b)=t[where t is an integer] Sample Word Problems: Prob 1: Joe has 12 A-grade projects and Chris has 18 B-grade projects. They have to divide up the projects into small teams with equal number of projects in each team; each team can have either A-grade project or B-grade project only. If there is no remainder, find the largest possible number of projects in each team. Prob 2: Joe and Chris were each given a piece of wood of equal length. Joe cuts his wood piece into equal lengths of 12 cm, while Chris cuts his wood piece into equal lengths of 18 cm. If there was no remainder in both cases, find the shortest possible length of wood given to them. Prob 3: Two steel pieces of length 340 cm and 408 cm are to be cut into pieces of all the same length without remainder. Find the greatest possible length of the pieces. Solutions: Prob 1: GCD (12,18) =6 Prob 2: LCM(12,18) = 36 Prob 3: GCD(340,408) = 68 Ankit
  2. Hi, Just posted a video on Youtube on Complex Numbers. Hope it helps! Ankit
  3. How to Solve: LCM, GCD and Properties of LCM and GCD Hi All, I have recently uploaded a Video on YouTube to discuss LCM and GCD in detail. Following is covered in the video: What is LCM and how to find LCM of 2 or more numbers using three methods. What is GCD and how to find GCD of 2 or more numbers using three methods. • Listing Out Multiples • Common Division Method • Prime Factorization Method How to find LCM and GCD of Exponents and Fractions. Properties of LCM and GCD Prop 1: LCM of 0 and any number does not exist • LCM ( 0 , a ) = Does not exist Prop 2: GCD of 0 and any number is equal to the number itself. (Because all whole numbers are factors of 0. So, a will be also be a factor of 0.) • GCD ( 0 , a ) = a Prop 3: LCM of 1 and any number is equal to the number itself • LCM ( 1 , a ) = a Prop 4: GCD of 1 and any number is equal to 1 • GCD ( 1 , a ) = 1 Prop 5: Product of two numbers = Product of their LCM and GCD • a*b = LCM(a,b) * GCD(a,b) Prop 6: LCM of two numbers is always a multiple of their GCD • LCM(a,b) = GCD(a,b) * k [where k is an integer] Prop 7: LCM of two numbers always lies between the larger of the two numbers and the product of those two numbers • Larger (a,b) Prop 8: GCD of two numbers is always smaller than or equal to the smaller of those two numbers • GCD (a,b) Prop 9: LCM of two numbers is equal to the larger of the two numbers when one number is multiple of other • LCM(a,b) = Larger(a,b) => either a is a multiple of b or b is a multiple of a Prop 10: LCM of two numbers is equal to the product of those two numbers when the numbers are co-prime • LCM(a,b) = a*b => a and b are co-prime numbers Co-prime numbers are numbers which have only one factor in common (i.e. 1) Prop 11: GCD of two numbers is equal to the smaller of the two numbers when one number is multiple of other • GCD(a,b) = Smaller(a,b) => either a is a multiple of b or b is a multiple of a Prop 12: GCD of two numbers is 1 when the numbers are co-prime • GCD(a,b)=1 => a and b are co-prime numbers Prop 13: All numbers can be written as a multiple of their GCD • a and b can be written as a multiple of their GCD • a = GCD(a,b) * k [where k is an integer] • b = GCD(a,b) * t [where t is an integer] Prop 14: All multiples of LCM are divisible by the numbers whose LCM we have calculated • Multiples of LCM(a,b) will be divisible by both a and b Prop 15: a + b and a -b will always be divisible by GCD(a,b) • a+bGCD(a,b)=k [where k is an integer] • a−bGCD(a,b)=t[where t is an integer] Sample Word Problems: Prob 1: Joe has 12 A-grade projects and Chris has 18 B-grade projects. They have to divide up the projects into small teams with equal number of projects in each team; each team can have either A-grade project or B-grade project only. If there is no remainder, find the largest possible number of projects in each team. Prob 2: Joe and Chris were each given a piece of wood of equal length. Joe cuts his wood piece into equal lengths of 12 cm, while Chris cuts his wood piece into equal lengths of 18 cm. If there was no remainder in both cases, find the shortest possible length of wood given to them. Prob 3: Two steel pieces of length 340 cm and 408 cm are to be cut into pieces of all the same length without remainder. Find the greatest possible length of the pieces. Solutions: Prob 1: GCD (12,18) =6 Prob 2: LCM(12,18) = 36 Prob 3: GCD(340,408) = 68 Ankit
  4. Can someone delete this post for me? I couldn't find delete button? I posted it twice by mistake.
  5. How to Solve: LCM, GCD and Properties of LCM and GCD Hi All, I have recently uploaded a Video on YouTube to discuss LCM and GCD in detail. Following is covered in the video: What is LCM and how to find LCM of 2 or more numbers using three methods. What is GCD and how to find GCD of 2 or more numbers using three methods. • Listing Out Multiples • Common Division Method • Prime Factorization Method How to find LCM and GCD of Exponents and Fractions. Properties of LCM and GCD Prop 1: LCM of 0 and any number does not exist • LCM ( 0 , a ) = Does not exist Prop 2: GCD of 0 and any number is equal to the number itself. (Because all whole numbers are factors of 0. So, a will be also be a factor of 0.) • GCD ( 0 , a ) = a Prop 3: LCM of 1 and any number is equal to the number itself • LCM ( 1 , a ) = a Prop 4: GCD of 1 and any number is equal to 1 • GCD ( 1 , a ) = 1 Prop 5: Product of two numbers = Product of their LCM and GCD • a*b = LCM(a,b) * GCD(a,b) Prop 6: LCM of two numbers is always a multiple of their GCD • LCM(a,b) = GCD(a,b) * k [where k is an integer] Prop 7: LCM of two numbers always lies between the larger of the two numbers and the product of those two numbers • Larger (a,b) Prop 8: GCD of two numbers is always smaller than or equal to the smaller of those two numbers • GCD (a,b) Prop 9: LCM of two numbers is equal to the larger of the two numbers when one number is multiple of other • LCM(a,b) = Larger(a,b) => either a is a multiple of b or b is a multiple of a Prop 10: LCM of two numbers is equal to the product of those two numbers when the numbers are co-prime • LCM(a,b) = a*b => a and b are co-prime numbers Co-prime numbers are numbers which have only one factor in common (i.e. 1) Prop 11: GCD of two numbers is equal to the smaller of the two numbers when one number is multiple of other • GCD(a,b) = Smaller(a,b) => either a is a multiple of b or b is a multiple of a Prop 12: GCD of two numbers is 1 when the numbers are co-prime • GCD(a,b)=1 => a and b are co-prime numbers Prop 13: All numbers can be written as a multiple of their GCD • a and b can be written as a multiple of their GCD • a = GCD(a,b) * k [where k is an integer] • b = GCD(a,b) * t [where t is an integer] Prop 14: All multiples of LCM are divisible by the numbers whose LCM we have calculated • Multiples of LCM(a,b) will be divisible by both a and b Prop 15: a + b and a -b will always be divisible by GCD(a,b) • a+bGCD(a,b)=k[where k is an integer] • a−bGCD(a,b)=t [where t is an integer] Sample Word Problems: Prob 1: Joe has 12 A-grade projects and Chris has 18 B-grade projects. They have to divide up the projects into small teams with equal number of projects in each team; each team can have either A-grade project or B-grade project only. If there is no remainder, find the largest possible number of projects in each team. Prob 2: Joe and Chris were each given a piece of wood of equal length. Joe cuts his wood piece into equal lengths of 12 cm, while Chris cuts his wood piece into equal lengths of 18 cm. If there was no remainder in both cases, find the shortest possible length of wood given to them. Prob 3: Two steel pieces of length 340 cm and 408 cm are to be cut into pieces of all the same length without remainder. Find the greatest possible length of the pieces. Solutions: Prob 1: GCD (12,18) =6 Prob 2: LCM(12,18) = 36 Prob 3: GCD(340,408) = 68 Hope it helps!
  6. How to Solve: LCM, GCD and Properties of LCM and GCD Hi All, I have recently uploaded a Video on YouTube to discuss LCM and GCD in detail. Following is covered in the video: What is LCM and how to find LCM of 2 or more numbers using three methods. What is GCD and how to find GCD of 2 or more numbers using three methods. • Listing Out Multiples • Common Division Method • Prime Factorization Method How to find LCM and GCD of Exponents and Fractions. Properties of LCM and GCD Prop 1: LCM of 0 and any number does not exist • LCM ( 0 , a ) = Does not exist Prop 2: GCD of 0 and any number is equal to the number itself. (Because all whole numbers are factors of 0. So, a will be also be a factor of 0.) • GCD ( 0 , a ) = a Prop 3: LCM of 1 and any number is equal to the number itself • LCM ( 1 , a ) = a Prop 4: GCD of 1 and any number is equal to 1 • GCD ( 1 , a ) = 1 Prop 5: Product of two numbers = Product of their LCM and GCD • a*b = LCM(a,b) * GCD(a,b) Prop 6: LCM of two numbers is always a multiple of their GCD • LCM(a,b) = GCD(a,b) * k [where k is an integer] Prop 7: LCM of two numbers always lies between the larger of the two numbers and the product of those two numbers • Larger (a,b) Prop 8: GCD of two numbers is always smaller than or equal to the smaller of those two numbers • GCD (a,b) Prop 9: LCM of two numbers is equal to the larger of the two numbers when one number is multiple of other • LCM(a,b) = Larger(a,b) => either a is a multiple of b or b is a multiple of a Prop 10: LCM of two numbers is equal to the product of those two numbers when the numbers are co-prime • LCM(a,b) = a*b => a and b are co-prime numbers Co-prime numbers are numbers which have only one factor in common (i.e. 1) Prop 11: GCD of two numbers is equal to the smaller of the two numbers when one number is multiple of other • GCD(a,b) = Smaller(a,b) => either a is a multiple of b or b is a multiple of a Prop 12: GCD of two numbers is 1 when the numbers are co-prime • GCD(a,b)=1 => a and b are co-prime numbers Prop 13: All numbers can be written as a multiple of their GCD • a and b can be written as a multiple of their GCD • a = GCD(a,b) * k [where k is an integer] • b = GCD(a,b) * t [where t is an integer] Prop 14: All multiples of LCM are divisible by the numbers whose LCM we have calculated • Multiples of LCM(a,b) will be divisible by both a and b Prop 15: a + b and a -b will always be divisible by GCD(a,b) • a+bGCD(a,b)=k [where k is an integer] • a−bGCD(a,b)=t[where t is an integer] Sample Word Problems: Prob 1: Joe has 12 A-grade projects and Chris has 18 B-grade projects. They have to divide up the projects into small teams with equal number of projects in each team; each team can have either A-grade project or B-grade project only. If there is no remainder, find the largest possible number of projects in each team. Prob 2: Joe and Chris were each given a piece of wood of equal length. Joe cuts his wood piece into equal lengths of 12 cm, while Chris cuts his wood piece into equal lengths of 18 cm. If there was no remainder in both cases, find the shortest possible length of wood given to them. Prob 3: Two steel pieces of length 340 cm and 408 cm are to be cut into pieces of all the same length without remainder. Find the greatest possible length of the pieces. Solutions: Prob 1: GCD (12,18) =6 Prob 2: LCM(12,18) = 36 Prob 3: GCD(340,408) = 68 Ankit
×
×
  • Create New...