edited by
1,116 views
3 votes
3 votes

How many pairs of positive integers do $m$ and $n$ satisfy in $\frac{1}{m}+\frac{4}{n}=\frac{1}{12}, $ where $n$ is odd and less than $60?$

  1. 3
  2. 5
  3. 7
  4. 9
edited by

2 Answers

5 votes
5 votes
Answer : 3 pairs

1/m + 4/n = 1/12

1/m = 1/12 - 4/n = (n-48)/12n

m= 12n / (n-48)

so we can say that n>48

given that n is odd and less than 60 i.e  possible odd values of n are 49,51,53,55,57,59

48<n<60

when n=49

m=12*49=588

when n=51

m=12*51/3=204

when n=53

m= non integer value

when n=55

m=non integer value

when n=57

m=76

when n=59

m=non integer value

so the pairs are (49,588) , (51,204) and (57,76)

Related questions

3 votes
3 votes
4 answers
1
manikgupta123 asked Apr 29, 2019
1,806 views
What is the time complexity to delete an arbitrary node from binary heap?O(n)O(log n)O(1)O(n log n)
1 votes
1 votes
4 answers
2
manikgupta123 asked Apr 29, 2019
1,337 views
Which of the following gives O(1) complexity if we want to check whether an edge exists between two given nodes in a graph?Adjacency ListAdjacency MatrixIncidence MatrixN...
0 votes
0 votes
1 answer
3
manikgupta123 asked Apr 29, 2019
998 views
Which part in 8086 microprocessor is responsible for fetching instructions into the queue?BIUEUStackRegisters
3 votes
3 votes
4 answers
4
manikgupta123 asked Apr 28, 2019
1,706 views
What is the time complexity for insertion in binary tree in worst case?O(1)O(log n)O(n)O(n log n)