#help-10
1 messages · Page 106 of 1
well, I am glad
remove Helpers role if you don't like that
@river compass Has your question been resolved?
can you describe what you're doing / trying to do without so many big words? are you trying to model a black box?
I have modelled a black box, but making new data points takes time (almost a minute, in fact). I have obtained several regressors using a symbolic regression library (pySR in particular). I am trying to figure out a method to add new data points in an efficient way, so that I can discard bad regressors and be more confident
in other words, im trying to make experiments that disprove hypotheses
what do you mean by "disprove"? what do you mean by "experiments"?
by "experiment", I mean a list of parameters [x0, x1, x2..] to input into the black box to produce a result, Y.
by "disprove", I mean exactly that. I do not believe the current hypothesis are good enough. Therefore, the optimal datapoints to add to the known data are those that will prove as many regressors wrong as possible (by being far away from their prediction). Since I do not know what Y will be beforehand, my intuition is then to test the points where each regressor's prediction are "maximally separate", by whatever possible definition of it
An example (that comes from a previous test of PySR). Every line is the predicted values of a regressor.
My intuition is then to try and run a new experiment at ~1.3, since thats where every regressor disagrees the most with each other. I would like a general procedure to figure this out, though, not intuition.
okay first of all, what do you mean by "regressor"? You're using that word a lot, and it doesn't line up with the usage that I've seen
a regressor is, in this case, a function that I've obtained as a possible model. For example, f(x0,x1,x2,x3,x4) = x2 + x3/(2* x2^3)
so you have a bunch of models for a particular black box
possible models, yes. They are all bad
what makes you think that they are bad
i actually know how the black box should be (more or less: it imitates a real world process with a known formula), and I also have access to it and can make tests myself. I know these models arent complex enough. The interesting part of the project, though, is to make sure it can figure it out by itself. That way i can test other black boxes I do not know how they work, without me being there to give hidden information
how well do the models fit the data you've given?
the best one is close, but it is missing data I think
it is missing data points it doesnt know about, since they are not contained on the datapoints used to find the models. I know the full extent of the model, so I know it is missing characteristics
I didnt say it contains them
how can something be missing something if it doesn't contain them
that's like saying a gas tank is missing water
are you saying that the model doesn't generalise well to data it hasn't seen?
to miss something also means to not know about
and yes
well, it hasn't "seen" any data, models dont see
model parameters are estimated with data
and if im being even more specific, it doesnt "see" anything at all, since the whole batch of possible models is produced at once by a single program
unseen data refers to data that was not used to estimate the parameters of the model
I still don't know what you mean by a model is "missing" data
the bunch of models weren't trained on the right data in order for them to generalize to the black box model. They were taught chapters 1 and 2 and 4, but 3 ended up in the test as well, and so, failed their exam.
so you're basically saying that the models fit the data they've been giving fairly well, but they don't generalise very well to unseen data
then usually there are two approaches to fixing that: regularisation (adding constraints to the model parameters / putting a prior belief on the model parameters) or giving data more reflective of the distribution of data that you're actually going to use with the model
thats not what I want
It doesnt matter to me how the regressor models are obtained. The problem is, as I said, giving them the right data given that finding datapoints themselves is expensive
well unfortunately it matters how models are estimated, because that directly affects how they perform on real-world metrics lol
You cannot test a pharmaceutical cocktail in all possible dosages
in general, a black box can do whatever it wants with the inputs, and it can make absolutely no sense at all
but that's only in the very strict sense that one can construct pathological black boxes
most real-world problems are not that pathological
This is why I said it imitates a real world process
it is not weisserstrass function
the point is that the estimation procedure is literally what makes or breaks a model
the estimation is fine
you tune your model so it is likely to produce reasonable outputs from the distribution of data that it will actually see
????
if the estimation is fine then what problem do you have? your models are perfect then
for the data they were given, they are fine
like I said at the begining, I am trying to add MORE data to their estimation
that says almost nothing about the quality of the estimation procedure
in particular, there are ways to get models to fit the training data perfectly and completely fail validation against unseen data
I know. So how do I antagonistically add more data to put those models to the test
that doesn't make much sense to do
the overarching goal is that your model does well on predicting on inputs that are drawn from the same distribution of inputs that it is likely to see in practice
real world scientific testing relies on finding experiments that make or break hypothesis. Michaelson-Morley being a great example: measuring the fastest possible relative speed at the time.
this is literally the goal of prediction
But i am not trying to predict
are you not trying to predict the values of the black box?
no, I am trying to model the black box correctly
that is literally the prediction task
you are trying to predict the values of the black box given the inputs
that is part of it
unless you have some other goal, like interpretability or whatever
but I doubt that
obtaining the data is also part of it, and thats the part I have trouble with
and yes, interpretability is important but thats why Im using a symbolic regressor
the data is used to estimate and select a model
yes, and data is more expensive than compute time
okay you're completely missing the point
I dont see how I can be missing the point
because you're saying a lot of things that are just contradictory and also just aren't following the basic principles of statistical modeling
this isnt statistical modeling
if you want a refresher on it, I suggest reading the first few chapters of introduction to statistical learning or a similar type of book
what you are asking isn't well-posed or well-defined
literally the most charitable interpretation I can come up with for what you want is that you want a whole bunch of examples on which your current model candidates do absolutely horribly on
and there's research into that that crosses over from deep learning / artificial intelligence involving adversarial examples, the simplest of which are gradient-based like FGSM
but given everything else you've said, I highly doubt that will actually get you any closer to achieving whatever it is you want
if this was statistical learning, there is an standard way of doing what I want
it's a pretty obvious mathematical fact that, given any finite number of examples, one cannot model an arbitrary black box for all input values
and that seems to be what you seek to demand here
so either you need to fix the problem of the black box being arbitrary by putting priors or constraints on it, or you need to solve the input values problem
the information matrix of a set of statistical regressors can be used such that the information content of new data can be obtained. From that, it can be used to find maximal information experiments
Unfortunately, i do not know any information matrix analysis of symbolic regressors
In mathematical statistics, the Fisher information (sometimes simply called information) is a way of measuring the amount of information that an observable random variable X carries about an unknown parameter θ of a distribution that models X. Formally, it is the variance of the score, or the expected value of the observed information.
In Bayes...
fisher information?
When the linear (or linearized) statistical model has several parameters, the mean of the parameter estimator is a vector and its variance is a matrix. The inverse of the variance matrix is called the "information matrix". Because the variance of the estimator of a parameter vector is a matrix, the problem of "minimizing the variance" is complicated. Using statistical theory, statisticians compress the information-matrix using real-valued summary statistics; being real-valued functions, these "information criteria" can be maximized. ```
you don't need to explain to me what Fisher information is
I learned it in my statistics classes
I highly doubt Fisher information is what you want
Fisher information does not depend on the data
No, like I said, I know it is not what I want, since it deals with statistical regressors
In the design of experiments, optimal designs (or optimum designs) are a class of experimental designs that are optimal with respect to some statistical criterion. The creation of this field of statistics has been credited to Danish statistician Kirstine Smith.In the design of experiments for estimating statistical models, optimal designs allow ...
"In the design of experiments for estimating statistical models, optimal designs allow parameters to be estimated without bias and with minimum variance. A non-optimal design requires a greater number of experimental runs to estimate the parameters with the same precision as an optimal design. In practical terms, optimal experiments can reduce the costs of experimentation. "
I suggest that you open a book, like the one by Hastie I gave you, and actually study the subject
otherwise you're just quoting stuff from random articles that doesn't make any sense in context
Let me ask you this, what do you think I want?
I honestly have no idea, which is why I asked so many questions, but I got contradictory answers
I told you that my best literal interpretation of what you're asking is that you want examples such that all of your models do poorly
but I can't imagine anyone wanting that because it's mostly useless
I want to design experiments, as stated on my first post
I want to design them optimally, or close to optimal if not possible, as stated on my first post
none of that makes any sense in context though
The optimality is given by the less runs possible
explain the context such that that makes no sense
in the entire context of statistical modeling
like what does this have to do with experiments
I have said, all this time, this is not statistical modelling
it's not like you have come up with a model for your black box a priori and are trying to say yes or no does this model hold
I have corrected you before, saying that "this is not statistical modelling"
you can say whatever you want, but fundamentally your problem falls into statistical modeling
I have also added that, where this statistical modelling, I already know how to do what I want
you want to pick a model such that your black box fits well
no
I want to design experiments such that they are the best possible experiments, given what estimators I have. I then explain what "best" means
I have several estimators already, this is not an issue, I am not trying to generate or tweak or parametrize the estimators, they are a given.
okay you never mentioned estimators before, so I'm going to assume you meant models
and no
you literally estimated the models off the data
I don't want to rehash the basic principles of doing these things, because I feel like I wouldn't do as good a job as all of the resources out there
but I highly suggest actually reading up on this stuff because you're not making much sense
if you're not interested in the statistical inference parts, perhaps taking a look at some of the resources surrounding deep learning on the internet would help a lot
this has absolutely nothing to do with deep learning
this is a design of experiments problem
because that is literally a lot of what they do -- model a lot of complex phenomena that are black boxed out and use data to build models
as I said
you can say all you want, but how do you know you're actually right on that?
what?
you're literally modeling a black box, and a lot of the deep learning basics have insights to the problem that you haven't grasped
things like the bias-variance tradeoff, optimization, overfitting, model selection, regularization
but it's up to you whether you actually want to do the reading or not
Im starting to think I should just give you a bunch of numbers and see if you come up with an optimal method of asking me the right questions
and gathering more data is a part of it too. there are papers about data augmentation, but these are all done with a purpose
and one last bit: it turns out that in decision theory, the criteria for optimality matter a lot, and that vastly different choices become optimal depending on how you look at it
I am unsure where does decision theory come here, could you explain the relationship?
I can think of relationships between what I know of decision theory and Montgomery's Design and Analysis of Experiments (my handbook at the moment), but that would be a guess
decision theory relates to things like statistical hypothesis testing, model selection, estimations
Thats what you meant? I did specify the criteria: number of runs, which is the standard in optimal design
number of runs until what?
I can't give you an answer to your question because I don't understand what you want or what direction you want to go in
none of it makes sense
The optimal design is designed for a certain number of runs, such that the information gained in the experiments is maximized (this is called D-optimal)
you can see it in page 466 of Montgomery's
as I said, I highly recommend reading / watching an introduction to deep learning and learning about the issues that result when using data to build a model
you're just quoting things that don't apply in context
How does what I just said dont apply?
This is exactly what I meant when I said that my problem is that I have no clue how to obtain the information matrices of a design given that it does not deal with random variables
look, I cannot rehash and explain every aspect of the theory involved
your talk about Fisher information matrices makes absolutely no sense in context
you keep saying that, then not explaining how it makes no sense in context
what else would I say? if I told you to use logarithms here, that would also be an example of something that makes no sense in context
I am aware of the language barrier but surely you can see a question like "How does one make a D-like optimal design, given I am not using statistical models?"
All other, particular information, i thought, would help to understand how one reaches this problem
@river compass 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.
I don’t understand this because I think I need the future value to work it out but I’m not given that
@lucid berry Has your question been resolved?
@lucid berry 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 many of the remaining cards are black?
@wind panther Has your question been resolved?
2
please reread the question
50

please reread the question
Made my day tbh
i'll break the question down if needed based on your next response
49?
no
How many black cards are there in a deck?
26
not directed at you @timid silo
I think they are assuming the entire deck is black which is not
is it 26?
yes, there are 26 black cards in a deck.
Yes! Very good!
so now that 2 black cards have been drawn, how many black cards remain in the deck?
24
correct
so now, there are 24 black cards remaining in the deck.
how many cards in total remain in the deck?
24+52?
no

how many cards are in a standard deck of playing cards (not counting jokers)
just use binomial probability formula no?
52 in stabndard deck
bro this guy
and after 2 cards have been drawn, how many cards do you have left in the deck?
52-2
50??
yes
Yes
hhh
.
why are you adding the number of black cards to the number of cards in the deck
@high lily @calm mesa
thought thats how u do it
stop the bullying
You know you are left with 24 back cards from the remaining 50 cards in total?? Work with that
it's like saying
i'm starting with 100
gave 2 away
leaving me with 98
but the total amount of money i have now is 198
back?
Sorry black
24/50?
Yes
the total Ann is referring to, is simply the cards remaining in the deck
Then simplify
12/25
Anyways sorry for laughing
Yes .I think
MEAN = $\sum fx \over \sum f$
Pyp
i know what mean is
i just dont know what number to put in
do i use all numbers of frequency or score?
Draw a table:
f = frequency
fx = frequency* score(x)
Efx = sum of all fx
Ef = sum of frequencies
Then find the mean from that

Form equations then solve
how to form?
X + 115 + x = 180 --> Angles in a straight line add up to 180
X+115 + z = 180
Z+ y = 180
Those should be enough I think
z and y=90
Y?
You cant assume any angles until you have solved them
Remember sometimes seeing is not what is actually there
Solve the equations I gave in that order then substitute accordingly
okay so X+115+x=180
Uhhhh
Yep
Big X 30?
There is no big X and small x all of them are the same it just my keyboard which is capitalizing the first letter
Oh
180-115=65?
x + x + 115 = 180
2x = 180 - 115
x = (180-115)/2
32.5
Yep
I think so
Try adding all the angles after substituting .If they add up to 360 then it is correct
Just a new year and New topics
Okay
It's ok
total surface area for cube is like a^6?
a is like a side
and idk what a side of this shape is it just gave me diagonal
If it is closed:
Total surface area = $6 * s^2$
(Assume it is closed if not told)
If open:
TSA = $5 * s^2$
Where s = length of the side
Pyp
idk what the length of side is
would it be 4
idk just hard
im not making them solve im learning on the procces ☺️
this is what you tell yourself
You can find side from Pythogarus -->
$ 8^2 = a^2 + a^2$
$64 = 2a^2$
$32 = a^2$ $\implies a = 4\sqrt{2}$ or 5.6569 to 4.sf
Pyp
im thankful hat @calm mesa is willing to help
good lukc on your exam
its tutoring hw
Yeah..Had some time
so the side is 4?
So you side, a = can now be substituted in the formula
No..it is $4/sqrt{2}$ in surd form
Pyp
Or 5.6569 cm in actual length
Use the formulae I gave you
Pyp
Oh and it's just 32 and not the square of 32
got 192
I'm free
Just get the area in hectares and then multiply whatever you get by the 60 kg
1 ha --> 60kg
x ha --> ? kg
500 x 300?
The answer is in square metres..Convert to hectares
No
Math is not about just playing with numbers ..it is always done to achieve a certain goal
You must have proper understanding to accurately formulate the answers
As much as you have the area you must always remember the units (m ^ 2)
Otherwise you might get confused...
Then when you change to hectares remember you put ha at the end
yes
so whats the equation for this
What I can tell you understand what you are doing otherwise all of this will be just a waste of your time
There is no direct equation
so what do i do?
I'll solve this stepwise:
1: What does the question want --> Kg required to be planted in the land if 60 kg are on one ha
2: Ha is a unit of area .So I must get area first but in the end it must end in ha
3: What do I have ? --> The linear dimensions (length and width)
4: Ok. What do I know?
Area = Length * Width
I substitute to get
Area = 500m * 300m
Area = 150000 $m^2$
Pyp
yes i agree to that
5.What then?? I convert to hectares since
$ 1 ha = 10000m^2$
What about 150000 $m^2$?
This leads to 15 ha
Pyp
Ok. I have area in hectares. Now if 1 hectare = 60kg what about 15 ha
You must have clear understanding of what is happening to actually get to the correct answer
That proper analysis is required
15ha=900kg
Yeah
ayyy
$\calc 15 * 60$
Pyp
Compile Error! Click the
reaction for more information.
(You may edit your message to recompile.)
Yeaj
@calm mesa got time in ur hands? still?
Nearly done
like 2 more questions
its fine if u dont
And dont be excited when you see a similar question..Always read them twice
yes
There are 2 ways you can solve this
tell me the easier way
Both of them are easy but the first one is simpler compared to the second one
Oooo
1: Find the volume and then convert to cm3
You know how when you get Volume?
That's only area
Oo yeah that's it
Or convert to cm units and then multiply
900 x 80?
1000
Okay so to obtain cm^3, what do you do to the mm^3?
x 1000?
Hmm
First way
1: Volume = Area * Length
2: V = 900 * 80 = 72000 $mm^2$
3: 1 $cm^3$ = 10000 $mm^3$
Oh
wait so i convert 7200mm2 to cm2
Pyp
$72000 \mathrm{mm}^3$
VulcanOne
is that the answer?
yea
Okay solve for 1 mm^3
Yep
Yeppppp
72mm^3
cm^3
oops
Oo
This questions always made miss that 100
Notice how the biggest lengths are the only lengths given
oh yea tru
so we can find the smaller one with the biggest ones
the under the 30 is 15?
actualls dont wrry abt this one
i can do this by my self
this one gets on my nevres
nerves
THIS ONE SO HARD
pain in the but fr @trail cloak @calm mesa
so i found out
Assume that there is no time difference first:
Get the time difference: how long is one time from the other
March 27th 1:00PM
to
Martch 28th 05:55AM
Yeah
Then just add their time back since they moved from a region where time is ahead to a region where time was behind
6hrs and 55min diffrence now
If they had gone where time was infronty u would have hadd to subtract
No
- Since they want back in time
26hrs and 55mins
Yes.. According to me
and with that 26hrs and 55mins what do i do with that??
oh thats the answer
YOO @calm mesa
IM DONE NOW
u fr a goat
i can sleep now even though 2am at night
UR A G FR
i wish i could give u virtual hug
u being saving life fr
Anytime
.close
Closed by @wind panther
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 uderstand what a limit is
But i still have hard times uderstading the formal definition
Can someone explain me?
He gonna have lots of fun
wdym
Thanks to all of you who support me on Patreon. You da real mvps! $1 per month helps!! :) https://www.patreon.com/patrickjmt !! Please consider becoming a supporter of my videos at: https://www.patreon.com/patrickjmt?ty=h
Precise Definition of a Limit - Understanding the Definition.
In this video I try to give an intuitive understanding of th...
All it’s really saying is that as x gets closer to a point, then f(x) also approaches a value
Nah nvm, it just don't let me watch on discord
I'll watch the video
thx btw
.close
Closed by @prisma lintel
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.
when proving algebraic numbers
The polynomials [with integer/rational coefficients] that make you algebraic can be of any [finite] degree greater than or equal to 1 yes
kl thx
@silver plover 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.
why does this functions is located in 2nd and 4th quadrant?
Hmm
When x is from (-infinity, -2), the fraction is positive
Then it becomes negative in between (-2, 3)
Lastly, (3, +infinity), your function will be positive and will approach 1
!help
Please read #❓how-to-get-help
yeah mate
no
!help
Please read #❓how-to-get-help
@trail cloakokay go on
I finished
.close
Closed by @thick crystal
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.
Should I introduce the +_ sign when I cancel log on both sides
um can you show a specific problem where this is coming up
Pic 1 is the textbook solution
I want to know why did they introduce the +- sign when they canceled log on both sides
.
U still online ?
Forget about my 1st question , lets settle that later
Pls answer my Q2 and Q3 now
@high lily sry to ping you
<@&286206848099549185>
@sand saffron 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.
hi
do we only use euclids lemma for prime factors?
ie for this
can we not use euclids lemma since 6 is not a prime factor?
prove sqrt 6 is irrational
abbotts analysis im guessing
u dont need euclids lemma for this
and no it wont work since 6 is not prime
when do u use euclids lemma then
so you are correct
make your six not look like the lowercase letter b, for a start...
here we goo
oh god that was a 6
Ann patrol again
I thought it was a b
well
then again
she has a point
that only furthers my point doesn't it
yeah
anyway, you could nuke this with FTA i guess
whats FTA
fundamental theorem of arithmetic
oh
yknow the prime factorization thing
ye ye
the exponent on 2 in the prime factorizations is odd on one side and even on the other
and the same for 3
isnt thos just euclids lemma?
Let a and b be natural numbers, and let the prime p be a factor of ab. Then
p is a factor of at least one of a and b.
ye
"ann patrol" is hilarious btw
lmao
but yes do not write your 6 like a b
hows this proof
yup this is fine
although
you should explain why 6 being a factor of a^2 means
6 must be a factor of a
its probably easier to go with saying a^2 is even
so a is even
and then
i see
if your explanation depends on sqrt(6) being irrational then you cannot use this method
is it fine to just make the statement in a proof that if 6 is a factor of a^2 then 6 is a factor of a?
well i do get peeved at bad handwriting.
thank goodness you've never seen mine
nope, thats unjustified
how do i justify it then?
to be fair ive never turned a 6 into a b so
exercise for you
i have no idea if it can be justified without using the irrationality of sqrt 6 btw
why though
you still havent justified it
this is an example
I mean you can finish the proof by just saying
from my lecturer
since a^2 is even then a is even
and he hasnt justfied it
right
thats same as what i said
basically
no....
if 6 divides a^2
you said 6
then a divdes 6
that is completely unjustified
yh but all multiples of 6 r even
so its kinda the same thing
no
why thp
it is not
tho
but
thats the markers fault
they should have common sense
for realsing that
😂

its an unjustified assertion
6 is not prime so euclids lemma does not apply
if you can prove 6 dividing a^2 implies 6 divides a WITHOUT using the fact that sqrt 6 is irrational
then you can use that
i see
otherwise just make your life easy and say 6 dividing a^2 means it is even
and this can be justified by either euclids lemma or like some other easy proof
uh no a will not be equal to 6k
bruh u said it was fine
before
oh is it cuz i changed it now
allow it got a real analysis exam next week
yes this is abbotts real analysis book
lma
which last bit
showing that b is even
sure but no need
2a^2 is even so 3b^2 is even
either 3 is even or b^2 is even
obviously 3 is not even
so is need?
yes
rare L
how dis now?
lgtm
Closed by @silver plover
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 pls explain
@static pebble Has your question been resolved?
Closed due to timeout
Use .reopen if this was a mistake.
.reopen
✅
call one side a, the other b
write the perimeter and the area using those
then use this
@static pebble 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.
first semester in college algebra id love to know how to work through and get this answer. also would love to know what "i" is and where its applications are
i=sqrt(-1)
oh wow
Youll se its application a lot when you get into physics of rotations and stuff
Polar form, de moivres theorem, etc
so i, in this problem would be sqrt of 5 then -1 ?
sqrt 5 times sqrt(-1)
i is sqrt(-1)
im still stuck trying to solve the question at all. i have the answer sure, but i have no idea how to get too that answer. i get stuck somewhere in the simplifying part
ok so
simplify
the inside
of the sqrt
and tell me what u get
220
r u sure?
yes
-20
yes
okay that helped, ive got the process to get sqrt of 5 over 5
gd
but at what point does i join in there
whats another way of writing sqrt -20
unsure, i know sqrt of 20 is 2xsqrt5 but -20 would have to be a - and + multiplication.
i said sqrt of -20
so think
how u can use i
which is the sqrt of -1
and re write sqrt -20 using that
im lost
Closed by @warm arch
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.
You invest $400 in a magazine stand. You buy each magazine at $3.00 and you are planning to sell them at $7.00.
Write a linear function to represent the situation. Choose your own variables.
you buy n magazines, each costs $3, for $400
i would want to find the numbers of magazines i can buy
so that’s 3n = 400?
That’s the linear function?
not really
it is
but it doesnt help us in this problem
i suppose we want to know how much of a profit we can make
we know that we buy one magazine at $3
and sell it 7
so we buy n magazines for 3
sell n magazines for 7
and find benefits
i would solve this equation
have you ever solved equations
Yes
Yes
good
yes
oh
is it
ok
i didnt know
linear function of buying or selling ?
both perhaps
I think it’s this
should it be minus 7?
To write a linear function to represent the situation
i dont see why we would need a linear function
we know how much magazines we have
how much we sell
.close
Closed by @dawn quarry
Use .reopen if this was a mistake.
I get it now, thanks
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.
(7, 9) is correct
this is a technical issue
(7.9) is not valid interval notation
(7, 9) is seven, comma, nine. not seven and nine-tenths.
have you tried submitting it with the comma
@waxen fossil Has your question been resolved?
Closed by @waxen 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.
I don't understand this question
Between what times does the line go up?
0 and 2/3
and I am stuck on another one as well..I'm struggling with these graph questions
I realize that it's always going up by 0.6, but I don't understand what it wants me to do
Hold on let me read it
I'm not use to algebra either so I'm unsure where my x should be
Yep
yea
I think it’s easier to think about this in words
The tree diameter grows 0.6 per year
I put the bits in bold, how much will the tree diameter grow in 2 years
1.2
How much does the diameter grow in x years
If x = 2 years then 1.2
But now we want to say how much does it grow every x year where x could be any number
When I asked you for every 2 years, you did 0.6 . 2, now I want every x years you should do
Right so
We said x is the number of years right
I picked x = 2 and you told me how much itd grow, you multiplied it by 2
So let’s say we have some number x years, and x can be anyyyy number, how will we know how much it grows? Can you write a formula? Instead of 0.6 * 2 it’ll be 0.6 *...
All I know is every 2 years = 0.6 diameter and so 1 year would more than likely be 0.3
So I could just go year by year
But Idk what it's asking me to write
I'm pretty much noob at algebra stuff
It's technically every 2 years right?
Yeh my bad didn’t read the question close enough, so every year is 0.3
Let’s say the letter x is SOME NUMBER any number whatsoever, and this number represents the number of years
Are you following
Yeah
How do you work out how much it has grown over those x years, remember it grows 0.3 every year
I just add 0.3 by each year to solve what it would be the next
or 0.6 for every 2 years
@twin root 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 help me by this
If S (t) = a Cos 2t
Find a (6)
Please don't occupy multiple help channels.
<@&286206848099549185>
But its in arabic
Ok just a minute
Here is the question
A body moves in a straight line according to the relationship S (t) = a cos 2t, where S: distance in meters and T: time in seconds, a constant that the acceleration of the body when it travels a distance of 6 meters is??
@tardy epoch
How do you get a formula for acceleration?
By speed derivation
Do you have an equation for acceleration
No i only have the formula of distance
How do you find the equation for speed
<@&286206848099549185>
I'm helping you -
By the distance derivation
Can you differentiate the distance function
-2a sin 2t
How do you now find acceleration equation
By speed derivation
Please may you compute the acceleration function
derivative of velocity* but yea
So you want to solve it with you step by step??
?
lewis is walking you through how to do the problem. he's not doing the problem for you
At some point most people it clicks and you're supposed to realise why you're doing what you're doing, and perhaps suggest what to do next without me telling you
Can you just give the answer @trim locust
No
Why
that's not what these help channels are for...
we're here to help you learn not enable you to cheat your way through a problem
Ok thank you
Ok, the answers 93842.3 ms^-2 have you learnt how to do it if you change the numbers
don't
But that's wrong answer
Yes of course it is thats why i said it
So you didn't give him the right answer
?
I said it to prove a point, they wouldn't know if it's right or not (in context of the question its clearly wrong)
@timid silo 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.
I have a point in 3d space, and all properties about the 3d space are relative to the point; the roll, yaw, pitch and X, Y, Z of the point is always at 0, no matter how it moves or rotates in relation to everything else.
If I had a plane x distance in front of the point, and the point rotates y amount of degrees in the yaw rotation (or any transformation of the point possible), is there a formula to reliably calculate the X, Y, Z, roll, yaw and pitch of the plane?
@frozen carbon Has your question been resolved?
@frozen carbon Has your question been resolved?
You should have a transformation matrix T1 defining origin to point. The a matrix T2 from origin to plane
Matrix from point to origin should be T1^-1*T2
the origin would be 0,0,0 on the actual 3d space excluding all the point stuff?
I may be misunderstanding the question. You're saying point can move, yet it stays as the origin? So there should be some master reference point somewhere, right?
@frozen carbon Has your question been resolved?
thats what i meant as the origin in the other message
This is confusing then: "and the point rotates y amount of degrees in the yaw rotation (or any transformation of the point possible)"
because how can the point rotate or translate without another reference point?
a point cannot have roll, yaw, or pitch
doesn't make much sense
you're basically saying that the point is the origin, and rotations are done around an axis through the point
but you haven't specified the axes through the point either
and further, there is no "X Y Z" of a plane -- a plane consists of many points
@frozen carbon 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.
Guys I am so lost on this! Someone please guide me!
I did this so far. But I don't know if it is right.
Ohh! How do I do the long division for this?
just keep going by adding a .0
cuz 355=355.0
and 326=326.0=326.00=326.000and so on
I really don't understand that.
ok
I know we can find it using a calculator but I don't know the long division method with decimals
should be smth like this
btw typo here:
,rcw
Looks good so far
yeah
So do I do 355 divided by 113 next?
113 divided by 355
,rcw
That's 355 divided by 113
Good so far
,rcw


