Amb = 10 % Considering the amplifier in the fig. 1
wp = 107e3 % From LTSPICE, the pole frequency is near that value
A = (Amb) / ( 1 + s/wp );
xlabel("\omega (rad/sec), log")
title("magnitude Bode plot of the transfer function A(s)")
plot([1 1e9], [AmbLog AmbLog])
plot(wp, AmbLog-3, 'g*', 'MarkerSize', 10)
legend("|A|", "A_{DC}", "\omega_p")
beta = 0.5; % I give it arbitrarily
HA_fv = 20*log10(abs(A_fv));
AmbLog2 = subs(HA_fv, omega, 0);
xlabel("\omega (rad/sec), log")
ylabel("|A_{fv}(s)| (dB)")
title("magnitude Bode plot of the transfer function A_{vf}(s)")
plot([1 1e9], [AmbLog2 AmbLog2])
wp_f = solve(HA_fv == AmbLog2-3);
plot(wp_f, AmbLog2-3, 'g*', 'MarkerSize', 10)
legend("|A_{fv}|", "A_{fv, DC}", "\omega_p")