close all
clear all
clc

%% Gegebenen Größen

l_1=2; 
l_2=1; 
l_3=2; 

EI_1=4.0e4; 
EI_2=3.0e4; 
EI_3=2.0e4; 

c_1=100000; 
c_2=70000; 
c_T=100; 

%% festlegen von Variablen
syms B
syms x_1; 
x_1=sqrt(B/EI_1);
syms x_2; 
x_2=sqrt(B/EI_2);
syms x_3; 
x_3=sqrt(B/EI_3);

%% Hauptrechnung

A=Erstellen_Matrix_A(EI_1,EI_2,EI_3,l_1,l_2,l_3,x_1,x_2,x_3,c_1,c_2,c_T)




S=solve([det(A)==0 ,B>0],B)
