Harvard University Interview Tricks.

Harvard University Interview Tricks.

Learncommunolizer

55 лет назад

24,191 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@moulaymoulay4443
@moulaymoulay4443 - 23.02.2025 20:01

Thanks

Ответить
@Md.JouelHossain
@Md.JouelHossain - 23.02.2025 20:57

Wow❤

Ответить
@ozgurcihanberk5470
@ozgurcihanberk5470 - 23.02.2025 21:11

You lenghten solution steps… it is not satisfactory

Ответить
@tonyennis1787
@tonyennis1787 - 23.02.2025 21:14

Great breakdown, thank you.

I don't know what constitutes a properly reduced answer. I took a different approach towards the end. My strategy was to make the integer component as large as possible.
1. 4^(x-2)=40
2. 4^x/4^2=40
3. 4^x=16(40)
4. x=logb4(640) # logb4 = base 4 as I don't know how to get my subscript on 😀

# Pull out the easy powers of 4
5. x=logb4(16*4*10)

6. x=logb4(16)+logb4(4)+logb4(10)

7. # Reduce the easy parts to integers
x=2+1+logb4(10)

8. # Simplify
x=3+logb4(10)

9. # Here's where we differ. I do not like that the 10 is greater than the base 4, since that means I have another integer in there somewhere.
# So I factor that 4 out. Remember, if brute force does not work, you aren't using enough of it!
x = 3 + logb4(4 * 2.5)
x= 3 + logb4(4)+logb4(2.5)

10. Now I want my integer!
x= 3 + 1 + logb4(5/2)
x = 4 + logb4(5/2)

11. Let's address that fraction
x = 4 + logb4(5) - logb4(2)

And I'd probably stop there as there are no fractions anywhere. I don't have a logical reason right now why I am not pulling an integer out of logb4(5) (I'll go try it to see what happens) but I suspect it's not going to increase clarity if I do.

Ответить
@williamBryan-k2e
@williamBryan-k2e - 24.02.2025 08:55

You took the long way around - here is what I did
4^(x-2) = 40
divid by 4

4^(x-3) = 10
take log


(x-3) log (4) = log (10 )
log 10 == 1

(x-3) log (4) = 1
divid by log(4)

x-3 = 1/log(4)
add 3

x = 3 + 1/log(4)
calculator

x = 4.66096
-------------------------

his answer
x = 3.5 + log2(5)/2
that log is 2.321928
divid by 2 and add 3.5 = 4.66096

Ответить
@GrerovAmbrozoyuz-f9t7w
@GrerovAmbrozoyuz-f9t7w - 24.02.2025 09:51

X=4.66905

Ответить
@svlee64
@svlee64 - 24.02.2025 14:29

Your solution steps are too long.
4^(x-2) = 4^1 × 10
(x-2)log4 = log4 + log10
x-2 = 1 + 1/log4
x = 3 + 1/log4 = 4.661

Ответить
@ganpatiganesh3964
@ganpatiganesh3964 - 24.02.2025 17:38

💯✔️👍🇮🇳

Ответить
@jeanlemire2681
@jeanlemire2681 - 24.02.2025 19:51

There is a faster way. Divide both sides by 4 to get 4^(x - 3) = 10. Then, since 4 = 2^2, you can write it (2^2)^(x-3) = 10 or 2^(2x - 6) =10. Divide both sides by 2 to get 2^(2x - 7) = 5. Then take the log on both sides to get (2x - 7) log(2) = log(5) which gives 2x - 7 = log(5) / log(2) then 2x = 7 + log(5) / log(2) and finally x = 3.5 + log(5) / log(2). I leave it like that since most calculators can calculate the log in base 10 and base e but not base 2.

Ответить
@Пользо
@Пользо - 25.02.2025 00:04

4,...?

Ответить
@GregCirigliano-sas
@GregCirigliano-sas - 25.02.2025 13:46

🥲

Ответить
@roguesoftware4free
@roguesoftware4free - 25.02.2025 15:39

x=log_4(640)

Ответить
@qahramonjurayev6693
@qahramonjurayev6693 - 25.02.2025 15:58

You are stupid or idiot

Ответить
@math_Magic4U
@math_Magic4U - 25.02.2025 17:05

your way is very easy to understand!

Ответить
@mohsenmalek4103
@mohsenmalek4103 - 27.02.2025 00:15

Hello 4^x/4^2=40 === 640/16=40 end

Ответить
@bigguyanddonkey6453
@bigguyanddonkey6453 - 27.02.2025 07:28

Thank you

Ответить
@ruudvnl
@ruudvnl - 27.02.2025 13:06

4 ^ (x - 2) = 40
x - 2 = log(base4)(40)
x = 2 + log(base4)(40)
x = 2 + log(40) / log(4) = 4,661

Ответить
@НадеждаЯрных
@НадеждаЯрных - 27.02.2025 14:47

Я методом подбора решила, что х равен минус 2.

Ответить
@mariuszluczkiewicz1232
@mariuszluczkiewicz1232 - 08.03.2025 05:10

Very sloppy notation; the equals sign should be at the same level as the fraction bar.

Ответить
@Spacebuddy-dm6ps
@Spacebuddy-dm6ps - 09.03.2025 05:30

Here’s a shortcut:
1. 4^(x-2)=40
2.x-2log4=log40
3.x-2=log4(40)
4.x=log4(40)+2

Ответить