#help-23
1 messages · Page 463 of 1
its correct, where is the problem ?
your last line is wrong. $\frac{b}{c}=\frac{a\cdot b}{a \cdot c}=\frac{a}{a}\cdot \frac{b}{c}\neq a\frac{b}{c}$
Alexander42
@timber atlas Has your question been resolved?
? I don’t get what you mean
in the last step you take the 2 out of the fraction (if you can call it like that). But you take it out of the denominator and out of the nominator. so insstead of multiplying $\frac{3\sqrt{5}-5}{5}$ with 2, you have to muliply it with $\frac{2}{2}$, because you need to multiply the denominator with 2 and the nominator with 2
Alexander42
So what is wrong?
$\frac{6\sqrt{5}-10}{10}=\frac{2\cdot(3\sqrt{5}-5)}{2 \cdot 5}=\frac{2}{2}\cdot \frac{3\sqrt{5}-5}{5}=1 \cdot \frac{3\sqrt{5}-5}{5}$ is what you should have done. Your last line is incorrect
Alexander42
Closed by @timber atlas
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Find the range of real alpha for which the following series converges
This was the provided solution, I don't understand why the sequence converging for alpha = 3/2 implies the series coverges for alpha - 3/2 < -1
@polar valley Has your question been resolved?
.close
Closed by @polar valley
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Try and compute the bounding boxes of the first few stages
Making this in paint would probably help
@lean otter Has your question been resolved?
There is some sort of fibonacci involved here
Closed due to timeout
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Hi how do I handle this question
Consider rewriting tan(2x) as sin(2x)/cos(2x) and tan(3x) as sin(3x)/cos(3x)
then?
So you get limit of (sin(2x)/sin(3x))*(cos(3x)/cos(2x))
The cos(3x)/cos(2x) basically approaches 1
So the limit is equal to the limit of sin(2x)/sin(3x)
Do you need help with evaluating limit of sin(2x)/sin(3x) as well or?
Feel free to .close
.close
Closed by @hollow ridge
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Is there a way to find number pairs in less than O(n^2) time? There was a question asked in my job interview where N is given and I'd have to find pairs (x,y) in sequence from"1 to N".
Conditions for a pair are
1 <= x <= y<= N
Sum of first x-1 numbers == Sum of x+1 till y
yes this is doable in O(n) time
I used AP formula to calculate sum for 1 to x-1 and x+1 till y
With the equation? I couldn't able to find the pattern
actually it's doable in O(n) time for an arbitrary sequence of increasing numbers
for the numbers from 1 to N it may be doable even faster with the equation
I first tried O(n^2) solution then tired to optimise it by using binary search to find y. But it's still slow for larger 1e16 integers
for 1e16 integers even O(n) is slow
Yeah
well
if you sum the numbers from 1 to b
and from 1 to a
and subtract the two sums
you get the sum of the numbers from a+1 to b
so you're looking for x,y such that (x-1)(x)/2 = y(y+1)/2 - x(x+1)/2 if I understand the problem correctly
(6,8) is an valid pair when N=8, because Sum([1...5]) == Sum([7...8])
so I think I understood it correctly
can you verify this formula to be true
Let me check, give me 2 min I'll code it quickly
just evaluate it, we're not done simplifying it
We don't know value ofy yet
or x
this is an equation that must hold if x and y are solutions (and if it holds then they're solutions)
Ah yes
now the problem is how to find x and y that satisfy this equation
Yeah
now we simplify
the /2 are unneeded
(x-1)(x) = y(y+1) - x(x+1)
(I multiplied both sides by 2)
move the xs all to the left
(x-1)x + x(x+1) = y(y+1)
factor x out on the left
x(x-1+x+1) = y(y+1)
the 1s cancel out
2x^2 = y(y+1)
and actually
divide by 2 again
x^2 = y(y+1)/2
you're looking for y such that the sum of numbers from 1 to y is a square number
for y < N
not 1 to y, we need sum(x+1 to y)
y=8 is the first such number that satisfies this, actually
can you write me a program that checks which numbers satisfy this real quick
Yes
i=1 j=1 x=0.0 y=0.0
i=6 j=8 x=15.0 y=15.0
i=35 j=49 x=595.0 y=595.0
i=204 j=288 x=20706.0 y=20706.0
i,j are x,y
I just used my previous code to calculate pairs till 500
interesting
I don't see a pattern at all
I found the sequence on oeis:
1, 8, 49, 288, 1681, 9800, 57121, 332928, 1940449, 11309768, 65918161, 384199200
Yeah, I spent 4 hours trying to find pattern
Then I wrote somewhat optimized brute force algorithm
I don't see how this would be doable for N=1e16
there are just
too many pairs here
even just returning the answer would take too long
are you sure it's not finding the largest pair or smth
I'm pretty sure because my code was working for first 3 test sets but was failing for larger test cases, I was getting Time Limit Exceeded for those remaining test cases
yes but 1e16 is ridiculous
I have taken screenshots of that question, if it's allowed then I can share it here
No, I failed that test
lol
Can we do it without knowing the (x,y)?
yes, finding the number of answers is very often easier than finding all of the answers
especially when there are this many answers
Omg, howw?
well, we have this sequence to analyze
yeah, that sequence is correct for y
hmm...
these numbers alternate between being squares and being 2x a square
you know
these number aren't actually that many now that I look at them
so maybe finding all of the pairs isn't slow either
ah!
the oeis has formulas for this
lmao
checking all pairs is takes time, so if I count that A001108 sequence till N then that might work?
a(n) = floor( (1/4) * (3+2*sqrt(2))^n )
yes
this is actually a really fast formula
so uh
I guess now the question turned into why this formula is correct
count numbers till N?
yep
god dammit euler, what have you not solved
were you allowed google on the interview?
I have no idea how one would reinvent this equation on their own in the span of 10 minutes
It was online, I could have googled but instead I thought the question was very easy and I wrote O(nLogn) Solution. Later I found out it was not correct.
I can tell you the O(n) solution I immediately thought of at the start tho
it's related to this classic problem: https://leetcode.com/problems/two-sum/
I've solved that already using a Hash Map
here is my solution for that problem
here's another solution that only works if the array is sorted:
two pointer method
yes
basically it relies on the fact that if you increase x then y needs to be smaller than what it would need to be for the previous x
this problem follows the exact same structure
if you increase x you need to increase y
so the two pointers but both of them starting on the very left works for an arbitrary number array
using this formula and iterating over every y is also O(n)
I'd probably have gotten to x^2 = y(+1)/2 and then do the O(n) search over y
yeah, but it would still take more than 5s to calculate it for 1e16 number
yep
did you verify this works btw?
it seems the formula was derived by solving a pell equation
which I've never seen in my life
me neither
maybe there's a recurrence relation
where you can get the next answer from the previous answer
or maybe the previous two answers
(1,1) and (6,8) are answers...
it's working
nice
<@&286206848099549185> can anyone explain this formula for finding the members of sequence A001108 ?
I've only managed to determine that it's related to recurrence relations and pell's equation... probably
no clue how
How A001108 and A001109 are related in those pairs?
A001108 is the index of a triangular number that is square
A001109 is the sqrt of such a triangular number
A001108 contains the number 8 and 8*9/2 is 36
A001109 contains 6 and 6*6 is 36
I really want to test that equation against real test cases.. for 1e16 numbers
I think for 1e16 the answer is 21
this formula finishes in literally an instant
why did they give you 5 whole seconds if that was the intended route
and if this is not the intended route then what is
there were multiple test cases
ah
so I/O would take time
5s for the whole suite
yeah
sounds about right
where did you find that formula on oeis ?
I don't know how they were expecting a fresh CS graduate would remember that formula...
Again thank you very much for explaining the solution...
.close
Closed by @weak pumice
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
why are you asking a math question if you're drowing?
Can you help me with this? @pulsar condor
Yes, however you're drowning, so that should be taking precedent
Just google the definition of a rhombus
i did
So read it
read the pic
Yeah, read the definition of a rhombus
That will dispel all issues you're having with it
cause it doesn't have to be a square
all a rhombus is, by definition, is a quadrilateral with all 4 sides equal.
if a rhombus is square then it has equal angles right?
Yes
but if the rhombus is not a square
then it doesnt have equal angles but only equal sides
so equal sides doesnt mean equal angles?
no
having equal sides and having equal angles doesn't mean anything in relation to one another
what makes angle unequal
why is that
because 2 is less than 3
because they're different numbers, yes
so 2 angles that are different, won't be the same
but they have a reason they have diff values so whats the reason for unequal angles
cause their measures are different
which is the exact same reason as 2 not being 3
why are they differwnt
Cant explain it any simpler
2 angles aren't equal, when they're different.
Draw 2 angles that are different, they wont measure the same angle
It's not that hard
Closed by @tawdry steppe
Use .reopen if this was a mistake.
dayum
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
How to solve 8?
what
But idk if I’m doing it right
Oh really
yeah
what x
ahhhh
ok
Ok
x/x+12 = 1/2
idk i hate these problems where they just use randomly placed shapes
Yeah I feel u
you cant figure out the correct fractions
Yeah junk it’s
I think it’s
15/25
Wait nvm…
Ye ur right
Ok
Ok I have C
X
@upbeat swan
yeah
1 sec so i draw it on paint
Remember it's a proportion, try reading it as
x is to number a
as number b is to number c
That represents
x --- a
b --- c
or
xc = ab
or
x/b = a/c
Example
If 2 is to x
as 3 is to 6
Notice that 6 is 2 times 3
So x should be 2 times 2
Ofc, this applies because the figures are similar
So they all in same proportion
Damn.
I have to turn it in rn
Like this
Thanks for the help though guys
I’ll get partial credit for it
Instead of 0
sorry i couldnt help. if there were triangles it would've been ez
@civic forum Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
how to do this i tried something but it doesnt work
What is the definition of x_y ?
yea, we didnt do this in school im studying for compsci competetion
i tried 1*(n^2)^2+1*(n^2)^1+1*(n^2)^0
I see… sorry for interrupting 😂 Nvm,bad at computer science.
What was the actual question?
find x
ahaha
actually if X_n=111_(n^2), what is X in base n
dont worry, its not a test
So this is a good first step, what can you do from here?
Well, you dont really want to solve it. How would you write that in base n?
Right idea, but not quite
Yes
np
also, you seem to know this with bases,is there a better way to do this other than converting everything into 1 base(most likely 10)
I dont think so, but converting from base 2 to base 16 is pretty easy, so if you can convert everything into base 16, that might work
You also probably need to know how to add, subtract, and divide base 16 numbers, so maybe converting it all to 10 would be best
yea, the thing is i dont know and dont want to learn because it doesnt really seem useful, dividing by base 16 8 2..
But I dont think you can do it without converting all of the numbers into the same base
substracting and adding is easy
ok thanks
also, sorry, while you're already here would you know if there is a faster way to do this (find all possible Xs) other than writing equations for every character
Do you know what DeMorgan rules are?
wait you can "move" to the other side
I dont think so
how did you get not x to the other side then
This is just using the DeMorgan identity $\lnot(A \wedge B)= \lnot A \vee \lnot B$
opfromthestart
oh sorry
which lets you replace the first by the second
So you should probably "distribute" to get rid of all of the parentheses and then see what you can combine
correct?
,rotate
but still i would need to check for each one right>
I think that is correct
Im not sure how you would solve it other than just doing it bit by bit from this point
yea, thank you <3
@past apex Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
can someone explain to me (in more detail), how they traversed these steps? For reference: log base is irrelevant, this is solving recurrences using tree recursion
my best attempt is simplifying it into
sum( 1 / ( logn - ilog3))
i am not sure how to go from there to a form that represents geometrc/ harmonic summation
we can also do (1/logn) Sum( 1 / (1- (ilog3 / logn) ))
which is of the form Sum(1/(1-r)), but the bounds do not fall into any of the categories of the summation series
@sterile saffron Has your question been resolved?
<@&286206848099549185>
Sub in the first few terms of i and also when i=log_3(n) and then you’ll see
@sterile saffron Has your question been resolved?
thank you, it makes more sense, i am now just confused on where the 1 comes from, i believe it's from i = log3n, but when we plug that in we get 1/0
so we set the boundary of the sum to be upto log3n -1, but what happens when i=log3n?
Closed due to timeout
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Can someone check if I set this up right
@deft notch Has your question been resolved?
@deft notch Has your question been resolved?
@deft notch Has your question been resolved?
@deft notch Has your question been resolved?
@deft notch Has your question been resolved?
How to solve this question using differentiation?
Closed due to timeout
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
i don't know how to do this lol. but im assuming you tried induction
?
I have not even tried that, I lost hope while trying to find some patterns
Was a stupid idea
oh okay, yeah again i have no idea but i would try induction on k
no idea how to show there are infinitely many n for a given k....
same
oh wait!
maybe for each k you can show that there only a finite number of n for which the number of prime
Contradiction
and therefore there must be infinitely many n for which the number is composite
If that’s not the case you will have a j from 1 to k such that
Any n great enough 2^n+3^n-j is prime
what about the infinitely many n part? sry your solution prbly handles it and im just not seeing it
If Finitely many n satisfy that, then there exists N, any n>=N, there is a prime in those k numbers
By pigeonhole
There must exist one j from 1 to k such that
2^n+3^n-j is prime for infinity many n
Sorry I said wrong
So not any n great enough but infinitely many n
But I didn’t solve it at all.it’s just an idea that I am forming
I am still developing it
@potent geyser Has your question been resolved?
@potent geyser Has your question been resolved?
I don’t know whether it will help, but I have transformed the question from proving the existence of infinitely many into proving the existence of just one n
If you have a n such that 2^n+3^n-1,…,2^n+3^n-k are all composite numbers, then there exists prime numbers p_1,…,_p_k such that 2^n+3^n-j=0 mod p_j for any 1<=j<=k. but 2^n+3^n-j mod p_j is a periodic sequence, so it has period T_j. Then I let T be a number divisible by any T_j, for example, T=lcm(T_1,…,T_k) or simply T=T_1…T_k, then any n’=n+mT, 2^n’+3^n’-1,…,2^n’+3^n’-k are also all composite numbers
So now we need to prove that any k, there exists (just one is enough) n such that 2^n+3^n-1 ,…,2^n+3^n-k are all composite numbers
Closed due to timeout
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
@broken yew #help-16 message what?
let me look
i didnt ask
It's not like there are an infinite number of cases to check
Closed by @fierce plaza
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
I trying study and I couldn't understand how do this problem.
When I look at the hints my brain not understanding what they did in these steps.
ok, well the first step is basically they took away 3x from both sides of the top equation
I see and that how they got 2x in the next step
you understand what they did with the next step?
think, what is the reverse of multiplication
Division
so what can you do to both sides to get rid of the 4?
Multiply by 1/4 on both sides
yep, same thing as dividing by 4
I thought you would distribute the 4 since it near the parentheses
that's also another way to do it
but you would still have to divide later
however, most people prefer to just divide
because it's faster than expanding and simplifying
Oh alright
another way to think about it is this
4g=y
you would just divide by 4 if you solved for g
right?
Yea
now image replacing that g with (2-y)
4(2-y)=2x
if you were trying to solve for y, you would just divide by 4
Alright
you understand why they got 1/2 x in the next step?
yes, now here is were we bring in the other equation
currently, after simplifying the top one, what equations do we have
go on
cancel out isn't the word you would use you here, but your thinking is correct
the word would be substitute
from the bottom equation we get the 2-y=6x
so 2-y can be represented by 6x in the same system
when you go to 2-y=1/2 x, you can sub in 6x for 2-y since they are the same thing
so now, what is the only possible answer for x
after you substitute in 6x
I not sure
well you equation is 6x=1/2 x
so think, what number can be multiplied by 6 and equal half it's value
1/2
It be 0
so applying the logic that any number times 0 is zero
try to do 6x=1/2 x again
you don't need to do math, just think logically
So x is 0
yep
and now you don't even need to solve for y
because what is 0 divided by any number
remember, 0/y can be written as 1/y * 0
It's -2
Subtract 2 by both sides
-y=-2
np
.close
Closed by @mighty garden
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
I have one more question
this is even simpler?
oh srry wrong question
What is the probability that a number selected from the numbers (1, 2, 3,..........,15) is a multiple of 4?
there
thats the question
is it 1/5?
i mean there are only a limited number of numbers out of 1 through 15 so just consider each number and count the number of multiples of 4 , so yeah. 4, 8 and 12 are the only multiples of 4 in the domain of [1,15]
one more question
sure
There are n sweets in a bag. 6 of the sweets are orange. The rest of the sweets are yellow. Hannah takes a random sweet out of the bag and she eats it. Hannah then takes at random another sweet from the bag. She eats it.
The probability that Hannah eats two orange sweats is 1/3
obviously
and so the problem is how many sweets are in the bag?
show that n^2-n-90=0
and
solve n^2-n-90=0 to find the value of n
"There are n sweets in a bag"
sure ill explain what you have to do
You have to reverse engineer the problem.
Note that she takes the sweet and eats it, meaning she takes a sample without replacement. That means that 1/3 is going to equal the product of two probabilities; it's going to be the product of 6/n and (6-1)/(n-1)
ok
Since no sweet is replaced we can make things easy. The probability that the first sweet is orange is 6/𝑛. Since she eats the first and doesn't replace. The probability of her eating another orange sweet is 5/(𝑛−1).
The probability of her choosing orange and orange is:6/𝑛∗5/(𝑛−1)=1/3.
Now simplify: 30/𝑛(𝑛−1)=1/3
Multiply by 3 and simplify: 90/(𝑛2−𝑛)=1.
Multiply by 𝑛2−𝑛: 90=𝑛2−𝑛.
Take away 90 from both sides: 0=𝑛2−𝑛−90
The key is that the object isn't replaced and its an and question. Oh and the value for n if 10.
that's absolutely correct! good job
les go
do you have any other questions or is that all?
can I give u a question?
why not
A jar contains four marbles: three red, one white. Two marbles are drawn with replacement.
(i.e. A marble is randomly selected, the color noted, the marble replaced in the jar, then a second
marble is drawn.)
List a sample space containing four outcomes.
List a sample space with sixteen outcomes.
Write the probability of each of the four outcomes in (a).
What are the probabilities of the outcomes in (b)?
What is the probability the colors of the two marbles match?
What is the probability the same marble is drawn twice?
its ez
want me to give u a hint?
no im well versed in probability but thanks
there are quite a bit of subproblems though so it might take me a minute or two to write out some of the answers
k
sample space with four outcomes:
(R,R)(R,W)
(W,R)(W,W)
sample space with sixteen outcomes:
(R,R)(R,R)(R,R)(R,W)
(R,R)(R,R)(R,R)(R,W)
(R,R)(R,R)(R,R)(R,W)
(W,R)(W,R)(W,R)(W,W)
probability of the outcomes in (a):
R,W: 3/16
W,R: 3/16
W,W: 1/16
R,R: 9/16
probability of each individual outcome in (b):
each outcome has 1/16 chance of occurring.
probability that the colors of the two marbles match?
this probability is equal to 9/16+1/16=5/8
probability that the same marble is drawn twice?
this probability is equal to 4/16=1/4
how did i do?
lemme check
i chose not to go with a tree diagram for the sample spaces because that would be incredibly difficult to pull off in discord
For this question, we consider that the first question if we have a sample space containing four outcomes and then we can just define like are robbery, then Read W means white. So we only consider the color and then in this case we have ar ar ar w w r w W. So we have four outcomes. If we only care about the color, then we can have a sample space with four outcomes and then if we can see the each marble differs from others and then we have we have four marbles in total and then we take two marbles intent And then in total we have 16 outcomes. The former roles are represented by 1234. So the outcomes will be (111) 213 14 21 to 2 to 3 to 4 through 132 problem. So in total we have 16 outcomes in this sample space and we get the probability for each outcome and so because we have three red marbles and one white. So for us we have a probability of 3/4 and there are word based 3/4 square, there is nine out of 16. And similarly we have the probability for rw, which is 3/4 times 1/4. And similarly we can get other and two outcomes probabilities and then we have the properties for the first um sample space for a second for each marble. We will have a probability of one or four. Then, for each combination in the sample space, the probability will be 1/16, which is 1/4 square. And then question E probably that kind of of the two models match means that we will have our own this means that we just need to sum up the probability of R and w w, which is 9/16 plus 1/16, which is 10/16 and is 5/8. The last question and it’s a marvelous joint tie. We will have 112233 or 44. And some of these four probabilities From the second question and then we know that it is one or 4. There’s 1/16 times four, so it’s 1/4.
is this the answer you had for this problem?
yessir
seems like we have similar solutions
Closed by @crisp wren
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
I need help finding out a semester total using the quiz total and final exam total
rogerhub??
idk
or u could j calculate the class weights and do the multiplication and add them together
like do u know the class weightws
I mean it’s really 2 simply numbers that I’m struggling to figure out for some reason
I don’t no
Like my first quizzes I got 85/100 and then my finals I got 83/100
Like how much is the overall of that term
finals are worth more than quizzes though
Yea
right
uhh idk i thought it mostly had to be calculated w class weights/what each category on your overall course summary states
if that makes sense
Ughh this is stressing me lmao
Then your current grade is (quiz grade times quiz percentage) + (final grade times final percentage)
It should be that
Got it
like whatever else u do in class that counts towards ur grade
do u have the syllabus
Uh
im p sure all syllabi state their category weights
Projects Homework Classworks
yes is there like any mention of percentages along w those
Not at all
like how much of each category counts towards the 100% of ur grade
Just a grade /100
oh ://
hahah yeah intl schools have weird grading systems
Can you post a screenshot of the syllabus? Just the section with the categories
Like hw, exams, etc
or a picture if ur teacher/prof handed it out in person
Alright one sec
Windows + Shift + s
the part w the categories
Alright
and anything mentioning each category if it says something abotu percentages
here it is
nothing mentioning percentages
man them not showing more details is dumb
Yea it is
uhh can u try clicking on mathematics us adv
which is what ur taking rn right
or what u need to calculate the grade for
Nothing shows up
?????
I guess I do need percentages to calculate it properly
okay what about this part
like whered u find that
What exactly are you trying to calculate?
like the first pic
overall grade i think
the total of the semester
after they took quizzes and a final
^
For a specific class?
yes
huh
im very shit at explaining
The 85.83
does your school website have like your own personal login
oh okay
like look im ashamed to say this but the first term i did very bad
so each of the numbers underneath "ratio" is what you received in each class?
Explain clearly what on earth you want to do
or is it what you got on the final in each class
yes yes that one
Look ill show you a horrible term i had maybe that could help
okay but you said you got a 83 on ur finals
does that mean u averaged out each of ur course final grades
uhh yeah maybe if you know what each of the grades are (like in each category)
you know what im sorry for the hassle
????
okay look i cant tell u like what exactly u got on the overall term grade but since you have a 85-ish on your final avg and you got around the same on your quizzes im going to assume u turn in ur homework/classwork/projects in on time and j say u have like a very low a or (more likely) a mid-low b
It is because you are not providing enough details on what you want to do
@west coral Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Those twos are not equivalent
The blue underlined should be 1/2
Am I tripping or the teacher
<@&286206848099549185>
sin²θ+cos²θ=1, and you have another 1, so 1+1=2.
(The teacher wrote the 1 in yellow)
You should know that you have to wait at least 15 minutes before pinging helpers
I see
I’m sorry
The question is solved
.close
Closed by @west hedge
Use .reopen if this was a mistake.
Thank you castle
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Hello, here is the pic. If anyone can help, that would be amazing. I've been trying to understand it all day but I've had no luck. Thanks!
@brazen kraken Has your question been resolved?
Closed by @brazen kraken
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
i tried saying by way of contradiction assume p1>sqrtn and p2>sqrt n
idk where to go with this
@lean otter Has your question been resolved?
<@&286206848099549185>
@lean otter Has your question been resolved?
no one knows?
yup.
Now what can you say about p1 • p2?
You assumed that they are both factors of n
You also assumed that p1 > √n, and that p2 > √n
p1 p2 > n
?
i dont think u can say that
You can
what if p1 = 0.8 and p2 = 0.9 and n = 0.78
Good question: I think you assume that n, p1, and p2 are positive integers
.close
Closed by @azure fossil
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
can i get some help with this
not sure how or where to start with this
uh can u give an example
i dont understand what u mean
oh so like bounding?
yeah but not sure how that would help
It surely surely does.
The arithmetic mean of two numbers is?
For example, tell for 11 and 15.
Good.
We did a+b/2
Right?
Although let's leave this, I'll help you proving some other way.
Alright?
that'd be better
I would explain you this way but you probably don't know geometric mean.
i dont think ive taken arithmetics
So let's try something else
No we'd use an inequality from there. But leave that.
So
Expand
[(sin^n(x)+cos^n(x)]²
It's as simple as (a+b)^2
sin^n2 + cos^n2 + 2cos^n sin^n
Good.
Now let's take sin^nx as a because it is not looking very cool rn.
Let $sin^n(x)=a$
Alright?
Sakata Yaksha
ok
a^2 + b^2 - 2ab
wdym range
sry if im not understanding u much but curriculum was reduced due to covid
Minimum value is for (a-b)^2 is?
It's completely alright.
Even if you don't know lots of stuff, it's fine at some point no one did.

how do u calc that
yeah
1
2^2?
4
(-1)^2?
1
Can anything squared be negative?
no
Can it be zero?
ye
So 0 is the minimum value?
if its 0
Well?
yea?
ye
Sakata Yaksha
Expand.
a^2 + b^2 - 2ab > 0
add 2ab both sides.
a^b +b^2 = 2ab
ye dont have that on my keyboard
Hm just write geq I'll understand.
ok
Sakata Yaksha
So is it true?
ye
Expand.
a + b - 2√a√b
≥0 yes. Now add 2√a√b both sides.
a + b geq 2√a√b
sin^n
||You should realise by now, we already are done.||
👍
I'll solve then close if i dont have no ques
As you wish.
.close
Closed by @dusk berry
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
There is an equation 3x-1y+z = X, how do I find the value of x,y,z..?
I studied it in school many years back, I don't know whether that equation is called as linear equation ?
I don't remember how to solve such equations
Could anyone please help me?
what is X
X is an number, I wanted to know whether it is possible to get LHS==RHS
its not
at least i think so
you have 3 unknowns and 1 equation
dont think its possible
My problem if it's possible to get LHS==RHS then print the x,y,z values
idk what that is
I was coding a solution
here is the question
x+y+z = N
@weak pumice Has your question been resolved?
Closed by @weak pumice
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Oh wait im terribly sorry
I read the question wrong
so there are 9 rows of first class and t seats in each of these rows
how many seats do you think that is?
@quartz cliff Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Hello,
Algebra question,
In school we have been learning how to factor polynomials.
An example of my quarry is something like:
x^2 + 10x + 21
And we would be expected to turn this into:
(x + 7) (x + 3)
We would need a number that would add to 10 and multiply to 21.
We were taught to guess and check to find these numbers.
Is there an easier way than guessing, an equation to plug numbers into or something?
you could find the roots of your polynomial
On your calculator would be easier, if you can
Otherwise the formula whic will take a bit
Ok
^^^
Here
Change the + or - for both the results
Takes some time remembering but if you cant be bothered guessing then theres that
on your question of factoring faster, once you get more practice in, you'll be able to see it a lot quicker
That too ^^ but its nice to learn this formula for future maths!
To find if equations have one root, two or none etc
Yeah we’ve only done really small and easy numbers so far
Does this help you?
Closed by @velvet laurel
Use .reopen if this was a mistake.
Send your question here to claim the channel.
Remember:
• Ask your math question in a clear, concise manner.
• Show your work, and if possible, explain where you are stuck.
• After 15 minutes, feel free to ping <@&286206848099549185>.
• Type the command .close to free the channel when you're done.
• Be polite and have a nice day!
Read #❓how-to-get-help for further information on how to ask a good question, and about conduct in the question channels.
Hello can someone give me a hint how to approach this, like which method should I use: disk, washer, slicing, or shell
I’m thinking of slicing but since it’s only partial of the whole object, I am hesitant to proceed
Have you looked at radians before?