How to input 3^2x . Sqrt(9) =729 the answer is 3

3^2x . Sqrt(9) = 729

7 Comments

So
3^6 * sqrt(9) = 3^7 = 729
?
Or how should I interprete
3^2x . Sqrt(9)
?
I mean 3 power of 2x multiply square root 9 equal to 729 find x
And the answer is 3.how to put the input
The answer is not 3, but 2.5.
f = @(x) 3.^(2*x) * sqrt(9) - 729;
x = fzero(f,1)
Yes youre right thankyou very much
And does
f = @(x) 3.^(2*x) * sqrt(9) - 729;
x = fzero(f,1)
answer your question on how to get x ?

Sign in to comment.

Answers (1)

Sam Chak
Sam Chak on 29 Mar 2022
Edited: Sam Chak on 29 Mar 2022
Unsure of what the 'x' mean in the line. If x means multiplication, then enter this:
(3^2)*sqrt(9)
ans = 27
In Math:
Edit:
Since you have clarified that,
fun = @(x) (3^(2 + x))*sqrt(9) - 729; % function
x0 = 2; % initial point
x = fzero(fun, x0)
x = 3
This assumption satisfies the equation.

13 Comments

The question is 3 power of 2x multiply by square root 9 equal 729. Find x.the answer is 3
I have edited the answer. Please check if the equation looks like this:
Why 3^(2+x) ? It's 3^(2*x) ...
Sam Chak
Sam Chak on 29 Mar 2022
Edited: Sam Chak on 29 Mar 2022
I just made an educated guess only , and that maybe @Muhammad syafikh Mohd umar copied/pasted the equation wrongly. Or, perhaps your answer x = 2.5 is the correct one, but there is a typo in his answer sheet: x = 3. Printing errors in exercise books are common. :-)
My apologies the answer is 2.5
What is the symbol after the 2 in the exponent?
Just a bit curious. This problem seems related to Indices and Logarithms in High School Math. Does the teacher require solving it with MATLAB? Or you just want to confirm the answer using any computational software, like MATLAB?
Yes by using modern tool and i dont know how to put input in matlab
Thanks for your reply. If a single variable math problem can be transformed into a root-finding problem, , then you can use fzero to find the solution in most cases. For more info, please check out:
Thankyou very much for helping me

Sign in to comment.

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!