Logarithm question, finding all possible pairs of integers

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
6 replies · 2K views
trot
Messages
6
Reaction score
0

Homework Statement


Find all possible pairs of integers a and n such that:

log(1/n)(√(a+√(15)) - √(a -√(15)))=-1/2

(that's log to the base (1/n))


The Attempt at a Solution



(1/n)^-1/2 = (√(a+√(15)) - √(a -√(15))
∴ n^4 = (a+√(15) - (a -√(15) - 2√((a+√15)(a -√(15))
∴ n^4 = =2√(15) - 2√((a+√15)(a -√(15))
eventually simplifying to:
n^(16)-√(15)n^4 =4a^2

dont know how to solve, probably made mistake

question is from core 3 edexcel and is worth 13 marks
 
Physics news on Phys.org
micromass said:
OK, but maybe we should let the OP solve it? :-p

Knowing no clever way to solve specifically for integer solutions, would a BASIC FOR loop be acceptable? I would run n from about 0.100 to 50, incrementing by 0.100 for each step. a would be calculated in each run through the loop.

( I know no clever, fancy way to find the integer solutions for this rational equation but I believe a BASIC program can expose some integer number pairs for n and a ).