estimate the parameters of an equation

1 visualización (últimos 30 días)
Nikolas Spiliopoulos
Nikolas Spiliopoulos el 20 de Mzo. de 2017
Respondida: Steven Lord el 20 de Mzo. de 2017
Hi there,
I have a question:
I have an equation like this: 45=a*5^b;
is there any way to estimate a and b only from this equation?
thanks
  1 comentario
Adam
Adam el 20 de Mzo. de 2017
At a glance, without putting much thought into it I'd imagine there are an infinite number of solutions unless you are restricting yourself to integers only.

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 20 de Mzo. de 2017
No.
You are estimating 2 parameters with 1 (x,y) data pair. There is no unique solution.

Más respuestas (1)

Steven Lord
Steven Lord el 20 de Mzo. de 2017
Borrowing a problem from Cleve: "I'm thinking of two numbers. Their average is 3. What are the numbers?" I just wrote down my answer; I would be very surprised if you gave the same answer I wrote down.
Like Cleve's question, your question has infinitely many solutions. But if you want the solution for a in terms of b:
syms a b
f = 45 == a*5^b;
asol = solve(f, a)
check = isAlways(subs(f, a, asol))

Categorías

Más información sobre Mathematics en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by