Solve for the upper limit of integral

Viewed 45

I am trying to solve for x in the following equation: Integral Formula

Where I am trying to solve for x but the integral is too big to do by hand. This is my attempt in MatLab

clc
clear all
close all
syms x t
eqn = (1-(1/(1.3*10^12))*int((t*15)*exp(-t),0,16*x)) == 10^(-4)
sol = solve(eqn,x)

this is the result that I got result. The correct number should be approximately 2.2. I am very thankful for your help.

0 Answers
Related