. Day 2 - Problem 1 - Prime Number Checker Skip to main content

Day 2 - Problem 1 - Prime Number Checker

 Prime Number Checker in JavaScript

Prime numbers hold a unique fascination in the world of mathematics and computer science. Their simplicity and rarity make them intriguing objects of study, with applications ranging from cryptography to number theory. In this blog post, we'll explore the concept of prime numbers and walk through the process of building a prime number checker using JavaScript.

Understanding Prime Numbers:

A prime number is a positive integer greater than 1 that has no positive divisors other than 1 and itself. In simpler terms, a prime number is a number that cannot be evenly divided by any other number except 1 and itself. The first few prime numbers are 2, 3, 5, 7, 11, and so on.

The Importance of Prime Numbers:

Prime numbers play a crucial role in various fields, including cryptography, where they are used to ensure secure communication over the internet. They are also essential in number theory, a branch of mathematics that deals with properties and relationships of numbers. The uniqueness of prime factorization is a fundamental concept in number theory, serving as the basis for many mathematical proofs.

The Prime Number Checker Algorithm:

Let's dive into the code to create a JavaScript program that checks whether a given number is prime or not. Here's the implementation:

 

 


function isPrime(number) {
  if (number <= 1) {
    return false; // 0 and 1 are not prime numbers
  }

  if (number <= 3) {
    return true; // 2 and 3 are prime numbers
  }

  if (number % 2 === 0 || number % 3 === 0) {
    return false; // Numbers divisible by 2 or 3 are not prime
  }

  // Check for divisibility with numbers of the form 6k ± 1, where k is an integer
  for (let i = 5; i * i <= number; i += 6) {
    if (number % i === 0 || number % (i + 2) === 0) {
      return false;
    }
  }

  return true;
}

// Test cases
console.log(isPrime(2));   // true
console.log(isPrime(17));  // true
console.log(isPrime(25));  // false
console.log(isPrime(97));  // true


How the Algorithm Works:

  1. The isPrime function takes an integer as input.
  2. It quickly eliminates the cases where the number is less than or equal to 1, as well as cases where the number is divisible by 2 or 3.
  3. The algorithm then checks for divisibility with numbers of the form 6k ± 1, where k is an integer. This optimization significantly reduces the number of checks needed to determine primality.
  4. The function returns true if no divisors are found within the specified range, indicating that the number is prime.

 Demo:

Prime Number Checker

Conclusion:

In this blog post, we've explored the fascinating world of prime numbers and built a JavaScript program to determine whether a given number is prime. Prime numbers have deep mathematical significance and practical applications, making them a captivating topic for exploration. As you delve further into the realms of mathematics and programming, remember that prime numbers are more than just numbers; they are the building blocks of many intricate systems that shape our modern world.

Now write the program to check Primer number in your programming languages in comments.

Complete the Day -1 Challenges first - 

  1. Palindrome Checker
  2. Sum of Even Numbers
  3. Finding Factorials

Comments

Popular posts from this blog

Day 9 - Challenge 1 - Product of Array Except Self

Solving the "Product of Array Except Self" Problem in JavaScript Are you ready to dive into a common coding challenge that not only tests your programming skills but also sharpens your problem-solving mindset? If you're up for the challenge, let's tackle the "Product of Array Except Self" problem together using JavaScript. This problem requires us to return an array where each element at index i is the product of all the elements in the original array except the one at index i . Understanding the Problem:   Imagine you're given an array of integers, let's call it nums . Your task is to create a new array where the value at index i in this new array is the product of all the elements in nums , except the one at index i . In other words, you're calculating the product of all the elements to the left of nums[i] and the product of all the elements to the right of nums[i] , and then multiplying these two products to get the final value at index i ...

Day 9 - Challenge 2 - Reverse Linked List

Reversing a Singly Linked List in JavaScript: An In-Place Approach Introduction:   Singly linked lists are fundamental data structures in computer science that consist of a sequence of nodes, each containing data and a reference to the next node in the list. Reversing a singly linked list is a classic problem that challenges programmers to manipulate pointers effectively to achieve the desired outcome. In this blog post, we'll explore the problem of reversing a singly linked list using an in-place approach and provide a step-by-step solution in JavaScript. Problem Statement:   Given the head of a singly linked list, our task is to reverse the list in-place and return its new head. In other words, we need to modify the pointers of the nodes in such a way that the direction of the linked list is reversed. Solution Approach:   To solve this problem, we will iterate through the linked list while maintaining three pointers: previous , current , and next . The previous pointer...

Day 8 - Challenge 2 - Move Zeroes to the End

Moving Zeroes to the End: A JavaScript Solution Introduction:   When working with arrays, there are often times when we need to manipulate their elements to achieve a specific goal. One common problem is moving all zeroes to the end of an array while keeping the order of non-zero elements unchanged. In this blog post, we will explore an elegant solution to this problem using JavaScript. We'll discuss the problem statement, the approach we'll take, and provide a step-by-step guide to implementing the solution. The Problem:   Given an array of integers, the task is to move all zeroes to the end of the array while maintaining the relative order of the non-zero elements. This means that after rearranging the array, all the zeroes should be at the end, and the order of the non-zero elements should remain the same. The Approach:   To solve this problem, we can utilize a two-pointer approach. We'll maintain two pointers, one for iterating through the array and another for keepin...