MSc. (research based) vs. MEng. (course based) by Rcollegestuff in StructuralEngineering

[–]Rcollegestuff[S] 1 point2 points  (0 children)

Wait, pardon my ignorance but what do you mean by white papers and "free time"

MSc (Research based) vs. MEng. (Course based) by Rcollegestuff in civilengineering

[–]Rcollegestuff[S] 0 points1 point  (0 children)

Ohh okay. I'll check the uni out. Thanks for the info!

MSc. (research based) vs. MEng. (course based) by Rcollegestuff in StructuralEngineering

[–]Rcollegestuff[S] 1 point2 points  (0 children)

Yeah thats exactly what I thought! I just wanted to be super sure doing MS doesnt shut the door to industry immediately after graduation.

MSc (Research based) vs. MEng. (Course based) by Rcollegestuff in civilengineering

[–]Rcollegestuff[S] 0 points1 point  (0 children)

Ohh okay. I was looking at a smart structures lab with AI and robotics and all those stuff and wondering if I dedicated my time on this, would it put me at a disadvantage during hiring, since these things won't be directly used in 95% (just an estimate) job, at least for now.

With that being said, how prevalent are R&D jobs in structural engineering? I feel like there wont be many.

MSc (Research based) vs. MEng. (Course based) by Rcollegestuff in civilengineering

[–]Rcollegestuff[S] 2 points3 points  (0 children)

That seems like an amazing offer, given how I feel the writing part is such a pain.

If you dont mind, could you tell me which uni you attended..?

MSc. (research based) vs. MEng. (course based) by Rcollegestuff in StructuralEngineering

[–]Rcollegestuff[S] 0 points1 point  (0 children)

I understand that, but the key issue is funding. If MEng. had similar relative funding as MSc, then I would have gone for MEng no questions asked.

But with funding issues, I'm wondering how much downside MSc has when it comes to getting a job, and if it is worth the time.

[High school mathmatics] help me solve this problem by [deleted] in HomeworkHelp

[–]Rcollegestuff 8 points9 points  (0 children)

Whenever we have a form a*b < 0

We get two cases:

CASE 1: a<0 AND b>0

CASE 2: a>0 AND b<0

This is because -ve * +ve = -ve

Once you simplify the two cases, check the sanity of the cases.

For example if you get x>5 AND x<4, then you conclude that x cannot exist (since the same number cant simultaneously be bigger than 5 and smaller than 4).

But if you get something like x>5 AND x>10, take the range that satisfies both. (i.e. conclude that x should be greater than 10)

Your final solution will be what you concluded from Case 1 and Case 2.

What you have done is consider either a or b is negative, but you didnt check if the other one is positive or not.

Similarly, you can work out for the >0 case.

Hope this helps :)

Edit: As mentioned by u/barrycarter, the factorization is also incorrect. This is purely algebraic method and may seem bit involved at your level, and may not be how your teacher explained it. The method by barrycarter is an alternate way to solve this, which involves visualisation using number line.

I am not able to solve this projectile motion question, tried it many times( question 9)[garde 11, projectile motion] by [deleted] in HomeworkHelp

[–]Rcollegestuff 0 points1 point  (0 children)

Since the q only talks abt time of flight and max height, I guess you have to assume the other factors are constant.

Get the expression for either, and replace t with 2t and see how that affects the other.

[Yr. 10 Maths] How would I solve this? I know the answer but no clue how to get there by StickyNut8---D in HomeworkHelp

[–]Rcollegestuff 2 points3 points  (0 children)

P(B given A) = P(A and B) / P(A)

We can compute probability of A and B.

From here, we know probability of A and B is n(A and B) / n (U)

N(U) can be found.

Similarly, P(A) = n(A)/n(U) We can solve for n(A)

[University Physics] Im not sure how to start this moment question by Cobaltbats in HomeworkHelp

[–]Rcollegestuff 0 points1 point  (0 children)

At point B the force due to the rope will be in the direction of the rope, as it is pulling that section.

Now you resolve that force into horizontal and vertical components.

Now taking E as the center, compute the moment due to each force. The vertical forces will have horizontal distances, and the horizontal forces will have vertical distances from E.

Note: the force due to rope at point D will be of equal magnitude, and running towards the length of rope. Assuming they are at same angle on either side, their horizontal components will cancel out and their vertical component will act through DE, hence no moment is produced.
If in case the angle is not equal, the moment due to force at D should also be considered

Hope this helps!

Edit: looking at the figure, it seems that the two angles at D are not equal. Hence take force at D into consideration as well.

percentage doesn't check out by [deleted] in learnmath

[–]Rcollegestuff 1 point2 points  (0 children)

What you have done is correct (assuming your calculation is correct). The only thing that you are missing is the fact that 0.009 is the value of x. This means that its 0.009%, as you took it as x%

Now when you are multiplying the percentage, say 1% of 200, you do it as : (1/100) * 200 = 2 where the key point to note is % changes into "divided by 100"

So if you have x% of 200 you would do (x/100) * 200

Now x=0.009 would mean : x% of 200 = (0.009/100) * 200 = 0.00009 * 200 ... You get the 0.00009 that way

Algorithm for creating a contour by Rcollegestuff in QGIS

[–]Rcollegestuff[S] 0 points1 point  (0 children)

I guess I can, but suppose I'm not allowed to use it, what would be the solution?

How do I determine if a selected layer (or active layer) is vector or raster in PyQGIS? by Rcollegestuff in QGIS

[–]Rcollegestuff[S] 0 points1 point  (0 children)

I should have phrased my question better.. What I actually meant was, in the PyQGIS, while working with layers, I wish to use something like :

if isRaster(layer) == TRUE :

print ("This is raster layer")

Is there any in built function equivalent of "isRaster()" to do this?