So there is this equation that I have to numerically solve for T:
Q/(3nRT) = f(T/300) - f(T/77)
Here Q = 920.364, n = 0.24, R = 8.314 while f is defined as the following:
f[t_?NumericQ]:= (3/t^4)*NIntegrate[(y^3)/(E^y -1),{y,0,t}]
I'm trying to do the following based on this, (Edited f2 here; initially was f[T/77]-f[T/300])
Block[{f1,f2,T,sol},
f1:= Q/(3nRT);
f2:= f[T/300]-f[T/77];
sol=N@Reduce[f1==f2,T]]
This is just giving errors:
Reduce::inex: Reduce was unable to solve the system with inexact coefficients or the system obtained by direct rationalization of inexact numbers present in the system. Since many of the methods used by Reduce require exact input, providing Reduce with an exact version of the system may help. >>
and I'm unable to solve for T. Please help! Is there any elegant method of doing this?

