Posts

Showing posts from February, 2023

Heritage of Ramayana

Image
  Diversity In Ramayana                                 Ramayana Is Very Familiar Book For Every Person Who Admires Hindu Religion .Not Only Hindu Religion It Is Admired By Any Other Religion People. Ramayana Is Book Of Hindu Religion But It Couldn’t Be Limitised To Hindu Religion Only. Being A Story Of Love And Relations It Show A Pictorial Dramatic And adventurous Story Of Rama .So That’s Why It Is Always Being Admired And Respected By Readers Who Are Really Admires The Novels Like adventerous And Tragedic Situations With varied Characters With Different Opinions And Mindsets . So Ramayana Is Not Visioned As Religions Book Only But Also Readers Keep It As A Book Of Social And Acknowledged ,It Brings Readers Into A Deep Ocean Of Story And Attraction                    So Writers Also Make Choice Its To Modify And Changes Its Version Chronologically . Several Indian And Foreign Writers Are Made Changes In Ramayana According To Their Vision And Add New Situations Which Are Ver

Variants of Primes |

Image
   There huge variants of primes numbers are existed in mathamatics these are useful in different mathematical and physical fields. Composite numbers: A composite number is a positive integer greater than 1 that is not a prime number, i.e., it can be divided evenly by more numbers than 1 and itself. Examples of composite numbers are 4, 6, 8, 9, 10, 12, and so on. Prime numbers: Natural numbers greater than 1 that are only divisible by 1 and themselves. Means, They contains only two factors 1 is common factor for all the primes 1 is not neither prime nor composite 2 is only even prime exist. Code: def is_prime(num):     if num <= 1:         return False     for i in range(2, num):         if num % i == 0:             return False     return True num = int(input("Enter a number: ")) if is_prime(num):     print(f"{num} is a prime number.") else:     print(f"{num} is not a prime number.") Variants in primes:

Number Theory

  Number Theory & Programmings Basically we all are know about different numbers in mathamatics like natural numbers whole numbers etc.... But in some advanced mathamatical modelling we need and we determine some special number cases these have unique properties and used in different fields like computers, quantum mechanics, cosmology, and other ratiinal fields. Fist we started with basic numbers and finally discuss special numbers