Learn Prime Numbers, Factors & Composite Numbers

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 เม.ย. 2023
  • Welcome to our TH-cam channel dedicated to exploring the fascinating world of factors, prime, and composite numbers. Whether you're a student struggling with math homework, a teacher looking for new teaching materials, or simply a curious mind seeking to expand your knowledge, this channel has something for you.
    In our videos, we break down the concepts of factors, prime, and composite numbers into easy-to-understand explanations and examples. We cover everything from the basic definitions and properties to more advanced topics like finding prime factors, prime number patterns, and prime factorization.
    Our goal is to help you not only understand these concepts but also appreciate the beauty and importance of numbers in our daily lives. For example, did you know that prime numbers are essential to modern cryptography and online security? Or that the discovery of prime numbers dates back to ancient civilizations like the Greeks and the Egyptians?
    In addition to our educational content, we also provide practice problems and solutions to help you test and improve your math skills. And if you're a visual learner, we offer interactive graphics and animations that bring these concepts to life.
    So, whether you're a beginner or an advanced learner, join us on this journey of discovery and exploration. Don't forget to like, share, and subscribe to our channel for more videos on factors, prime, and composite numbers. Let's dive in and unlock the secrets of math together!
    More Lessons: www.MathAndScience.com
    Twitter: / jasongibsonmath

ความคิดเห็น • 14

  • @jennifer.Russo.
    @jennifer.Russo. 3 หลายเดือนก่อน +1

    me in my 30's always hated math and until I watch you do math I suddenly know . thank u for your time I truly appreciated . I'm subscribed to keep learning as soon ill start college an have to take a placement exam thank u for your help ;]

  • @anniesizemore3344
    @anniesizemore3344 ปีที่แล้ว +5

    Like watching these math videos.

  • @Intergalactic123
    @Intergalactic123 ปีที่แล้ว +5

    This videos was more than great. It is incredible and I never had a great teacher in a lesson ever🎉🎉you deserve respect bro😊

  • @wilkyclergeot9416
    @wilkyclergeot9416 ปีที่แล้ว +2

    Thank you so much incredible teacher!!!

  • @tresajessygeorge210
    @tresajessygeorge210 4 หลายเดือนก่อน +1

    THANK YOU... SIR...!!!

  • @naderhumood1199
    @naderhumood1199 ปีที่แล้ว +1

    Great lesson......you're the best.....Sir....Thanks a bunch.

  • @drumtwo4seven
    @drumtwo4seven ปีที่แล้ว

    Nice 👍

  • @auntyconnie3941
    @auntyconnie3941 ปีที่แล้ว

    Thank you for your good jobs in sharing your knowledge with other people.

  • @jan-willemreens9010
    @jan-willemreens9010 ปีที่แล้ว +1

    ... So, if I understood your presentation well, it means that the only even number which can be a prime number is number 2 ...

  • @thatomofolo452
    @thatomofolo452 ปีที่แล้ว +2

    I know 🙋🙋 factors 1*3 is 3👈👈

  • @hemrajue3434
    @hemrajue3434 ปีที่แล้ว +1

    1 is neither a composite number nor a prime number. It's because,it doesn't figure in the prime factorisation tree.

  • @andizegeye2450
    @andizegeye2450 12 วันที่ผ่านมา +1

    ❤😂take You

  • @bozydarziemniak1853
    @bozydarziemniak1853 ปีที่แล้ว

    Check if a is prime number program:
    a - integer variable 'our number to check
    b - integer variable 'loop counter
    c (2 to a-1) - integer variable 'modulo (rest from dividing) of a and b
    d - binary variable 'switch equal 0 if a is the prime number and 1 if a isn't prime number
    d=0
    set a value from input
    if a=0 or a=1 then
    d=1
    else
    end if
    if a=2 then
    d=0
    else
    end if
    For b=2 to b=a-1
    c(b) = a mod b
    if c(b)=0 then
    d=1
    b=a-2 'stop this for loop
    else
    end if
    next b
    if d=0 then
    echo: "a - is prime number"
    else if d=1 then
    echo: "a - isn't prime number"
    end if