Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

JavaScript Program to Check Amicable Number

Updated on Sep 13, 2024
By Mari Selvan
πŸ‘οΈ 39 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
JavaScript Program to Check Amicable Numbers

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the realm of programming, exploring number properties is a fascinating journey. One interesting concept is that of amicable numbers.

Amicable numbers are two numbers that share a unique relationship: the sum of the proper divisors of each number is equal to the other number.

In simpler terms, the sum of the divisors of one number is the other number itself.

In this tutorial, we'll explore a JavaScript program designed to check whether two given numbers form an amicable pair.

The program will identify and compare the sum of proper divisors to determine if the numbers form an amicable pair.

πŸ“„ Example

In this tutorial, we'll explore a JavaScript program designed to check whether two given numbers form an amicable pair.

areAmicable.js
Copied
Copy To Clipboard
// Function to calculate the sum of proper divisors of a number
function sumOfDivisors(num) {
  let sum = 1; // Start with 1 as every number is divisible by 1

  for (let i = 2; i * i <= num; ++i) {
    if (num % i === 0) {
      sum += i;
      if (i !== num / i) {
        sum += num / i;
      }
    }
  }

  return sum;
}

// Function to check if two numbers are amicable
function areAmicable(num1, num2) {
  return sumOfDivisors(num1) === num2 && sumOfDivisors(num2) === num1;
}

// Replace these values with your desired numbers
const number1 = 220;
const number2 = 284;

// Check if the numbers are amicable
if (areAmicable(number1, number2)) {
  console.log(`${number1} and ${number2} are amicable numbers.`);
} else {
  console.log(`${number1} and ${number2} are not amicable numbers.`);
}

πŸ’» Testing the Program

To test the program with different numbers, replace the values of number1 and number2 in the code.

Output
220 and 284 are amicable numbers.

Run the script to check if the numbers form an amicable pair.

🧠 How the Program Works

  1. The program defines a function sumOfDivisors to calculate the sum of proper divisors for a given number.
  2. Another function, areAmicable, checks whether two numbers are amicable by comparing the sums of their proper divisors.
  3. The program then tests the amicability of two numbers and logs the result.

🧐 Understanding the Concept of Amicable Numbers

Amicable numbers exhibit a unique relationship where the sum of the proper divisors of each number is equal to the other number.

For example, the pair (220, 284) is amicable because the sum of divisors of 220 is 284, and the sum of divisors of 284 is 220.

🎒 Optimizing the Program

While the provided program is effective, you may explore optimizations such as caching the results of the sum of divisors to enhance performance for repeated calculations.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
7 months ago

If you have any doubts regarding this article (JavaScript Program to Check Amicable Number), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy