#help-36
1 messages · Page 183 of 1
i did not expect that to work
wait..
does it do history tho O.o
,w who was the first president of the united states
?
,w current president of Cuba
I was going to say "if you've ever used Siri in the early 2010s..." but then I remembered I'm somehow simultaneously young and old
,w who started the french revolution
yo folks, might wanna experiment elsewhere.
not in a help channel.
Nice ✅
yeah but this is a calculator
imagine if ilr calculators could do this
No, the conclusion would've been "...Siri would parse questions like how WA's 'input interpretation' works"
In any case, I'm gonna take a punt and assume this question is solved, so
!done
If you are done with this channel, please mark your problem as solved by typing .close
Then it'd've done this, wouldn't it
if it said a previous president, you can doorslam WA by .closeing the channel
Closed by @urban wasp
Use .reopen if this was a mistake.
i'll report you if you do
its a joke 😭
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.
in this for example would the answer be like f(x+2)+1 or do we have to identify what function it is and then do x+2 inside its brackets like if there was graph of √x we would do (√(x+2)) + 1 ?
Closed by @spare moth
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.
Problem Statement: Given an array of intervals, merge all the overlapping intervals and return an array of non-overlapping intervals. how do i start with this? i also do not fully understand what it is trying to say.
If for example you're given { [2, 5], [3, 7], [9, 12] }, you need to return { [2, 7], [9, 12] }
what exactly is this type of array called?
also, still did not get the question. are we just printing something which does not get "paired"?
It's just an array of intervals
You can make arrays of whatever you want
See how the red and blue lines overlap, but the green doesn't?
okay, makes sense
The question asks you to return the purple lines
but since there's two values in each of the elements, how exactly do i check what overlaps what? i do not think this can be done with indexing, right?
yes, that makes sense; thank you
like, for instance, i want to print the second value of [2, 5]
how would i do that?
do we require another data structure for this? or no?
Yes
Well you could do it with one array of integers, where the even indices are starts of intervals and the odd indices are ends
But it's clunky
What you probably want to do is create an "interval" structure with two integer members "start" and "end"
can you please write that down for me?
Just { 2, 5, 3, 7, 9, 12 }
like a struct in c?
Yes
okay, this makes it a lot easier but that would not make sense to a third person, no? is this not bad practice?
I did say it's clunky
If you're writing code for your present self and only your present self, then it's fine
Just don't expect other people or even your future self to understand it
That's basically what "bad practice" boils down to
i would still like to write the code down for it though
and after that i will do it with a struct
Like as a challenge?
It won't really teach you anything more than doing it with a struct
okay, so if we do it with a struct
do we do it like this:
we create a struct, say s, which has two variables: "start" and "end"
we check if "start" of the second term is less than "end" of the first term
if yes, we update "end" of the first term with "end" of the second term
and so on
and if we find any element which does not have any other element with "end " > "start" of it, we return that
Yeah but you don't want duplicates, you'd need to delete one of the overlapping intervals
Or just build a new array
{[2, 5], [3, 7], [9, 12]}
Also please don't call it s 
how exactly are we getting duplicate values? are we not just keeping track of the starting and the ending index of each element, and not of the "numbers" they have in-between?
what else?
Interval
If you're updating the input array in-place, you'll end up with {[2, 7], [?, ?], [9, 12]}, where the ? depend on what you do that you haven't specified yet
It gets worse the bigger and more complex the code becomes
can we do something like
Code should be written to be human-readable first (unless optimization concerns take precedence), and descriptive names, for both variables and types, is one of the most basic ways to do that
(again, if you're writing code for your present self and only your present self, then... whatever)
i get it, i will work on it
so, we have {[2, 5], [3, 7], [9, 12]}
we know that [2, 5] and [3, 7] are going to get merged
and it then becomes [2, 7]
so what we do is, we check if [3, 7] overlaps with any other element
if not, we remove it from our array
if yes, we repeat the same process
If [3, 7] overlaps with something, then so does [2, 7]
correct, sorry
So you can just remove [3, 7] anyway
this sounds like a lc
what did you mean by removing duplicates, then?
i just found it online
ah, is [3, 7] a duplicate here
would "duplicate" be the right term for it?
Maybe not, but you got the point
what impact does creating a new array to store these elements make on space complexity of this algorithm?
rather than updating the elements as you go
also, here, i was thinking more of
[2, 5] and [3, 7] have 4, and 5 as duplicates
It's kind of an ambiguous question; if you count the input in the space complexity, none; if you don't, then the space complexity becomes constant
Oh I see, sorry that's not what I meant
got it, thank you
oh
do i declare the type of array a as int or as interval?
If you made an Interval struct, then use that
#include <iostream>
#include <struct.h>
struct interval
{
int start;
int end;
};
int main()
{
n = 3;
interval a[n];
for (int i = 0; i < n; i++)
{
cout << "enter an interval: ";
cin >> a[i].start;
cin >> a[i].end;
}
}``` does it work like this? or no?
Yes
yay
Wait what is struct.h?
No 
A set is a type from the standard library
struct isn't a type, it's a keyword for making types
It's part of the language
It's probably a system file, idk
is it supposed to be like this? also, what do i return in the else block? cpp #include <iostream> #include <struct.h> struct interval { int start; int end; }; int main() { n = 3; interval a[n]; for (int i = 0; i < n; i++) { cout << "enter an interval: "; cin >> a[i].start; cin >> a[i].end; } for (int i = 0; i < n - 1; i++) { if (a[i].start < a[i + 1].end) { a[i].start = a[i + 1].end; a[i + 1] = a[i + 2]; } else { return } } }
I never used MacOS so idk how their C/C++ libraries look
does OS really matter? is it not more about the application?
or language for that matter
Different OSes implement libraries differently
The part of the library you care about doesn't change
struct.h isn't a part you care about
Technically it depends on the compiler, not the OS, but compilers kind of depend on the OS, so...
but when you code a language
do you not have to declare all the in-built libraries and stuff
like if we were talking about windows or linux, would they not have string.h too?
also, this please?
The standard library has an interface that stays the same for everyone, but its implementation can change
What are you trying to do here ? a[i + 1] = a[i + 2];
That doesn't work
Do you want to solve this question in-place (without creating another array)?
yes; that is what i am doing, right?
Ok but then you will need to use something other than a basic array
You can't change the size of an array
vector?
Yes
that's very convenient
but, still, if hypothetically speaking that this would work
what would we return? just a[i]?
No you don't return anything
return here will just terminate the program
You want to print the results at the end
we want to print an array of non-overlapping intervals, right?
Yes
Ok, I have to go, good luck
okay, good day! thank you for the help ^^
has someone suggested sorting the intervals with respect to the left endpoints yet?
this easily gives an n log(n) complexity algorithm if I'm not mistaken
yeah, just sort the intervals and process them in this order
if the next one intersects the previous one, merge them together
otherwise the last interval is a complete union of overlapping intervals and we start a new component
what does one mean by that?
ah
like, ascending order?
@robust horizon Has your question been resolved?
yeah, because you're checking the left endpoints
if you wanted to check the right, you could do descending too, im p sure
Closed by @robust horizon
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 f^-1(8)
so I’m just assuming that means find inverse of 8?
and we can just look at the point when x =8 , so (8,2)
and then inverse would just be (2,8)
because you just flip them?
or is that wrong

what is the blue curve? f or f inverse?
you should show all the given information and not guess
Closed by @coral wedge
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.
in solving this question i have reached a point of confusion. since any vector in Rn can be expressed as a combination of n linearly independent vectors, we can treat the question of a n * (n+1) matrix being consistent or not as the question of whether each column except for the last is independent from each other. however, consider the 1x3 matrices (1,2,0), (2,1,0), (3,1,0). they are all independent yet the matrix is not consistent when augmented by another matrix with all nonzero elements. so im confused where i went wrong
the two ways to do this on top of my head are:
show a1,a2,a3 are linearly independent (that amounts to solving the relationship ca1 + da2 + ea3 = 0 implies c=d=e=0) -> b can be expressed as a linear combination of a1,a2,a3 as these vectors would span R^3
solve for the augmented system
[a1 a2 a3 | b]
this system arises when you look at the definition of linear combinations
yes, the answer in the solutions is the latter, and my question is regarding the former
however, do 3 linearly independent vectors really span Rn?
they span R^3
R^3 is 3 dimensional
an n-dimensional vector space requires n linearly independent vectors to span it
(1,2,0), (1,3,0), (1,4,0) are all independent right? but they dont span R3
they are not linearly independent
You can stop checking a3. Since a3 = 5a1 + 4a2
I would evaluate the determinant [a1 a2 b]
i know how to solve the question, im just confused on what constitutes being independent
i already solved it by using an augmented matrix
i don't get how (1,2,0) and 1,3,0 are not independent though
there exists a k such that <1,2,0> = k<1,3,0>
wait how
ok that makes sense
wait, so aren
aren't these two methods the same ultimately
they are equivalent indeed
another method as shakigras said is to evaluate the determinant and see if it is nonzero
but the determinant requires a lot more theory to justify why this is the case
i don't think i learned that yet
wait, so for the first method, how do you do it exactly? you need to prove that there is no xa1+ ya2 that equals a3, then do this for a1 and a2?
for linear independence?
it is sufficient to show no x,y exist such that xa1+ ya2 that equals a3 and there exists no k such that ka1 = a2
the most general method for linear independence is
by trivial solution, they mean x1=x2=...=x_p = 0
i see
is there a way to do that easily? because i don't see how
like how to prove there is no other solution
in general vector spaces, there are many methods but R^n is the easiest because all u need to do is solve the system of equations that arise from subbing in v1,...,v_p
ok i think i get it. so generally you could create a matrix of the three vectors combined and showing that every column is a pivot column?
sure that works
Closed by @worn carbon
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’m stuck on question D
denominator is correct. numerator is not
f(b) = population in year b
f(a) = population in year a
a, b, f(b) and f(a) are numbers given here
or derived from there technically
So just remove 1980?
@trail ginkgo Has your question been resolved?
Closed by @trail ginkgo
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.
ALR
IM HERE
TO STAY
HELP ME
well acc i kind wanna leave after cuz this is nerdy
BUT HELP ME
I DEMAND HELP
No
Then fuck it
Im joking
Im not even on this level of math
uh
i dont understand the first one
what its asking
alr, what about this part of it
bro it is asking true or false
yea
thats easy
so you gotta put in true or false for each one
yeah
so first one,
you gotta tell if this is true or not
what do you think, do you have an idea
No i dont know
alr, what about this portion
no
how
do you know what the dashed part of the lines mean
thats just means the line is behind the plane
thats like if you draw something behind something else by drawing it lighter
so AC is a line that goes through the plane, same with BD
why do you trust chatgpt
it cant actually think or look on its own with pictures
not right now at least
your eyes are telling you BD and AC cross at A, thats all you need
do you know what "colinear" means
yeah that it is in the same thingy thing
all on the same line you mean
yeah
so what do you think, true or false
ok wait lemme look at it
BRO THTAT IS FALSE BC IT IS NOT IN THE SAME LINE BC THE LINE BECOME A TRINGALE
yep
its false, triangles arent lines
next one, the word "coplanar" means "all on the same plane"
usually this means you can imagine a plane going through the points
Wat
yeah
its just a triangle standing up on the plane
yeah it is standing up
so you can imagine all the points being on a flat surface, right
(the flat surface is standing up)
Uh
Why would the flat surface stand up
i thougth it is laying down
and a b c are standing up
you have to imagine this surface
its not the blue one, since that one doesnt go through all the points
No
why not
well unfortunately colinear doesnt actually mean that for regular math
Wat
colinear just means you can draw a line through the points
these three points are colinear
My teacher doesnt say that
then your teacher isnt preparing you for how the rest of us use the word "colinear"
that sucks, but alr
sure
similarly its possible to imagine a plane through these three points
So all the points are on the same plane
Ohhhh i kind of see it
think of the triangle from earlier
that triangle is just a cut-off version of the plane
if you continue the flat surface beyond just the triangle, youd get a plane like that
yep
these three points are coplanar, because heres a plane where theyre all on it
Ok i get it i think
thats good, next up is this
Yeah
"intersection" or "intersect" means "cross at the same point"
do PQ and line k cross at point M?
can it be up or down
what if p q was standing up
does it still go through M?
yes
then itd intersect
Ok
if it didnt go through M
it wouldnt intersect at M
maybe it intersects somewhere else or not at all
yea
oh
what else would M be
The line
all the other things in the picture already have a label next to them
the problem called it "line k"
k cant also be the dot too
PQ and k are both lines
they cross at point M
so PQ and line k intersect at M
thats why 4 is true
Yeah thats what i meant
like it goes across it
or inisde or cross idk idc b ut yeah thats what i meant
ok next
plane A and plane B now have to "intersect" at PQ
for this, you see plane A and plane B, right
yeah
it corsses them
yep
this line is the intersection of plane A and plane B
they cross only at this line
but also pq
not every question has the answer "true" you know
you can see Q is not on plane B
line PQ isnt on plane B like the red line is
yep
bc i thought it goes like across them both
"intersection" has another definition thats useful for us
it means "what these two things have in common"
plane A and plane B have the red line in common
B doesnt have P and Q though, so line PQ couldnt do it
this is something else, it means line PQ is "inside the union of plane A and plane B"
what do plane A and line k share in common?
and keep in mind that the question's answer can be "True"
yeah ik it can be true or false
uh
they have the line
bc k is the l
line
and a had that line bc the last question asked what was in common between them and that red line was in common
so that means line k and plane a have \line k so it is true
yep
part of this is that line k is entirely inside plane A
so anything they share in common would just be line k again
its not like it can be smaller than line k
wait it is the same for plane b right
BRO TYSM
np
Wait i have one more question
sure
why is this wrong
the order of the letters matter for the ray
first letter is where it begins
second letter is where it goes
so you should be doing DB instead of BD
well you just missed this little detail
its the only asymmetrical notation youre seeing, for now
later on the order that you write triangles in will matter too
triangle ABC vs triangle ACB
youll see what thats about when you learn congruence
np
.close good luck
Closed by @whole halo
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.
my own q:
lim sin(x^0)/x
x-->0
im getting ans as lim x--> 0 x^(x-1) (basically 0^-1 = infinity)
can any1 check and let me know?
$\lim_{x \to 0} \frac{\sin(1)}{x}$ ?
Ann
is that what you're saying? @vapid haven
@vapid haven 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.
yes
Closed by @vapid haven
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.
Are these probabilities correct for the base probability below?
How would I calculate the probability for a fire event that runs 15 mins past every hour?
675 pets spawn per hour normally from the normal, gold, crystal and rainbow types.
During the 15 minute event only fire and normal spawn. They alternate between fire and normal for the full 15min.
@nocturne agate Has your question been resolved?
Okay let’s break this down
First question: how do I know if the base probabilities are true, how did you calculate them
I counted the type and rarity that come out during the first hour. Twice. Averaged them both
@nocturne agate Has your question been resolved?
hi sir
@nocturne agate Has your question been resolved?
No
meow
Hi
It looks pretty reasonable, what are you trying to calculate about the "fire event"
@nocturne agate Has your question been resolved?
The projected estimated time to pull X rarity out of the event.
Since only fire and normal type spawn, initial conclusion is that the probability would be halved and the projected time would basically be doubled.
But im having a hard time understanding why. Especially when i project the rarity probability into the fire event, it doesnt match my real life tests.
And since i need to wait 1 hour before i can even start the event how does that get factored into the expected pull time?
in what way is it not matching your real life tests?
It seems to be overprojecting the expected wait times. For example a common pet spawns much more often than its prediction. Let me go get the answers
Sorry i have made a mistake in the above tables. The top right is the base probability for fire/candy, not the drop rate. I will calculate the drop rate now and its projected wait time
This is what im coming up with
so these times are way off from my real life tests. Example the commons still remain at a very high chance like the normal event. At around 10 secs average.
And the secrets are no where near 47 hours. They should be way rarer than the normal "event".
This is just a visualization of the event
Fixed the table
Sry, what is "fire" here?
Like fire is a variant of normal type with proportional spawn rates?
what game is this btw\
fortnite
from what i gather, the projected wait times are calculated from the probabilities.
if that's the case, how consistently short of your projections are the actual wait times? if it's a one-off event it might be an outlier.
@nocturne agate 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.
Help
!da2a
No need to ask “Can I ask…?” or “Does anyone know about…?”—it’s faster for everyone if you just ask your question! See https://dontasktoask.com/
With what?
send your question(s)
!noans
The purpose of this server is to help you learn, not to hand out answers. Do not ask someone to give you the answer directly.
!nosols
As a helper, please do not give out answers that could be copied as a homework solution. Have the student work through the problem themselves and guide them along the way.
I js need to know the solution
do u know how to find the sum and product?
Cuz i know how to do everything else but this one
Yea but in this case A isnt equal to 1
!noans
The purpose of this server is to help you learn, not to hand out answers. Do not ask someone to give you the answer directly.
What do u do when A isnt equal to 1
also there's no actual question here, all you're given is a quadratic but not told to do anything w/ it...
did you actually mean that you need to factorize it?
where's 1 coming from
From the x
This algebra video tutorial shows you how to factor trinomials in the form ax2+bx+c when a, the leading coefficient, is not 1. It shows you how to use the ac method to factor such trinomials that contain 3 terms which involves factoring polynomials by grouping. This video contains plenty of examples and practice problems for you to work on. E...
this is a vid for the general method
however, in this case you can notice something
a 3 can be factored out
leaving 3(x^2 + x - 20)
and then x^2 + x - 20 is now monic and so much easier
yes, so if it's easier for you, think about dividing (3x^2 + 3x - 60) by 3
term by term, that's 3x^2 / 3 + 3x / 3 - 60 / 3
because 3, 3, and 60 all have a common factor of 3
then you can multiply everything by 3 at the end
so the 3 goes on the outside of the brackets
Can u use a times c method tho?
there's no need to here
if you can factor x^2 + x - 20, you can factor 3 times that
But can you?
you can
Can u show me that way
why do you want the harder way?
Cuz its the way my teacher taught us and for a future test that might be the only solution he accepts
I feel your teacher wants you to use your brain more than anything
that if there's an easier way, you should just use that instead
i mean u can but it's gonna give u a lot of time to figure out the big two numbers and that takes forever
lebron lebron lebron james
Nah he only accepts A times C method i think
lebron lebron lebron james
is your teacher known to reject solutions that don't follow his methods to the letter?
And i dont know if i can factor it efficiently or constantly without using A and C
like did that happen before?
Also from here it seems you have learnt the method only with monic quadratics. So you have to factor out the 3 if you want to use the method that has a=1
Idk
Besides i find A times C easier
<@&268886789983436800>
oops
Wait so if they all have the same common factor u can do that instead?
exactly!
yeah. in this case you can factor out a 4 from everything
what happened here
sure you can
This is not a quadratic, though 🤔
unless you're paralyzed by the fear it might not be considered kosher by your teacher
with which i cant help you
So if EVERYTHING in the equation is a common factor u can just make it equal to 1?
Wdym you can make it?
...no
If they have the same common factor u can just make the leading coefficient equal to 1?
Like can u just factor it to 1
Just a spammer, started from #help-36 message and #help-36 message
You have a really bad wording, even if I believe you have the right idea in your mind
You don't make anything
They all have the same gcf of 3 right?
You only factor out
So u can just factor out a 1 from the 3x2
for example, if I have 8x^2 + 10x + 12
I can only factor this as 2(4x^2 + 5x + 6)
and then you would have to just go with 4x^2 + 5x + 6
there's no factorisation that is simpler
Does it have to be 3(x2+x-20) or can i remove the 3?
Then what did ann do at the start?
you can't thanos-snap the three, no.
What did u do with the first one tho
i pulled it out as a common factor
So u can pull out 4x-4+44?
????
yes
as mentioned last time
it'll just be a pain if you do it directly
which is why everyone is recommending that if you can factor something out,
in this case 3,
you should do that first
But can u try tho
Yea but what if i cant factor something out
then go with ac with what you have
common factor is the first thing you should always look for when factorising
i know it'd work, i'd prefer not to
But then u have to find a number that multiplies to 180 and adds up to 3
multiplies to -180
And i asked chat gpt but it said theres no real number for that
Yea
Then u js gotta do groupings
Yea but il add them at the end
no
you have to add them here
you keep them present throughout
otherwise it looks like you're adding and subtracting numbers
Theyre absent in the paper but present in my mind
examiners can't read your mind
make them present on the paper
But u js gotta factor by groupings now
My mind propells to the paper
make sure they're present on the paper before you do
and i'll refuse to continue unless they are
Yea il remember
you cant if you dont write your x's
So 3x^2+15x-12x-60
ok good,
Then divide or find out the common factor
now as I've also said yesterday/last time
this step ALSO requires factoring out common factor
which if you know how, would've been more ideal if you did it at the very start
Its js 3x^2 divide by 15x=5x and 12x divide by 60 is 5x
What do u do when u cant factor/divide them tho
so none of that is true
Wdym
He means you wrote wrong statements
These are wrong 🤷♂️
even if i squint and misread the first in a way that makes it seem right, the second is still wrong
Oh wait u cant do both x+5 right
those are wrong because $\frac{3x^2}{15x}$ is like $\frac3{15}x$.
Percy
note that 3/15 is not 5
(3x^2+15)
what's this about? I can probably try helping ^^
where did the x on the 15x go
quadratic factorisation
ahh
Honestly if you wanna make it easy, I usually divide the quadratic to a much way more simpler form
been raised to OP
for some reason he does not wanna factor out the gcd lol
So should the full equation be (3x^2+15)(-12x-60)
yikes
Whats a gcd
no. for sure no.
expanding this gives you a cubic
thats a cubic
hcf
This is a times c method tho
Not at all
3 times 60 is 180 and find number that multiplies to -180 and adds to 3
Bro trust me, divide it that equation by 3
And from there, you can use that times C method
Which is 15-12
Which referring to what??
Yea but what im getting at is when i know whether or not to use a times c or divide it by 3 first
and the grouping stage requires you to know common factor
This
The common factor is 3
X
I usually do it by dividing first, then factorizing it
you know... if you had factored out a 3, your a times c would become a multiplication to -20 and an addition to 1...
which is way smaller than what you have now, isn't it?
This.
you can use whatever valid method
No like give me a problem and how do u know whether or not if u can divide it or a times c
these are all justified by algebra
you are still using ac even if you factor out...
Then why do you not want to factor it out?

you can always do either
Huh
Like 3 divide by 15
sometimes its better to apply one first over the other
NO
Wait everyone stop
15 divided by 3
How do u know if u can divide it?
why do you have your divisions backwards
I'll take your question
3x^2 + 3x - 60
I divide the quadratic, which is A B and C by three
3(x^2 + x - 20)
Like everyone told me to divide it by 3 or factor it by 3 but how do u know when
Let's hope it's language issue
Cuz i rise from the bottom all the way to the top
Huh?
try not to have your x become an X
What does this even mean?
song lyrics id gues
oh yea, different things
you can do it if you can identify there's a common factor between all terms
if you can see that 3,3,60 has a common factor of 3, you should factor 3 out to make life easier for yourself
yes
If it's this case, then yes, you should do the A x C method
OP needs to learn about gcds.
So if the equation given to me has a common factor i should factor it?
yes
Definitely
common factor is the first thing to look for for factorisation
It'll ease your work, as you have smaller numbers
in pretty much all cases
not limited to just quadratics, in pretty much everything in the future
Ok so lets focus on this now what do u get when u factor it?
x^2 + x - 20
3(x^2+x-20)*
ye this, my bad
What happens to the 3 tho
Like do u just do a times c then add a 3 at the end?
multiply.
Multiply everything by 3?
Wait so now i can do a times c?
yes.
Does the leading coefficient not equal to 1?
it is
Or is it bc its squared
If its equal to 1 shouldnt u do sum and product?
Now you have to focus ONLY on the x² + x - 20
Sure
So b equals to x
No no
A, b, c are numbers!!
Wdym
Yep
I just used A meaning that the first one is equal to 1 and B is the second one
So A=1 B=1 C=20
I mean that you can't have b = x
C is **-**20
Yea mb
Don't forget the signs of the positive / negative
There you go, awesome
Where does the 3 go
Yep! That's the factor of the x^2 + x - 20
Yep!
Aight fosho
Well done, that's how you do it ^^
It doesn't get deleted
these don't get deleted.
make a message link and keep it somewhere
or copy the important notes you got from here
Aight fosho thanks guys
I recommend you to copy the link of your first message
Everything here was important
Otherwise this redirects you just to the chat and you'll have to scroll until you find this conversation
channel link will be useless
But copy this somewhere, not here
Yea i copied it
Awesome 👍
!done
If you are done with this channel, please mark your problem as solved by typing .close
.close
Closed by @keen hound
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.
what is wrong with desmos?
Probably worked with square root, then approximated it. Then thats error
but how was is it able to get it correct when I used it to see what an equation with sin and cos evulatled to
You mean when using the sin(3x) formula?
$$\cos \frac{\pi}{6} = \frac{\sqrt{3}}{2}$$
I used sin3x with cos3x and it was fine
casework
Those are number bigger than what you get before
Like if desmos calculated 1 + 4e-16 it will just say its 1
If it calculates 4e-16 now its not it will give you that
wdym?
by before do you mean the stuff in the first picture?
This is
0.0000000000000004
(If i didnst miss any zero)
Desmos was correct for first 15 decimals or so
Lean?
And so is here. But it doesnt show you
Typo
oh so your saying sometimes it rewrites it strangely but sometimes not?
I mean it rounds in some way. Idk what
But it surely doesnt compute the whole sqrt{3}
ok I see
Just a floating point error
Idk why it didnt round to zero here
Happens when you have transcendental functions since it uses their Taylor approximation
No way to exactly establish why it happens for some cases but not others since all calculators are programmed differently
.close
Closed by @left trail
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.
my problem isnt solved yet.
Fire/candy is a type of pet.
The pets all come in different types and rarities.
Fire/candy pets only spawn in during a fire or candy event. This fire or candy event is only active 15 minutes past every hour of a "normal" event.
The pets only spawn in as normal, gold, crystal and rainbow during the "normal" event for the first hour.
1 hour runtime normal
15 minutes special event
1 hour runtime normal
15 minutes special event
etc...
Are you here @nocturne agate
i think this question still stands
on top of the fact that you should probably restate your problem
Yes. the wait time is based on a rate of 675 pets per hour. Based on the probability of each pet type and rarity.
These are the projected wait times i was given for a special event.
Rarity Minutes per drop H:M:S
Normal Special(fire/candy)
Common 0.583 0:00:35
Rare 1.394 0:01:23
Epic 3.950 0:03:57
Legendary 10.15 0:10:09
Mythic 47.43 0:47:26
Supreme 142.3 2:22:18
Secret 2,845.8 47:25:48
In no way shape or form is a secret pet dropping every 47 hours. I have played the game over 250hrs and have only gotten 1 event pet.
Okay hold up
yes
Can you describe the set up of this a bit more
Like what makes a pet drop, how does one wait, are there restrictions, do some times matter more than other etc
Are there bonuses or something
so 675 pets per hour, combined with the probability of dropping a pet, gives you this projected wait time chart?
Is it like there’s a clock and every second there is a chance for an event to occur (a drop) and then bla bla bla
but... the event only runs 15 minutes for every 75 minutes
did you take that into account?
You should describe this more carefully because I feel like I’m getting xy’d
i will
maybe start from how a pet is dropped
Don’t talk about your projected or estimated probabilities yet
That has to do with statistics we’ll worry about that later
The game involves collecting pets of different types and rarities There is a wall in front of you with a tunnel. From that tunnel pets will spawn randomly. They just walk out of it. The rate at which they walk out is 675 per hour. Or roughly 1 pet spawning randomly every 5.5 sec.
All you do is collect the pets you are missing untill you have filled out the pet rarities for each type of category.
There are 6 types of pets.
Normal
Gold
Crystal
Candy
Fire
Rainbow
There are 7 types of rarities
Common
Rare
Epic
Legendary
Mythic
Supreme
Secret
Everytime you play the game, you spawn in front of the tunnel that has spawned 0 pets until you load in. You sit in front of the tunnel and wait for pets that you dont have to collect and sell.
under "normal" conditions. (lets just call it "normal event").
Only Normal, Gold, Crystal, Rainbow will spawn out of the tunnel every hour. You can acquire a Normal, Gold, Crystal, Rainbow pet of any of the 7 rarities.
After every hour is finished you have a "special event" that runs for 15 minutes. This special event is going to fire OR candy. It alternates back and forth based on the previous special event. If you just load into the game you have a 50/50 chance of it being fire or candy.
During this special event, the pets spawn at the same rate.
You can still acquire pets of all 7 rarities BUT, the pet types alternate between only:
Normal type and Fire type (if its a fire event)
or
Normal type and Candy type (if its a candy event)
During these special events, The pets will ALWAYS walk out in a line as 1 normal type, and 1 candy/fire type.
After 15 minutes have passed the special event is over and we return back to the 1 hour long "normal event" and the cycle repeats.
is that all we need to know?
What does during a special event, …walk out in a line as 1 normal type and 1 candy/fire type
Like alternating or like side by side 2 at a time
No there are some modifiers but those arent taken into consideration of the probability. For example there are 3 timers with 3 rarities that will countdown to 0. And when they do It will spit out a pet of the rarity on the timer but of a random type. I am not taking this into consideration because it is a 100% guarantee, not a probability.
There is also a spin wheel, which works the opposite. You spin a wheel with different pet types on it. It will change the pet thats in "limbo" and hasnt spawned yet, into whatever type category the spin wheel lands on. I did not take this into consideration because it is not probability unless you interact with it.
Deterministic things are random things with 0 variance
that affects times too...
So what do we want to calculate from this set up
The pets all march out of the tunnel in a straight line. in both normal and special events.
During the normal event the associated types and rarities will spawn randomly, as previously described.
During the special event they will always walk out as 1 normal 1 fire 1 normal 1 fire 1 normal 1 fire etc
they do but only slightly, since im not counting the guaranteeds into probability. Estimated only around 5 guaranteed pets or 25 seconds of lost time.
What is a normal event
normal conditions
under "normal" conditions. (lets just call it "normal event").
Only Normal, Gold, Crystal, Rainbow will spawn out of the tunnel every hour. You can acquire a Normal, Gold, Crystal, Rainbow pet of any of the 7 rarities.
So no event
no but the normal conditions only last an hour at which point they change to special event
Like it’s either special event or normal conditions
yes
So normal conditions is just when there’s no special event
yes
The probabilites and estimated wait times for all pet rarities and types
Okay
And is it true that during the special event, you get 1 normal 1 fire 1 normal etc
So you can’t get the non normal non fire types
true
0% chance of a gold, crystal, rainbow and depending on the special event. The opposite event type.
Right
(if its a fire event 0% chance of getting a candy)
Ok now what is this
Presumably you sat there for hours and looked at the totals you got?
Yes i sat there and counted all the pet rarities and types that came out of the tunnel for every hour. Then i averaged them.
This gave me the base probability of both the type and rarity for normal conditions
How many were there in total?
675 every hour (rounded)
As in can you put them in count instead of in %
This is 1 hour?
yes
Do you have more data than 1 hour
only 2 hours
The estimation for the higher rarity ones will be very poor
With the data you have
yes i know
Is that a concern?
so if in 2 hours you didn't get a single secret, how did you got the probability for the secret pets?
Because secret pet data would take an ungodly amount of hours to record it is estimated based on my and several others opinions
Those of us who have acquired secret pets
Would you be interested in combining some of these together into 1 bucket
Like putting legendary mythic supreme and secret together into 1 category
I dont think that will work well because the difference in probabilities between them is so large
No but it’ll give a better estimate
Using the previous probabilities i came up with these numbers for the normal event.
I can agree with these numbers for the most part. The problem i have is when i try to get the numbers for the special event.
what i want to understand is what i should be doing to calculate the probability, drop rate, and wait time for the special event. Because from what ive calculated it seems wrong.
is this for the special event?
no this table is for normal event
ah you're saying these numbers here you can understand
okay what data have u got for the special events
i assume you have at least 1 data set for fire and 1 for candy?
none
-
Because the probability of rarity would still remain the same for the event.
-
Because only normal and (special event) type spawn during the special event. the probability of type would be 50/50?
Wouldnt it not matter if only 150 pets come out during the 15minutes compared to 675 during the 1 hour? The probability of rarity would remain the same if only 1 pet comes out compared to 1000?
do you know if this is true?
i dont understand this
it's different for estimation if you dont know that the probabilities are the same
I dont know it to be true because i didnt create the game.
I am saying that just because the special event is shorter in time, and doesnt produce 675 pets like the normal event does, doesnt mean it changes the base probability.
I would still expect to the see these rarity probabilites for the special event, even if it only produces 150 pets during 15mins
(minus the type since only normal and special come out then the probability would 50/50)
50%
@nocturne agate Has your question been resolved?
well, i think GPT may have misunderstood you
Wouldnt it be x5 longer since its 15 mins past each hour not during
the event is only active 20% of the time, isn't it? it's 60+15 minutes from what i understood
so really we are talking 15 minutes out of every 75 minutes
yes
so ultimately, special event or not, the rarity drop rate does not change, correct?
so rarity is independent of type?
yes (assumption)
I am also confused about the 50/50 drop rate during the special event. Is it really 50/50 (50% chance) when the pets are always alternating?
i don't know, i don't play the game. it seems like (from your own description anyway) that the pets will always alternate between normal and the special type during the special period
i'm working entirely based off your description
correct.
wouldnt 50% pet chance mean that when every pet spawns it has a 50% chance of being either. That would mean i would eventually see maybe two fire pets come out or two normal pets come out in a row but that never happens. They always alternate so is that really 50% chance?
yes. it's still random, but determined, i suppose
either way, the type isn't gonna help us here if my understanding is correct
but i am basing my wait times off of half of the base probability because its supposedly 50/50 chance
wait. you said the type and rarity are independent, correct? then there's quite the difference between a secret normal and a secret pet of any other type if this table is correct
in fact, why is a rainbow common only 0.61% when a normal common is 55.15%?
i think we can just work off this table
but that 50/50 chance only applies to types
i calculated the probability independently. This is my counter for 1 hour.
For the hour whenever a rare gold would come out, i would tick two boxes, 1 for gold and 1 for rare.
At the end when i calculated the base probability. I calculated the rarity percentages independently of the types.
which gave me this.
both of these percentages are out of 675 pets
you're looking for rarities
and as mentioned by you, rarity is independent of type
so we still have a bit of confusion regarding the true probability of a secret if that's the case.
because we have no data on it
yes basically none (estimated)
i see a couple of things here.
one, and the most likely, is that because we have insufficient data, the probability of getting a secret pet is incorrectly estimated
and is much lower than it seems
because at 0.0125%, that's 1 in 8000. the expected time is, if i didn't fuck up my calculations, less than a day
second thing that could be happening is that special events affect the rarity probabilities