A faithful recreation of the beam in question:Given:The complexity of this problem will skyrocket since I will be normalizing by dividing by W so I will write the equations without units but under the hood, it's all inches and kips.The end constraints are very revealing:Thus,andNote that I moved EI to the left hand side for the sake of simplicity. Nevertheless, yet another constraint is directly in the middle of the beam:Something similar happens at the very end of the beam:Moving onto the moment, M(0) turns out to be useless but the other end, not so much:Now for a little trick that I figured out to preserve my sanity. Since everything's normalized by W, I will just declare new symbols:This lets me create a system of equations that I can just chuck into a solver:My solver gives me:This would be a good time to solve for C (the force, not the constant of integration; confusion, I know):Here, C1 is suspiciously large so I decided to plot it in Python. The code is fairly straight forward (I did have to define the Macaulay function which I was surprised to see not implemented already into a library). While I was at it, I also evaluated some "sanity check points", where the graphs must be 0 in order to be physically accurate. I also calculated the minimum and maximum moments.There were a few calculation mistakes like forgetting the integration constants but after fixing them, finally, I got a graph that makes sense. The moments at both ends is 0. The offset y is also 0 at both rollers and the one pin. 100% worth it.Moving on, I was able to glean the following information:This will be helpful when calculating the value for W against the maximum allowable σ=σY at the very top and bottom surfaces. The shear however, I still need to calculate and graph. I can take the derivative of the moment but I choose to just reconstruct it from the static diagram.Here, I we can see that:I don't have or need to know the value of x1 for this problem but I'll calculate it anyway:The value of 18.83 in inches is suspiciously the same as A=18.83W but I shouldn't question is because of how symmetric the problem is about x=42".Weird tangents aside, it's almost time to calculate the potential values of W, I just need a few values, starting with I:And now for Q, a value I still don't understand. I apologize if my drawing looks like children's doodles, I don't have a pen, just a mouse and a mighty will.Let's recover some W.Thus, the top surface will be in tension:The bottom:The shear:I am going with the minimum of these values which should ensure no other cases fail:When the top surface is under tension,The x-axis is under the maximum allowable stress:There's nothing happening on the other axis:As for the shear here:All other perpendicular shears are zero. Thus, this results in a simple state of stress cube of the very top surface of the T-beam:One last thing the problem asks for is the normal and shear stress profiles of the cross section of the T-beam as a function of y. This will be better done with code. Here's my solution:The plot for σ(x)/M is simple:But the plot of τ(x)/V is a bit more involved:I did anticipate the τ(x)/V to look a bit different but I have spent hours on the code and I am unsure what is going on. So, I just drew the lines by hand for what it should've looked like, no numbers.Regardless, I believe that's all problems 1) through 7) done, wildly out of order. Sorry, TA!