Sunday, October 12, 2025
HomeData Modelling & AIPair of integers (a, b) which satisfy the given equations

Pair of integers (a, b) which satisfy the given equations

Given the system of equations a2 + b = n and a + b2 = m. The task is to find the number of pair of positive integers (a, b) which satisfy the equation for given n and m.
Examples: 
 

Input: n = 9, m = 3 
Output:
Explanation: 
Only one pair (3, 0) exists for both equations satisfying the conditions.
Input: n = 4, m = 20 
Output:
Explanation: 
There are no such pair exists. 
 

 

Approach: 
The approach is to check for all possible pairs of numbers and check if that pair satisfy both the equations or not. For this we have, 
 

   a2 + b = n ... (1)
   a + b2 = m ... (2)
For equation (2), 
=> a = m - b2 ... (3)

 

  • Now for the positive value of a, every value of b must be from 0 to sqrt(m).
  • Obtain the value of a from equations (3).
  • If the pair (a, b) satisfy equation (1), then pair (a, b) is the solution of system of equations.

Below is the implementation of the above approach: 
 

C++




// C++ program to count the pair of integers(a, b)
// which satisfy the equation
// a^2 + b = n and a + b^2 = m
#include <bits/stdc++.h>
using namespace std;
 
// Function to count valid pairs
int pairCount(int n, int m)
{
    int cnt = 0, b, a;
    for (b = 0; b <= sqrt(m); b++) {
        a = m - b * b;
        if (a * a + b == n) {
            cnt++;
        }
    }
    return cnt;
}
 
// Driver code
int main()
{
    int n = 9, m = 3;
 
    cout << pairCount(n, m) << endl;
 
    return 0;
}


Java




// Java program to count the pair of integers(a, b)
// which satisfy the equation
// a^2 + b = n and a + b^2 = m
class GFG
{
 
// Function to count valid pairs
static int pairCount(int n, int m)
{
    int cnt = 0, b, a;
    for (b = 0; b <= Math.sqrt(m); b++)
    {
        a = m - b * b;
        if (a * a + b == n)
        {
            cnt++;
        }
    }
    return cnt;
}
 
// Driver code
public static void main(String[] args)
{
    int n = 9, m = 3;
    System.out.print(pairCount(n, m) +"\n");
}
}
 
// This code is contributed by 29AjayKumar


Python3




# Python3 program to count the pair of integers(a, b)
# which satisfy the equation
# a^2 + b = n and a + b^2 = m
 
# Function to count valid pairs
def pairCount(n, m):
    cnt = 0;
    for b in range(int(pow(m, 1/2))):
        a = m - b * b;
        if (a * a + b == n):
            cnt += 1;
         
    return cnt;
 
# Driver code
if __name__ == '__main__':
    n = 9;
    m = 3;
    print(pairCount(n, m));
     
# This code is contributed by 29AjayKumar


C#




// C# program to count the pair of integers(a, b)
// which satisfy the equation
// a^2 + b = n and a + b^2 = m
using System;
 
class GFG
{
 
// Function to count valid pairs
static int pairCount(int n, int m)
{
    int cnt = 0, b, a;
    for (b = 0; b <= Math.Sqrt(m); b++)
    {
        a = m - b * b;
        if (a * a + b == n)
        {
            cnt++;
        }
    }
    return cnt;
}
 
// Driver code
public static void Main(String[] args)
{
    int n = 9, m = 3;
    Console.Write(pairCount(n, m) +"\n");
}
}
 
// This code is contributed by 29AjayKumar


Javascript




<script>
// javascript program to count the pair of integers(a, b)
// which satisfy the equation
// a^2 + b = n and a + b^2 = m
 
// Function to count valid pairs
function pairCount(n , m)
{
    var cnt = 0, b, a;
    for (b = 0; b <= Math.sqrt(m); b++)
    {
        a = m - b * b;
        if (a * a + b == n)
        {
            cnt++;
        }
    }
    return cnt;
}
 
// Driver code
var n = 9, m = 3;
document.write(pairCount(n, m));
 
// This code is contributed by Amit Katiyar
</script>


Output: 

1

 

Time Complexity: O(sqrt(min(n,m))

Auxiliary Space: O(1)
 

Feeling lost in the world of random DSA topics, wasting time without progress? It’s time for a change! Join our DSA course, where we’ll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 neveropen!

RELATED ARTICLES

Most Popular

Dominic
32352 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6720 POSTS0 COMMENTS
Nicole Veronica
11885 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6840 POSTS0 COMMENTS
Ted Musemwa
7105 POSTS0 COMMENTS
Thapelo Manthata
6795 POSTS0 COMMENTS
Umr Jansen
6795 POSTS0 COMMENTS