Let G be a connected graph with n vertices and m edges.
What will be the number of edges after we copy all the vertices , when with copy, I mean a new vertex that connects with the copied vertex and all the other vertices that the copied vertex connects to.


For a simple graph every edge has become $4$. As an example, you started with an edge $AB$ and now you have $AB, A'B, AB', A'B'$. In addition you have all the edges between the matching vertices like $AA'$. The total is $4m+n$. This does not work if any of your edges are loops.