2.I am trying to figure out the optimal radius that will give the lowest surface area of a cylinder. I
...
have done the calculus which reveals that the surface area is at a minimum when height is double the radius. I am now trying to find an equation for the relationship between the amount of wasted surface area as a percentage of the minimum surface area and the ratio between height and radius.
If I were to plot it on a graph, the y axis would be the percentage of excess materials needed as a percentage of the minimum possible surface area, and the x axis would be height divided by radius. Since the surface area is minimized when height=2(radius), I know that when x=2, y=0.
The website https://www.datagenetics.com/blog/august12014/index.html explains what I am trying to do quite well and shows the graph below. I am trying to find the equation for this graph, but am unsure how to go about it.
View More
4.Hello guys, I confess that I absolutely suck at math. Unfortunately my boss handed me what is basically a math
...
lly a math problem I gotta solve, and I have no idea how to do it cause of lack of my math skills. I am hoping someone can help me with this or I'm screwed.
Co basically I've got this table in excel, where X (row) is a width and Y is a height (column) of a wooden sauna cabin, the X;Y is the price for a sauna with said dimensions. I need to find a relationship between the size of the sauna and the price And formulate ani equation. I can't seem to find it, the price seems to grow non linearly, I can't seem to find any coeficient. Again, I suck at math, maybe solution is simple, but I just don't see it. Can anyone help me please?
Table Is at this link https://ibb.co/fGrxSvf . Thanks for any help!
View More
7.So I am looking at polar and Cartesian and converting between the two. My question is, I have never seen
...
seen an equation of a circle this is moved in both the x and y direction be converted to a polar equation.
For example, I know that the equation of a circle x^(2)+(y-2)^(2)=4 is r=4sin(theta) when converted to polar. Same thing for a translation with the x variable. However, I have never seen, nor do I know how to do, a conversion of a circle with both translations. For example, converting this equation of a circle to a polar equation: (x+3)^(2)+(y-4)^(2)=4. I have no idea how to do such a thing and cannot find any examples of such.
Hope you can shed some light on this, Thanks.
View More
16.Calculating the % an object(A square) is overlapping with another(the screen, a rectangle)
Making a tilebased game,
2D rectangle tiles with a
...
a tilebased game,
2D rectangle tiles with a size of 5000X5000 pixels per rectangle.
I make every rectangle know the 4 neighbouring rectangles in the map so starting from one you can generate an essentially infinite map.
I want to move this map around instead of moving the player around, the player stays centered on screen and since the map moves under him it looks like he's the one doing the moving.
So I know the following things:
Width and height of a single section:
5000X5000 pixels
the x and y location of the center section can be a value anywhere from -5000,-5000 to 5000,5000
The visible screen real estate is 1920 X 1080 pixels big
0X,0Y always stars top left, bottom right is 5000X5000
What I need to end up with:
A percentage value of howmuch this specific section is visible on screen, "inside the rectangle that is the scfeen)
View More
17.I am having problem with an assignment using lubrication method.
4. To obtain an analytical model of the flow
...
el of the flow in the coating zone x ∈ [0; L], y ∈ [0; h(x)] a lubrication approximation will be developed. If λ >> 1, and if α is close to, but less than 1 the coating zone appears plane. Use the equation of continuity to show by an order of magnitude estimate that |vy| << |vx|. Then state assumptions on flow and pressure field that reduce the Navier- Stokes equation locally to a form, from which the following approximate expression for the x-velocity in the slot for x ∈ [0; L] can be derived:
Se the attached.
View More
20.I dont understad these questions:
For which value(s) of a does the curve y = x^2 +
...
ave a horizontal tangent line at x = 1 ? (Without using differentiation rules)
For each statement, explain why it must be true, or use an example to show that it can be false.
a)If y = f ( x ) has a horizontal tangent line at x = 1 then y = g ( x ) , where g ( x ) = f ( x − 1 ) + 1 , has a horizontal tangent line at x = 2 .
b)A tangent line always has exactly one point in common with the graph of the function.
View More
22.I have a function and I can't figure out how to increase the circumference
private List CreateCircle(float
...
r3> CreateCircle(float zValue, int points)
{
var vertices = new List();
float degrees = 0f;
float degreeChange = twoPi / points;
for (var i = 0; i < points; i++)
{
// Adding to degrees changes the rotation of the circles - adding nothing creates a straight tube
float x = (2f * Mathf.PI) * Mathf.Sin(degrees);
float y = (2f * Mathf.PI) * Mathf.Sin(degrees);
//Mathf.Sin(degrees + (GlobalVariables.tunnelDepth/2))
//Mathf.Cos(degrees + (GlobalVariables.tunnelDepth / 3))
vertices.Add(new Vector3(x, y, zValue));
degrees += degreeChange;
}
return vertices;
}
View More